C# operator that allocates a block of memory on the stack
0
votes
1answer
128 views
Buffer overflow protection for stackalloc in .Net
From C# reference for stackalloc:
the use of stackalloc automatically enables buffer overrun detection features in the common language runtime (CLR). If a buffer overrun is detected, the process ...
3
votes
3answers
163 views
Can't stackalloc be used in C# to initialize a previously declared pointer?
I just discovered the stackalloc notation of C# has an unbelievable quirk, please see the following code:
// int *p;
// p = stackalloc int[42]; // won't work!
// Error CS1525: ...
1
vote
0answers
34 views
I hit upon stackalloc in .net, I was wondering as MS gave us but in unsafe context when to use it? [duplicate]
Possible Duplicate:
Practical use of stackalloc keyword
I noticed that .NET has stackalloc which allows me to allocate objects on the stack. One thing I understand is that this can improve ...
5
votes
1answer
133 views
Initialization of memory allocated with stackalloc
If I'm allocating memory with stackalloc in C#, is that memory initialized (with 0)?
The documentation doesn't speak of that and only tells that the correct amount is reserved.
In my tests such ...
21
votes
2answers
827 views
C# & .NET: stackalloc
I have a few questions about the functionality of the stackalloc operator.
How does it actually allocate? I thought it does something like:
void* stackalloc(int sizeInBytes)
{
void* p = ...
0
votes
1answer
111 views
Safe Indexing Inside Unsafe Code
Good morning, afternoon or night,
Foreword: The code below does nothing really useful. It is just for explanation purposes.
Is there anything wrong with allocating and using an array "the safe mode" ...
4
votes
3answers
500 views
How to set an int to byte* C#
How can I convert an int to a byte* at a certain index in a byte*?
Ideally I would like to have something like:
unsafe{
byte* igm=stackalloc byte[8];
igm[4]=4283;
}
It would set the first ...
2
votes
2answers
476 views
PIMPL and stack allocation
So I've been thinking about PIMPL and stack allocation. I've been writing a library and decided to use PIMPL to hide the private member of the class. That means I would have a class declared like this
...
5
votes
3answers
132 views
c++ allocation on the stack acting curiously
Curious things with g++ (maybe also with other compilers?):
struct Object {
Object() { std::cout << "hey "; }
~Object() { std::cout << "hoy!" << std::endl; }
};
int ...
4
votes
3answers
774 views
Is c# compiler deciding to use stackalloc by itself?
I found a blog entry which suggests that sometimes c# compiler may decide to put array on the stack instead of the heap:
Improving Performance Through Stack Allocation (.NET Memory Management: Part ...
27
votes
3answers
3k views
Practical use of `stackalloc` keyword
Has anyone ever actually used stackalloc while programming in C#? I am aware of what is does, but the only time it shows up in my code is by accident, because Intellisense suggests it when I start ...
12
votes
6answers
3k views
When would I need to use the stackalloc keyword in C#?
What functionality does the stackalloc keyword provide? When and Why would I want to use it?