Tagged Questions

13
votes
6answers
2k 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 ...
12
votes
10answers
984 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; } ...
8
votes
4answers
223 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 ...
7
votes
5answers
181 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, ...
6
votes
3answers
88 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
4answers
183 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 ...
5
votes
3answers
121 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
788 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
488 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
121 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
2answers
2k 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
778 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
772 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
552 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
5answers
485 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
182 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
781 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 ...
2
votes
2answers
42 views

Detecting Aligned Memory requirement on target CPU

I'm currently trying to build a code which is supposed to work on a wide range of machines, from handheld pockets and sensors to big servers in data centers. One of the (many) differences between ...
2
votes
1answer
53 views

EXC_BAD_ACCESS related to struct alignment?

In an iOS application, I have a struct that looks like this typedef struct _Pixel { signed char r; signed char g; signed char b; } Pixel; In my code, I allocate an array of these with calloc: ...
2
votes
3answers
77 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
2answers
121 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
104 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
6answers
281 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
3answers
255 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
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: ...
1
vote
2answers
67 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
3answers
101 views

padding at last member of c struct

I always assume, as they said here http://en.wikipedia.org/wiki/Data_structure_alignment, "It is important to note that the last member is padded with the number of bytes required so that the total ...
1
vote
2answers
326 views

Aligned vs. Packed attributes

I am working on firmware for a 16-bit PIC and writing in C (Microchip C30 compiler). My device receives a long list of bytes from an external device, and then I am trying to copy those bytes into a ...
1
vote
1answer
142 views

Prefetching aligned memory

I have some threaded C code that requires 64 byte alignment of the processed data structure. How will this alignment interact with prefetch instructions like the gcc __builtin_prefetch? Will the ...
1
vote
4answers
159 views

Why should structure have to be word aligned? [closed]

Possible Duplicate: Purpose of memory alignment Why does structure or any memory allocations like int,char have to be word aligned. What advantage does it serve? Update: Is the main ...
1
vote
3answers
751 views

GCC implicit alignment problem. (64-bit code)

How can I explicitly disable alignment on defined variable in gcc? Take this code: typedef struct{ unsigned long long offset; unsigned long long size; unsigned long type; unsigned long acpi; ...
1
vote
5answers
356 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
4answers
167 views

Memory allocated for structures

I have the structure typedef struct EData { int a; char c; } Edata obj; a is the integer variable so it takes 4 bytes and the c is the char variable so it takes 1 byte, totalling 5 bytes ...
1
vote
3answers
291 views

MIPS memcpy issue (i think)

I have some software that I have working on a redhat system with icc and it is working fine. When I ported the code to an IRIX system running with MIPS then I get some calculations that come out as ...
1
vote
2answers
339 views

Message-dispatch system in C that doesn't break strict aliasing and alignment

I'm writing an embedded control system in C that consists of multiple tasks that send messages to each other (a fairly common idiom, I believe!), but I'm having a hard time designing a mechanism ...
0
votes
2answers
62 views

word alignment on ARM?

How do I go about avoiding the compiler warning (warning: cast increases required alignment of target type) in the following code? static int fill_color24 (VisVideo *video, VisColor *color) { int ...
0
votes
2answers
119 views

Objective-C Runtime: What to put for size & alignment for class_addIvar?

The Objective-C Runtime provides the class_addIvar C function: BOOL class_addIvar(Class cls, const char *name, size_t size, uint8_t alignment, const char *types) What do I put ...
0
votes
0answers
63 views

Unaligned data with Vmem file

I am using Icarus Verilog to simulate a 32-bit processor with 32-bit register size. When I convert my executable files to a VMEM file I get the following warning message: The VMem output format ...
0
votes
4answers
407 views

unaligned memory access difference on Solaris and Linux

I wrote a program on linux(x86,32-bit),everything works fine.But when I try to compile and run the same source code on Solaris (SPARC,64-bit),I got a bus error(SIGBUS).The message from gdb is as ...