Tagged Questions
6
votes
3answers
395 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 ...
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
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 ...
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
0answers
135 views
Mixing memory-aligned and unaligned code
I recently compiled GotoBLAS2 (MacOSX 10.6) and linked it to my code, leading to all kind of wrong results. I ran everything through valgrind noticing some illegal reads from the GotoBLAS. When ...
1
vote
3answers
753 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
0answers
280 views
__attribute__((aligned)) - gcc
How will gcc set the alignment for variable/field with
__attribute__((aligned))
What about different gcc versions/ different platforms?
Testing code:
int main() {
printf("%d\n", ...
0
votes
1answer
43 views
Is tr1 array supposed to be 16 byte aligned?
In "gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)" in tr1 array, I see this:
value_type _M_instance[_Nm ? _Nm : 1] __attribute__((__aligned__));
whereas in "gcc ...
0
votes
1answer
127 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;
...