0
votes
1answer
45 views

Memory alignment in an array of structures

I have an array of structures defined as below: struct { int x; char y; } arr[10]; The size of int on my machine is 4 bytes and a char is of 1 byte. I know the structures would be padded ...
4
votes
4answers
99 views

C: Data structures alignment

I'm working with structures and have several questions about them. As I understand structure variables will be placed at memory sequentially. Length of blocks(words) depends on machine architecture ...
2
votes
1answer
67 views

Variable alignement with Cortex-M0 under GCC

I'm trying to find a good way to align variables on a bondary of 32 bits or 16 bits with GCC. I'm working on a Cortex-M0 that doesn't support the missaligned data acess. I have this problem when I ...
7
votes
5answers
147 views

Is the compiler allowed to optimize the stack memory usage by reordering local variables?

Consider the following program: #include <stdio.h> void some_func(char*, int*, char*); void stack_alignment(void) { char a = '-'; int i = 1337; char b = '+'; some_func(&a, ...
2
votes
1answer
66 views

Alignment considerations when I treat a memory area as an array of structs

Let's consider that I have defined a memory area like (Note: uint8 means unsigned char): uint8 myMemoryArea[1024]; And I have a struct like: typedef struct { uint8 * ptrToMyVar; uint8 ...
0
votes
2answers
69 views

Forced-alignment in CUDA?

Is there a way to create a 2D array a[][] where each of the a[i] itself is forced to align to some other data type in CUDA? I want to do something like this: __shared__ unsigned char a[20][8];// ...
1
vote
3answers
93 views

How to align stack variable to 16byte boundary

I have the following local variable (that will get stored in the stack). struct test1 { int a; int b; char c; }; How do I align the starting address of integer a to a 16byte boundary in the ...
2
votes
4answers
205 views

Why is a double member in struct not aligned on 8 byte boundary?

This is about memory alignment. In code below, I expected that the offset of b inside the structure to be 8 (32-bit machine). See here. There by, making b always occur within a cache line. However, ...
0
votes
2answers
83 views

About Pointer alignment, is there a way to make a pointer aligned to some given memory boundary?

What I want to do is NOT initilize a pointer that aligned to a given boundary, instead, it is like some function that can transform/copy the pointer (and the contents it is pointed to)'s phyiscal ...
1
vote
4answers
131 views

Why are address are not consecutive when allocating single bytes?

I am dynamically allocating memory as follows: char* heap_start1 = (char*) malloc(1); char* heap_start2 = (char*) malloc(1); When I do printf as follows surprisingly the addresses are not ...
3
votes
3answers
127 views

Why c struct padding is required at __last__ element

I am aware of padding, and its rules, why it requires etc. My question is given struct, struct my_struct { int a; char c; }; In this case start address of c is word align, but still compiler ...
2
votes
3answers
135 views

Can int pointer be casted to char *?

The below program tests for Little/Big endian on intel processor. Actually little endian is correct output. First I am casting int to char* and accessing its value without initialization to int *.I am ...
2
votes
3answers
130 views

Please explain this alignment error

#include <stdio.h> void main(void) { char array[4] = {0, 1, 2, 3}; float *fpek; int i; for(i=0;i<4;i++) { fprintf(stderr,"i = %d ", i); fpek = (float ...
-1
votes
1answer
199 views

how to understand reduce space complexity about longest common sequence [closed]

I have read link about longest common sequence And how to understand about reduce the space complexity http://www.ics.uci.edu/~eppstein/161/960229.html (1) how can i comprehend this sentense the ...
-5
votes
1answer
158 views

Fill with/without intrinsics C++

I'm studying intrinsic functions impact on performance, and I'm a little bit confused: they seem to have no impact at all! I'm trying to fill an array of doubles with two different functions and I see ...
1
vote
2answers
153 views

Struct one-byte alignment conflicted with alignment requirement of the architecture?

I previously posted a question here about aligned access during pointer casting. As a summary, it's better not to use unaligned access to be fully portable because some architecture may throw an ...
5
votes
1answer
200 views

Aligned struct not available globally

I have a small bare metal program for the Raspberry Pi which draws to the screen. I am using C, with GCC as the compiler, and Yagarto as the ARM tool chain. Currently, I have a header (gpu.h) which ...
26
votes
7answers
876 views

