Tagged Questions

4
votes
3answers
377 views

Why does a struct consisting of a char, short, and char (in that order), when compiled in C++ with 4-byte packing enabled, come to a 6-byte struct?

I thought I understood how C/C++ handled struct member alignment. But I'm getting strange results for a particular arrangement in Visual Studio 2008 and 2010. Specifically, I'm finding that a struct ...
3
votes
2answers
80 views

MSVC default memory alignment of 8

According to MSDN, the /Zp command defaults to 8, which means 64-bit alignment boundaries are used. I have always assumed that for 32-bit applications, the MSVC compiler will use 32-bit boundaries. ...
3
votes
3answers
2k views

Struct members alignment in Visual C++ 2008

Visual C++ let's you select the struct members alignemnt in the project's properties page. Problem is, this configuration is being used for all srtructs in the project. Is there any way (VC++ ...
1
vote
3answers
999 views

Does VC++ support _mm_malloc?

Does Visual Studio C++ 2008/2010 support _mm_malloc officially? It is defined in malloc.h but I can't find its description in the MSDN library.
0
votes
1answer
103 views

#pragma pack, template typedefs, and struct alignment

Using Visual Studio or gcc, if I've got #pragma pack(push, 16) typedef std::map<uint32_t, uint32_t> MyIntMap; #pragma pack(pop) then later: #pragma pack(push, 8) MyIntMap thisInstance; ...
0
votes
2answers
284 views

Types default alignment in visual C++

Just noticed something that looks strange to me. Visual C++ doesn't align object in their required boundary by default. For example long long is aligned to 4 bytes boundary, while __alignof(T) returns ...