Tagged Questions

22
votes
7answers
5k views

Compelling examples of custom C++ STL allocators?

What are some really good reasons to ditch the standard STL allocators for a custom solution? Have you run across any situations where it was absolutely necessary for correctness, performance, ...
12
votes
10answers
861 views

Memory alignment in C-structs

I'm working on the 32-bit machine, so I suppose that memory alignment should be 4 bytes. Say I have struct: typedef struct { unsigned short v1; unsigned short v2; unsigned short v3; } ...
12
votes
6answers
1k views

Do class/struct members always get created in memory in the order they were declared?

This is a question that was sparked by Rob Walker's answer here. Suppose I declare a class/struct like so: struct { char A; int B; char C; int D; }; Is it safe to assume that ...
11
votes
8answers
828 views

Atomicity in C++ : Myth or Reality

I have been reading an article about Lockless Programming in MSDN. It says : On all modern processors, you can assume that reads and writes of naturally aligned native types are atomic. As ...
8
votes
4answers
205 views

how does malloc understand alignment?

following excerpted from here pw = (widget *)malloc(sizeof(widget)); allocates raw storage. Indeed, the malloc call allocates storage that's big enough and suitably aligned to hold an object ...
8
votes
3answers
126 views

Where can I find documentation on C++ memory alignment across different platforms/compilers?

I'm looking for a good (comprehensive) doc about memory alignment in C++, typical approaches, differences between compilers, and common pitfalls. Just to check if my understanding of the topic is ...
7
votes
1answer
194 views

Speed of operations on misaligned data

To my knowledge, a CPU performs best with a datum that is aligned on the boundary equal to the size of that datum. For example, if every int datum is 4 bytes in size, then the address of every int ...
6
votes
3answers
372 views

Alignment of Heap Arrays in C and C++ to Ease Compiler (GCC) Vectorization

I'm currently cooking up a wrapper container template class for std::vector that automatically creates a multi-resolution pyramid of the elements in its std::vector. The key issue now is that I want ...
6
votes
4answers
177 views

Naming Array Elements, or Struct And Array Within a Union

Consider the following struct: struct Vector4D { union { double components[4]; struct { double x, y, z, t; } Endpoint; }; }; It seems to me that I have seen something similar ...
6
votes
3answers
2k views

Cache Line Alignment (Need clarification on article)

I've recently encountered what I think is a false-sharing problem in my application, and I've looked up Sutter's article on how to align my data to cache lines. He suggests the following C++ code: // ...
5
votes
6answers
730 views

Parsing binary message stream in C/C++

I'm writing decoder for binary protocol (Javad GRIL protocol). It consits of about a hundred of messages with data in following format: struct MsgData { uint8_t num; float x, y, z; ...
4
votes
1answer
100 views

How to set the alignment in a platform independent way?

In the latest draft of the c++11 standard, chapter 3.11 talks about the alignment. Later, the chapter 7.6.1 defines how to define an aligned structures (or variables?) If I define a structure like ...
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 ...
4
votes
2answers
358 views

Why does this EXC_BAD_ACCESS happen with long long and not with int?

I've run into a EXC_BAD_ACCESS with a piece of code that deals with data serialization. The code only fails on device (iPhone) and not on simulator. It also fails only on certain data types. Here is ...
4
votes
1answer
209 views

Should boost library be dependent on structure member alignments?

I found, the hard way, that at least boost::program_options is dependent of the compiler configured structure member alignment. If you build boost using default settings and link it with a project ...
4
votes
3answers
760 views

Align native code on fixed size memory boundaries with GCC/G++/AS?

I have a C function that contains all the code that will implement the bytecodes of a bytecode interpreter. I'm wondering if there is a way to align segments of the compiled code in memory on fixed ...
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
2answers
105 views

C++ Container of Non-Interleaved Stored Tuples

I'm looking for a variant of std::vector or std::array of tuples, where the tuple elements are placed non-interleaved into separate memory areas instead of interleaved as would be the case for, for ...
3
votes
4answers
466 views

SSE and C++ containers

Is there an obvious reason why the following code segfaults ? #include <vector> #include <emmintrin.h> struct point { __m128i v; point() { v = _mm_setr_epi32(0, 0, 0, 0); } ...
3
votes
2answers
608 views

Casting a byte array to a struct pointer depends on endianness or memory alignment?

Suppose this code: unsigned char list[3] = { 1, 2, 3 }; struct _struct{ unsigned char a; unsigned char b; unsigned char c; } *s; s = ( _struct * ) list; Can I assume that always s->a == 1, ...
2
votes
3answers
67 views

Alignment in SunStudio C++ compiler

I need to declare type alias for 2 bytes variable aligned by 4 bytes. In GCC, XL C/C++ (AIX), aCC (HP-UX) I can use this code: typedef uint16_t AlignedType __attribute__ ((aligned (4))); In ...
2
votes
1answer
146 views

g++ 4.2 inline assembly of SSE instructions wraps up user assembly code with aligned XMM register copy

I have a function using inline assembly: vec8w x86_sse_ldvwu(const vec8w* m) { vec8w rd; asm("movdqu %[m],%[rd]" : [rd] "=x" (rd) : [m] "xm" (*m)); return rd; } It gets ...
2
votes
1answer
262 views