Should I worry about the alignment during pointer casting?

In my project we have a piece of code like this: // raw data consists of 4 ints unsigned char data[16]; int i1, i2, i3, i4; i1 = *((int*)data); i2 = *((int*)(data + 4)); i3 = *((int*)(data + 8)); i4 ...
1
vote
2answers
138 views

Structure Alignment Attribute when Wrapping C from Ada

When is the Ada type attribute Alignment needed when wrapping C structures from Ada? Our typical wrapper structure looks like type T is record a : aliased Interfaces.C.unsigned_char; b : aliased ...
4
votes
4answers
248 views

Memory alignment in C

Here is a snippet: #pragma pack(4) struct s1 { char a; long b; }; #pragma pack() #pragma pack(2) struct s2 { char c; struct s1 st1; }; #pragma pack() #pragma pack(2) struct s3 { ...
4
votes
2answers
184 views

Faking inheritance in C: Will alignment break my neck?

I have a C struct that is used in various C and C++ code (via extern "C"). #ifdef __cplusplus extern "C" { #endif typedef struct A A; struct A { /*some members*/ }; #ifdef __cplusplus } ...
3
votes
1answer
84 views

platform specific placement of alignment padding in C structures

Unless packing compiler options or pragmas are used, code like the following (assuming 8-bit char and 16-bit short) struct foo { short a ; char b ; short c ; } ; will end up with, to the ...
0
votes
1answer
214 views

Optimal type for file read/write buffer

For a long time, I used simple char[] buffer when reading and writing files. Let's assume I have a very simple function like: int f(int fd_in, int fd_out) { char buf[4096]; char* bufp = buf; ...
5
votes
4answers
859 views

Is it possible to cast floats directly to __m128 if they are 16 byte alligned?

Is it safe/possible/advisable to cast floats directly to __m128 if they are 16 byte aligned? I noticed using _mm_load_ps and _mm_store_ps to "wrap" a raw array adds a significant overhead. What are ...
0
votes
1answer
108 views

How to (manually) align cells in C/C++?

