Tagged Questions
12
votes
10answers
851 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 ...
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 ...
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, ...
6
votes
3answers
83 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
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 ...
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
725 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
470 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
94 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
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
763 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
758 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
5answers
446 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
737 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
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
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
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
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 ...
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
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
3answers
94 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
282 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
130 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
153 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
706 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
345 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
149 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
283 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
336 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
92 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
58 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
377 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 ...