The memory-alignment tag has no wiki summary.
1
vote
1answer
51 views
Memory layout mismatching between CPU and GPU code with CUDA
I'm experiencing a very weird situation. I have this template structures:
#ifdef __CUDACC__
#define __HOSTDEVICE __host__ __device__
#else
#define __HOSTDEVICE
#endif
template <typename T>
...
2
votes
1answer
106 views
Generalized Attributes for Memory Alignment in GCC/Clang
Are there generalized attributes for C++11 for indicating that a variable is memory aligned in GCC/Clang?
(Note that I'm familiar with __builtin_assume_aligned. I was wondering if there was a way to ...
7
votes
2answers
77 views
How to trap unaligned memory access?
I am working on a pet open-source project that implements some stream cipher algorithms and I am having trouble with a bug triggered only when I run it on an ARM processor. I have even tried running ...
5
votes
4answers
128 views
best cross-platform method to get aligned memory
Here is the code I normally use to get aligned memory with Visual Studio and GCC
inline void* aligned_malloc(size_t size, size_t align) {
void *result;
#ifdef _MSC_VER
result = ...
1
vote
2answers
40 views
align all object files in data/sbss section in linker script
EDIT: Solved - the linker script property "SUBALIGN(32)" applied to the static data sections does exactly what I required, forcing each object file linked to be aligned to a 32byte boundary, with ...
2
votes
1answer
123 views
Usage Issue of std::align
Consider the following code:
#include <memory>
#include <iostream>
#include <cstdio>
using namespace std;
// Visual Studio 2012 don't have alignof as a keyword.
#define ...
3
votes
4answers
132 views
GCC considers int pointers unaligned on ARM
I have the following test program:
#include <string.h>
int q(int *p) {
int x;
memcpy(&x,p,sizeof(int));
x+=12;
memcpy(p,&x,sizeof(int));
return p[0];
}
When I ...
3
votes
1answer
95 views
C++ x86/x64 structure alignment + .NET AnyCPU C++ library usage (calls/callbacks)
As my previous question had no success ("C# AnyCPU library using x86/x64 C API - packing structures, calls and callbacks"), I will write a more concise and abstract one.
THE PICTURE:
The company ...
0
votes
1answer
75 views
MIPS saving data in arrays
I get an error when I run the program: store address not aligned on word boundary, What should I do?
Here's the code:
.data
welcome: .asciiz "Welcome to Memorization Game. \n\nYour need ...
3
votes
0answers
113 views
C# AnyCPU library using x86/x64 C API - packing structures, calls and callbacks
I`m searching and trying all sort of solutions for like two weeks now to make the following possible: port 32-bit libraries and C++/.NET wrappers to 64-bit (for C++) and AnyCpu (for .NET).
There is:
...
0
votes
1answer
133 views
EXC_ARM_DA_ALIGN crash
I'm having a EXC_ARM_DA_ALIGN crash in my application. Here's the code that Xcode flag as "malignant". On the simulator I don't have this crash, only on device, so I think it is a memory alignment ...
1
vote
2answers
89 views
why not eliminating the need to padding bytes regarding this structure?
Consider following simple structure:
struct Struct {
public:
char a;
short int b;
char c;
};
If instances of this structure are placed at an even (16-bit-aligned) address, two padding bytes ...
5
votes
1answer
152 views
Cache-aligned stack variables
Using new C++11 alignment tools I wanted to make sure that a set of temporary (stack) variables will lie in one cache line. My first naive attempt was as follows:
int main() {
alignas(64) int a; ...
1
vote
3answers
73 views
sizeof giving unexpected result for my structure [duplicate]
I have this structure in my code:
struct BlockDescriptor
{
struct BlockDescriptor * pNext;
bool _isFree;
};
and I am inclined to believe its size is 4 + 1 = 5 (4 for the pointer and 1 for ...
2
votes
4answers
82 views
access a mis-aligned structure member
i want to test if it is OK to access a mis-aligned member of a structure in C, please see the code
#include <stdio.h>
#pragma pack(1) /* force 1 byte alignment */
/* either member b or ...
0
votes
3answers
73 views
Caching a linked list - is it possible?
I know that arrays may fully exploit the caching mechanisms on a x86_64 architecture by fitting into cache lines and because of their sequential nature. A linked list is a series of structs/objects ...
10
votes
2answers
238 views
C++: Strict aliasing vs union abuse
Apologies in advance for what may be a silly first post on well-trodden ground. While there is plenty of material on the subject, very little of it is definitive and/or intelligible to me.
I have an ...
4
votes
1answer
95 views
Are reads and writes to unaligned fields in .NET definitely atomic?
The C# specification (ECMA-334 and ISO/IEC 23270) has a paragraph about the atomicity of reads and writes:
12.5 Atomicity of variable references
Reads and writes of the following data types ...
3
votes
1answer
90 views
Linux x86/x64: Turn off misaligned data fixups
I've got some code I'm testing on Linux x86/x64. I want to turn off the automatic fixing of misaligned data to simulate what would happen on an ARM processor.
On Windows, I can do it with ...
3
votes
2answers
112 views
memory alignment of classes
I´m working on a memory manager using help of the book Game Engine Architecture.
At the moment I´m reading about memory alignment (in the book and web) and I´m not sure how the alignment is used ...
3
votes
2answers
131 views
What does it mean when my CPU doesn't support unaligned memory access?
I just discovered that the ARM I'm writing code on (Cortex M0), doesn't support unaligned memory access.
Now in my code I use a lot of packed structures, and I never got any warnings or hardfaults, ...
6
votes
1answer
108 views
Is there a GCC keyword to allow structure-reordering?
I know why GCC doesn't re-order members of a structure by default, but I seldom write code that relies on the order of the structure, so is there some way I can flag my structures to be automaticly ...
3
votes
3answers
114 views
std::tuple memory alignment
Is there any formal specification for the layout and memory alignment for the pseudo members of a tuple?
Is there anyway to modify the memory alignment of types in a tuple? Is it effected by a ...
3
votes
6answers
131 views
How is this size alignment working
I am not able to understand the below code with respect to the comment provided. What does this code does, and what would be the equivalent code for 8-aligned?
/* segment size must be 4-aligned */
...
7
votes
4answers
287 views
How is the size of a C++ class determined?
Summary: How does the compiler statically determine the size of a C++ class during compilation?
Details:
I'm trying to understand what the rules are for determining how much memory a class will ...
1
vote
3answers
82 views
What's the downside of doing pragma pack(1) in C? [duplicate]
Possible Duplicate:
Are there performance issues when using pragma pack(1)?
What's the downside of doing pragma pack(1) in C?
I have defined some struct data for a communication protocol ...
0
votes
1answer
304 views
How to initialize WaveOUT API on Win CE running on ARM in C#
I am trying to make work WinOut API on Win CE (ARM) but with the same code
that runs on Windows 7 I am getting MMSYSERR_INVALIDPARAM in the line for buffer preparation.
Win32.MMRESULT hr = ...
3
votes
1answer
204 views
__declspec(align) for multiple declarations
Sorry for the very simple question, couldn't find a googleable answer.
Is this declaration syntax:
__declspec(align(16)) float rF[4];
__declspec(align(16)) float gF[4];
__declspec(align(16)) float ...
0
votes
0answers
103 views
Finding the correct SIMD byte alignment (i.e. which SIMD instruction set)
I'm trying to work out how to work out the SIMD capabilities of the CPU that my code is running on. Specifically, I need to know what the proper byte alignment should be for best performance.
It's ...
7
votes
2answers
213 views
Allocating initialized, aligned memory
I'm writing a program (in C++) in which I need to allocate arrays whose starting addresses should be aligned with the cache line size. When I allocate these arrays I also want the memory initialized ...
0
votes
3answers
95 views
What causes address error on 16 bit architecture?
I am working on some C code for a 16 bit microcontroller. When I debug the application on target I end up hitting an AddressError ISR. I read the data sheet and it says that this can happen if you try ...
0
votes
1answer
74 views
what‘s difference between __attribute__((packed,aligned(n))) and __attribute__((aligned(n)))?
Is there any difference between attribute((packed,aligned(n))) and
attribute((aligned(n))) ?
2
votes
1answer
102 views
Local variable alignment for ATI/AMD OpenCL
I've been having trouble with a misaligned structure. Here are the structures involved:
struct Ray
{
float4 origin;
float4 dir;
float len;
float dummy [3];
};
struct RayStack
{
...
1
vote
4answers
154 views
how to create 4096 aligned table[x][4096]
I want to get a table of [x][4096] (for example int table[4096][4096])
but I am not sure how to do it - especially in more generel way (it is
on many compilers also the older ones (mingw, dmc, lcc, ...
6
votes
3answers
233 views
Why is accessing a memory aligned buffer more expensive in Linux?
In the below program, I have 2 buffers, one which is 64byte aligned and another, which I am assuming is 16 byte aligned on my 64 Linux host running 2.6.x kernel.
The cache line is 64byte long. So, in ...
1
vote
1answer
111 views
ELF Program Headers: MemSiz vs. FileSiz
readelf -l /bin/bash gives me this:
Program Headers:
Type Offset VirtAddr PhysAddr
FileSiz MemSiz Flags Align
PHDR ...
0
votes
1answer
63 views
boost::interprocess - allocate_aligned - same alignment guaranteed in all processes?
If I use allocate_aligned to allocate a chunk of aligned memory in managed shared memory, is it guaranteed that this allocation will have the same alignment when shared in other processes ? The ...
1
vote
1answer
94 views
boost::interprocess - allocate_aligned in shared memory?
If I use allocate_aligned to allocate an aligned memory block within a chunk of shared memory, how do I then identify that same block in another process ? E.g.
managed_shared_memory ...
2
votes
0answers
136 views
Qt QGLWidget GLuint array memory alignment issue
I'm following the NeHe OGL tutorials in Qt using QGLWidget subclasses. So far I haven't had any problems, and on the 6th tutorial on texture mapping where he introduces texturing a rotating box. I ...
2
votes
1answer
185 views
C++ Class Memory Alignment
I have recently seen one of my colleague do something similar to this:
#include <iostream>
class myClass
{
public:
float X, Y;
myClass(int x, int y) : X(x), Y(y){}
};
int main()
{
...
5
votes
1answer
148 views
How to use size of in __align__ for cache alignment, while using GCC?
I have two structs.
t_struct_inner {
int a;
... // a lot more members
}
t_struct_outer {
t_struct_inner[1000] inners;
t_struct_outer* next;
}
I malloc t_struct_outer in my code. I want ...
0
votes
0answers
46 views
How to expose aligned class with boost.python
When trying to expose aligned class like this:
class __declspec(align(16)) foo
{
public:
void foo_method() {}
};
BOOST_PYTHON_MODULE(foo_module)
{
class_<foo>("foo")
...
1
vote
1answer
55 views
What is a good way to deal with byte alignment and endianess when packing a struct?
My current design involves communication between an embedded system and PC, where I am always buzzed by the struct design.
The two systems have different endianess that I need to deal with. However, ...
5
votes
3answers
138 views
What are the alignment limitations of the standard global default operator new?
I'm working on some older code that uses ATL's CComBSTR type. I'm changing it so that it will compile using Visual C++ Express Edition, which does not come with ATL. I used only a very small subset of ...
0
votes
1answer
100 views
C++ Class members as array, packing failure case
I'm wondering if there's a concrete case that iterating over member variables of the same type using a pointer will fail? I know member packing / padding is implementation-defined, but in the ...
0
votes
1answer
130 views
What is the required alignment of long double in 64-bit linux, mac, and others?
I have been trying to find out exactly what is the required alignment of long double in x86-64 mac and linux. I have found various different things that hint at different requirements, but can't find ...
3
votes
3answers
332 views
Why is memory alignment required? [duplicate]
Possible Duplicate:
Purpose of memory alignment
I read some articles on net about memory alignment and could understand that from properly aligned memory (take 2-byte alignment) we can ...
0
votes
2answers
196 views
How to dynamically allocate 2d array that's 16B aligned
I'd like to allocate 2d array (square matrix) using memalign with 16B instead of using just malloc.
I have
A =(float **) malloc( (*dim) * sizeof(float*));
for ( i = 0 ; i < (*dim) ; i++) {
...
1
vote
1answer
145 views
Size of memory aligned struct
struct Test
{
int a;
char b;
int c;
} __attribute__((packed, aligned( 128 )))test;
sizeof( test ) returns 128 .
Why is the size not 9 ?
Is it that memory is rounded of to multiple of ...
4
votes
3answers
219 views
What's the actual effect of successful unaligned accesses on x86?
I always hear that unaligned accesses are bad because they will either cause runtime errors and crash the program or slow memory accesses down. However I can't find any actual data on how much they ...