When I was testing my application, it crashed. And after debugging it took me to this piece of code: static cell AMX_NATIVE_CALL n_fblockwrite(AMX *amx, cell *params) { cell *cptr; cell ...
2
votes
1answer
182 views

Is it possible to align a particular structure member in single-byte aligned structure?

I am using ARM. I got alignment fault due to read/write in odd offset(we knew ARM is 4 byte aligned). All the structs defined in my program is single - byte aligned like #pragma pack(push, 1) ...
3
votes
4answers
1k views

C struct size alignment

I want the size of a C struct to be multiple of 16 bytes (16B/32B/48B/..). It does not matter which size it gets to, it only needs to be multiple of 16B. How could I enforce the compiler to do that? ...
1
vote
3answers
319 views

How to randomly access word aligned data on ARM processors?

ARM CPUs at least up to ARMv5 do not allow random access to memory addresses which are not word aligned. The problem is described in length here: ...
1
vote
1answer
597 views

struct alignment on a 64-bit machine

I have the following struct on a 64-bit Linux machine. struct __wait_queue_head { spinlock_t lock; struct list_head task_list; }; where typedef struct { ...
0
votes
1answer
86 views

Memory alignment and long copies

If we assume that i align a block of memory with memalign to 4bytes , would it still be safe to do : unsigned int* source = In.Data; unsigned int* dest = Out.Data; int loops = In.Size / 4; //size is ...
5
votes
2answers
539 views

uint32_t alignment on 64-bit?

I'm curious about the alignment of uint32_t types on 64-bit platforms. The spec says that uint32_t should be exactly the given bitwidth, which indeed it seems to be: > printf("sizeof(uint32_t): ...
1
vote
1answer
159 views

Is this a GCC bug when using -falign-loops option?

I was playing with this option to optimize a for-loop in our embedded architecture (here). However, I noticed that when the alignment requires more than a single nop instruction to be added, then the ...
12
votes
1answer
325 views

How to align C for-loop body w/ GCC?

In our embedded architecture we have a 64-bit IAB (Instruction Alignment Buffer). In order to optimize the fetch sequence, it is required that the body of a loop will start aligned to an 8-byte ...
11
votes
5answers
1k views

How to tell GCC that a pointer argument is always double-word-aligned?

In my program I have a function that does a simple vector addition c[0:15] = a[0:15] + b[0:15]. The function prototype is: void vecadd(float * restrict a, float * restrict b, float * restrict c); ...
5
votes
4answers
499 views

x86_64 align stack and recover without saving registers

I'm writing interrupt handling routines for x86_64. The ABI specifies that before calling a C function I must align the stack to 16 bytes. The x86_64 ISA specifies that on entry to an ISR, my stack is ...
2
votes
1answer
299 views

memory alignment for structure

I am having a struct with three fields defined as follows: struct tmp { char *ptr; unsigned int data1; unsigned int data2; }; After compiled with GCC on a 64-bit system using Intel ...
3
votes
1answer
104 views

Canonical way to dice/carve/parcel a single malloc into multiple arrays with varying types/alignments?

Background: I have a C99 routine that needs temporary storage of varying datatypes with varying alignment requirements. Currently I call posix_memalign multiple times which a) introduces lots of ...
3
votes
3answers
259 views

sizeof union larger than expected. how does type alignment take place here?

#include <stdio.h> union u1 { struct { int *i; } s1; struct { int i, j; } s2; }; union u2 { struct { int *i, j; } s1; struct { int ...
3
votes
1answer
259 views

confusion on ARM9 data alignment

Consider the following C program: int main(void) { char string[10] __attribute__ ((aligned(32))); int i; int *intp = (int*)(string + 1 ); printf("string: 0x%x, intp: 0x%x\n", string, ...
2
votes
2answers
289 views

How to map PC (ARMv5) address to source code?

I'm developing on an ARM9E processor running Linux. Sometimes my application crashes with the following message : [ 142.410000] Alignment trap: rtspserverd (996) PC=0x4034f61c Instr=0xe591300c ...
3
votes
4answers
141 views

Doubts about typecasting

I am having doubts about typecasting. This is just a dummy program shown here. The actual code is too big to be posted. typedef struct abc { int a; }abc_t; main() { abc_t *MY_str; char ...
3
votes
3answers
303 views

Counting overhead due to packing in C (gcc/g++)

I'd like to count/sum up the overhead in an object file due to packing (and, ideally, have gcc minimize it for me). For example, consider the following structure (32 bit x86, gcc): struct a { ...
-2
votes
1answer
394 views

Alignment question on ARM binary

Here I am back again with a confused mind! :) As I had understood the usual alignment of data by armcc will be as below (taken from ARM site) ARM Compiler toolchain Using the Compiler: Types of data ...
6
votes
4answers
1k views

When do we need to use posix_memalign instead of malloc?

Seems posix_memalign let you choose a customized alignment,but when is that necessary? malloc has already done the alignment work internally. UPDATE The exact reason I ask this is because I see ...
2
votes
2answers
795 views

Parameter passing in Visual Studio and GCC

Parameter passing in Visual Studio. Note how __m128 types are passed. Does it mean that no more than 4 __m128 arguments should be passed by value. void good_function(__m128, __m128, __m128, __m128, ...
-4
votes
1answer
116 views

What's the big deal whether or not aligned? [closed]

#define ngx_align(d, a) (((d) + (a - 1)) & ~(a - 1)) #define ngx_align_ptr(p, a) \ (u_char *) (((uintptr_t) (p) + ((uintptr_t) a - 1)) ...
2
votes
2answers
498 views

problem with O_DIRECT IO with aligned stack buffer

The following code fails when the buffer is on the stack, but succeeds when it's allocated on the heap. I tested it on RHEL 5.3 with a Raid drive. Is it possible to use O_DIRECT with stack buffers? ...
2
votes
1answer
172 views

Problems with portability: aligning data, endianness issues, etc

I'm writing a toy database management system, and running up against some alignment and endianness issues. First, allow me to explain the data that is being stored, and where it's being stored. So ...
5
votes
2answers
964 views

Why alignment is 16 bytes on 64 bit architecture?

(gdb) disas foo Dump of assembler code for function foo: 0x00000000004004a8 <foo+0>: push %rbp 0x00000000004004a9 <foo+1>: mov %rsp,%rbp 0x00000000004004ac <foo+4>: mov ...
0
votes
3answers
418 views

About the __alignof struct in c

the __alignof value is the alignment requirement of the largest element in the structure. Why??

1 2