Referencing static object - alignment trap triggered on ARM proc

I have a class: class A { public: static A& instance(); ... void setValue(int val){ _value = val; } private: int _value; } A& A::instance(){ static A _Instance; return ...
2
votes
6answers
270 views

Is the byte alignment requirement of a given data type guaranteed to be a power of 2?

Is the byte alignment requirement of a given data type guaranteed to be a power of 2? Is there something that provides this guarantee other than it "not making sense otherwise" because it wouldn't ...
2
votes
2answers
296 views

memory alignment issues with union

Is there guarantee, that memory for this object will be properly aligned if we create object of this type in stack? union my_union { int value; char bytes[4]; }; If we create char bytes[4] in ...
2
votes
3answers
354 views

How to allocate from heap with the correct memory alignment for InterlockedIncrement function?

This code seems to work, but have I used the InterlockedIncrement function correctly? The correct memory alignment of m_count is of my primary concern. Assume we're on a x86-64 system and compile a ...
2
votes
3answers
254 views

Array size optimization

Is there any advantage defining an array's size to be a multiple of 8, if using 64 bit UNIX OS? I am intended to use this array for loading data from shared memory. So dependencies may exist on the ...
1
vote
3answers
96 views

portable c++ alignment?

I want to apply the Pimpl idiom with local storage idiom: mytype.h class mytype { struct Impl; enum{ storage = 20; } char m_storage[ storage ]; Impl* PImpl() { return (Impl*)m_storage; } ...
1
vote
4answers
99 views

Set double[] from float* in initilization list

I have a class that looks roughly like this: template<std::size_t dim> class Foo { public: Foo(void const * const data); private: double vals[dim]; } For the constructor, I know that ...
1
vote
4answers
142 views

How to align pointers when dealing with multiple-inheritance?

Say we have a concrete class A, and an abstract class B. Consider a concrete C, that inherits from both A and B, and implements B: class C : public A, public B { /* implementation of B and ...
1
vote
5answers
349 views

C/C++ pointers, ptr+1 = ptr +1 byte or ptr+1*sizeof(pointer_type)?

Having any_type *ptr = (any_type*)malloc(sizeof(any_type)*size); my_ptr = ptr+1; memcpy(dst, my_ptr, sizeof(any_type)); Will my_ptr be pointed to 1 byte after ptr, or to sizeof(any_type) bytes ...
1
vote
1answer
382 views

How to make tr1::array allocate aligned memory?

You can allocate a std::vector which allocates aligned heap memory by defining your own allocator. You can allocate a c-style array on the stack using declspec align. But can you declare a tr1::array ...
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.
1
vote
6answers
791 views

How to ensure a member is 4-byte aligned?

In order to use OSAtomicDecrement (mac-specific atomic operation), I need to provide a 4-byte aligned SInt32. Does this kind of cooking work ? Is there another way to deal with alignment issues ? ...
0
votes
3answers
70 views

Most efficient way to read UInt32 from any memory address?

What would be the most efficient way to read a UInt32 value from an arbitrary memory address in C++? (Assuming Windows x86 or Windows x64 architecture.) For example, consider having a byte pointer ...
0
votes
2answers
54 views

Speed different on aligned-size array and non-aligned-size array

I try to operate on aligned-size array and non-aligned-size array, but the result is a puzzle me, the non-aligned-size array is faster than aligned-size array, This is my code: TimeMeter timeMeter; ...
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
62 views

How can I portably implement row-wise binding of arbitrary resultsets in ODBC while avoiding alignment issues?

I have a class which takes an SQL query, executes it, then binds every column in the resultset as SQL_C_WCHAR using row-wise binding. right now the way I do it is to allocate a vector of char, and ...
0
votes
5answers
126 views

How can I simulate alignas(T)?

I have an array which is used as the underlying memory of an object of type T: char memory[sizeof T]; . . . new(memory) T(whatever); How can I make sure memory is aligned correctly for T objects? ...
0
votes
3answers
166 views

Alignment of structure members and static variables

We have some legacy code with classes that have members that are used in Interlocked* functions calls. I want to be sure that some member variables I have are aligned on 4 byte boundaries (for use ...
0
votes
0answers
759 views

cv::VideoWriter being bipolar

EDIT I think I understand what is happening here, but not quite how. The libavcoded shipped with OpenCV 2.1 does not align stack variables, as per the message that is displayed any time you use ...
0
votes
3answers
335 views

std::map nodes alignment

I'm facing something very amazing. (Scenario: Win7 pro 64 bit, VC2008 compiling 32 bit code) Say a main program instantiate a Class that uses a std::map. It's a std::map<std::string,Props> ...
0
votes
3answers
937 views

SSE2 - 16-byte aligned dynamic allocation of memory

EDIT: This is a followup to SSE2 Compiler Error This is the real bug I experienced before and have reproduced below by changing the _mm_malloc statement as Michael Burr suggested: Unhandled ...
-1
votes
5answers
384 views

Accessing struct members with array subscript operator

Let have a type T and a struct having ONLY uniform elements of T type. struct Foo { T one, T two, T three }; I'd like to access them in fallowing way: struct Foo { T one, T ...