Tagged Questions
The stackalloc tag has no wiki summary.
19
votes
2answers
269 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 = ...
14
votes
3answers
1k 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 ...
5
votes
3answers
116 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
600 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 ...
3
votes
3answers
251 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
238 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
...
1
vote
1answer
30 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 ...
0
votes
1answer
79 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" ...