Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
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
846 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
821 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
204 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
124 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
5answers
167 views

Find holes in C structs due to alignment

Is there a way in gcc or clang (or any other compiler) to spit information about whether a struct has holes (memory alignment - wise) in it ? Thank you. ps: If there is another way to do it, ...
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
82 views

Is there a standard macro to detect architectures requiring aligned memory access?

Assuming something like: void mask_bytes(unsigned char* dest, unsigned char* src, unsigned char* mask, unsigned int len) { unsigned int i; for(i=0; i<len; i++) { dest[i] = src[i] & ...
6
votes
3answers
367 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
176 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: // ...
6
votes
8answers
2k views

Purpose of memory alignment

Admittedly I don't get it. Say you have a memory with a memory word of length of 1 byte. Why can't you access a 4 byte long variable in a single memory access on an unaligned address(i.e. not ...
5
votes
3answers
111 views

What's the reason to align to 8?

struct { /* Fileheader */ uchar file_version[4]; uchar options[2]; uchar header_length[2]; uchar state_info_length[2]; uchar base_info_length[2]; uchar ...
5
votes
6answers
722 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; ...
5
votes
4answers
469 views

combining packed data with aligned memory access

I'm trying to perform a memory optimization that should be theoretically possible but that I'm starting to doubt is within arm-elf-gcc's capability. Please show me that I'm wrong. I have an embedded ...
4
votes
4answers
93 views

Alignment of C structure in Internal FLASH memory

I have a configuration structure I would like to save on the internal flash of ARM cortex M3. According to the specifications, the data save in the internal flash, must be aligned to 32bit. Because I ...
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
2answers
462 views

Java memory allocation alignment

I know this is a weird question to ask in Java, but is there a way to let Java dynamic memory allocation be aligned with some alignment constraints? For example, is it possible to dynamically allocate ...
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
352 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
207 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
2answers
1k views

How to allocate and free aligned memory in C

How do you allocate memory that's aligned to a specific boundary in C (e.g., cache line boundary)? I'm looking for malloc/free like implementation that ideally would be as portable as possible --- at ...
4
votes
2answers
762 views

Does unaligned memory access always cause bus errors?

According to this wiki page, bus error can be caused by unaligned memory access. The wiki page gives an example about how to trigger a bus error. In the example, we have to enable alignment checking ...
4
votes
3answers
757 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 ...
4
votes
4answers
541 views

Safe, efficient way to access unaligned data in a network packet from C

I'm writing a program in C for Linux on an ARM9 processor. The program is to access network packets which include a sequence of tagged data like: ...
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
1answer
76 views

MonoTouch and unsafe floating point

Can any one help me. I have this ‘unmanaged’ .NET code, which works on PC Platform and OSX with MonoTouch Device Simulator. But when I run the code on my iPad 2 device, it throws an exception. I have ...
3
votes
2answers
104 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
461 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
5answers
444 views

Understanding stack allocation and alignment

I'm trying to understand how stack alignment works as described in what is "stack alignment"? but I have trouble getting a small example to demonstrate the said behaviour. I'm examining the stack ...
3
votes
2answers
175 views

If I say calloc(1000, 23), does the 23 “round up” to 24? Or to 32?

I was wondering, do most implementations of calloc treat the size as an alignment too, and round it up to the next supported granularity? If so, then do they round up to the next power of 2, or do ...
3
votes
3answers
736 views

Memory alignment

I have understood why memory should be aligned to 4 byte and 8 byte based on data width of the bus. But following statement confuses me "IoDrive requires that all I/O performed on a device using ...
3
votes
2answers
605 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, ...
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++ ...
2
votes
3answers
66 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
136 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
2answers
114 views

memory alignment 64bits

I've been playing with C today, and something I never had the chance to play with, that is use a struct with pointers to functions...well all went good, until I started to get some strange bug, when I ...
2
votes
9answers
100 views

Writing more characters than malloced. Why does it not fail?

Why does the following work and not throw some kind of segmentation fault? char *path = "/usr/bin/"; char *random = "012"; // path + random + \0 // so its malloc(13), but I get 16 bytes due to ...
2
votes
1answer
259 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
267 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
292 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
253 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 ...
2
votes
2answers
540 views

VirtualAlloc alignment

Will the memory block returned by VirtualAlloc always be aligned with the page size? In other words, will the modulus always be zero of the return value from VirtualAlloc and the page size?
2
votes
3answers
2k views

C Function alignment in GCC

I am trying to byte-align a function to 16-byte boundary using the 'aligned(16)' attribute. I did the following: void __attribute__((aligned(16))) function() { } (Source: ...
2
votes
3answers
630 views

How to ensure 16byte code alignment of Delphi routines?

Background: I have a unit of optimised Delphi/BASM routines, mostly for heavy computations. Some of these routines contain inner loops for which I can achieve a significant speed-up if the loop start ...
1
vote
2answers
55 views

Forcing alignment of C bitfield using a union

I was wondering if it is possible to force the alignment of bitfield in C. Using the variables in the code below I know that writing to _align_bytes then reading from bits is undefined (and ...
1
vote
1answer
78 views

16 byte memory alignment using SSE instructions

i am trying to get rid of unaligned loads and stores for SSE instructions for my application by replacing the _mm_loadu_ps() by _mm_load_ps() and allocating memory with: float *ptr = (float ...
1
vote
1answer
38 views

Address Alignment for Union

I am a bit confused about Memory address alingment for union. typedef union { char state[x]; char encode[4]; int index; } Location; We use several ...

1 2