Tagged Questions
In web context, alignment refers to the positioning of visual elements. In programming context, alignment is the placement of objects on memory addresses, usually a multiple of some small factor.
22
votes
10answers
3k views
Why does the Mac ABI require 16-byte stack alignment for x86-32?
I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte boundaries only. Yes, some ...
17
votes
3answers
378 views
How to debug unaligned accesses on amd64 using Visual Studio?
I would like to debug and profile some 64-bit software performing unaligned accesses, like in the following example:
int foo[2] = { 1, 2 };
*((int *)((char *)foo + 2)) = 3;
The gcc way
I know of ...
17
votes
3answers
1k views
alignment requirements for atomic x86 instructions
Microsoft offers the InterlockedCompareExchange function for performing atomic compare-and-swap operations. There is also an _InterlockedCompareExchange intrinsic.
On x86 these are implemented using ...
15
votes
8answers
4k views
Determining the alignment of C/C++ structures in relation to its members
Can the alignment of a structure type be found if the alignments of the structure members are known?
Eg. for:
struct S
{
a_t a;
b_t b;
c_t c[];
};
is the alignment of S = max(alignment_of(a), ...
13
votes
4answers
847 views
Determining maximum possible alignment in C++
Is there any portable way to determine what the maximum possible alignment for any type is?
For example on x86, SSE instructions require 16-byte alignment, but as far as I'm aware, no instructions ...
13
votes
5answers
32k views
How to align a <div> to the middle of the page
I have a div tag with hight set to 800px, I want that when the browser width is greater than 800px it shouldn't stretch the div but it should bring it to the middle of the page.
13
votes
3answers
9k views
GCC __attribute__((aligned(x)) explanation
i have the following code:
#include <stdio.h>
int
main(void)
{
float a[4] __attribute__((aligned(0x1000))) = {1.0, 2.0, 3.0, 4.0};
printf("%p %p %p %p\n", &a[0], &a[1], ...
11
votes
4answers
2k views
why is data structure alignment important for performance?
Can someone give me a short and plausible explanation for why the compiler adds padding to data structures in order to align it's members? I know that it's done so that the CPU can access the data ...
10
votes
6answers
3k views
Mis-aligned pointers on x86
Can someone provide an example were casting a pointer from one type to another fails due to mis-alignment?
In the comments to this answer, bothie states that doing something like
char * foo = ...;
...
9
votes
1answer
175 views
Aligning stack variables in D
In D, you can align struct/class members by using the align keyword, e.g.:
struct Vec4 { align(16) float[4] elems; }
However, it appears that you can't do the same on the stack:
void foo()
{
...
9
votes
4answers
320 views
Why is writing to a 24-bit struct not atomic (when writing to a 32-bit struct appears to be)?
I am a tinkerer—no doubt about that. For this reason (and very little beyond that), I recently did a little experiment to confirm my suspicion that writing to a struct is not an atomic operation, ...
9
votes
3answers
4k views
Cross browser div center alignment using CSS
What is the easiest way to align a div whose position is relative horizontally and vertically using CSS ? The width and the height of the div is unknown, i.e. it should work for every div dimension ...
9
votes
6answers
4k views
How to vertical align a text?
How to vertically align the text in a floated div? For example: I have a dynamic content with fixed height. if the content is small or big it has to automatically vertically align.
Thanks
8
votes
3answers
145 views
std::array alignment
Trying out std::tr1::array on a mac i'm getting 16 byte alignment.
sizeof(int) = 4;
sizeof( std::tr1::array< int,3 > ) = 16;
sizeof( std::tr1::array< int,4 > ) = 16;
sizeof( ...
8
votes
3answers
760 views
How to compute multiple sequence alignment for text strings
I'm writing a program which has to compute a multiple sequence alignment of a set of strings. I was thinking of doing this in Python, but I could use an external piece of software or another language ...
8
votes
6answers
920 views
Aligned memory management?
I have a few related questions about managing aligned memory blocks. Cross-platform answers would be ideal. However, as I'm pretty sure a cross-platform solution does not exist, I'm mainly ...
8
votes
2answers
171 views
Would this union work if char had stricter alignment requirements than int?
Recently I came across the following snippet, which is an attempt to ensure all bytes of i (nad no more) are accessible as individual elements of c:
union {
int i;
char c[sizeof(int)];
};
Now ...
8
votes
2answers
630 views
Aligned types and passing arguments by value
Passing aligned types or structures with aligned types by value doesn't work with some implementations. This breaks STL containers, because some of the methods (such as resize) take their arguments by ...
8
votes
6answers
3k views
How to center icon and text in a android button with width set to “fill parent”
I want to have an Android Button with icon+text centered inside it. I'm using the drawableLeft attribute to set the img, this work well if the button has a width of "wrap_content" but I need to ...
8
votes
3answers
12k views
How to align 3 divs (left/center/right) inside another div?
I want to have 3 divs aligned inside a container div, something like this:
[[LEFT] [CENTER] [RIGHT]]
Container div is 100% wide (no set width), and center div should remain in center ...
8
votes
4answers
983 views
C++ STL data structure alignment, algorithm vectorization
Is there a way to enforce STL container alignment to specific byte, using attribute((aligned))perhaps? the target compilers are not Microsoft Visual C++.
What libraries, if any, provide specialized ...
8
votes
2answers
19k views
How to center cell contents of a LaTeX table whose columns have fixed widths?
Consider the following piece of LaTeX code:
\begin{tabular}{p{1in}p{1in}}
A & B\\
C & D\\
\end{tabular}
How can I make the contents of each cell aligned in the center of the cell rather ...
7
votes
1answer
394 views
Emacs align-regexp on = but not ==
I am working in Haskell and frequently come across code similar to the following:
func i j | i == j = i
| otherwise = j
I want to align on the '=' character using align-regexp but don't ...
7
votes
8answers
397 views
Is the size of a struct required to be an exact multiple of the alignment of that struct?
Once again, I'm questioning a longstanding belief.
Until today, I believed that the alignment of the following struct would normally be 4 and the size would normally be 5...
struct example
{
int ...
7
votes
3answers
520 views
preventing unaligned data on the heap
I am building a class hierarchy that uses SSE intrinsics functions and thus, some of the members of the class need to be 16-byte aligned. For stack instances I can use __declspec(align(#)), like so:
...
7
votes
4answers
201 views
Approved syntax for raw pointer manipulation
I am making a memory block copy routine and need to deal with blocks of raw memory in efficient chunks. My question is not about the specialized copy routine I'm making, but in how to correctly ...
7
votes
2answers
8k views
Centering Text within a Multirow Cell in LaTex
This is probably best explained with an example. I have the following table, where the "A" cell spans two rows, and the "B" cell spans two columns.
\begin{table}[htdp]
\begin{tabular}{l|r|r}
...
7
votes
2answers
2k views
How to I configure emacs in java mode so that it doesn't automatically align method parameters
In emacs, when I type:
public void foo(String one,
String two) {
It tabifies like this:
public void foo(String one,
String two) {
I'd rather it didn't, and just aligned ...
7
votes
2answers
1k views
Union element alignment
If I have a union, C standard guarantees that the union itself will be aligned to the size of the largest element.
union U {
long l;
int i;
short s;
char c[2];
} u;
But what does it ...
7
votes
4answers
3k views
Is there any guarantee of alignment of address return by C++'s new operation?
Most of experienced programmer knows data alignment is important for program's performance. I have seen some programmer wrote program that allocate bigger size of buffer than they need, and use the ...
6
votes
1answer
181 views
Structure alignment in GCC (should alignment be specified in typedef?)
Sorry for a stupid question, but if I need to ensure the alignment of a structure / class / union, should I add attribute((aligned(align))) to typedef declaration?
class myAlignedStruct{} ...
6
votes
1answer
1k views
How do I vertically center UITextField text?
I am simply instantiating a UITextField and noticing that the text doesn't center vertically. Instead, it is flush with the top of my button, which I find kind of odd since I would expect the default ...
6
votes
5answers
883 views
G++ SSE memory alignment on the stack
I am attempting to re-write a raytracer using Streaming SIMD Extensions. My original raytracer used inline assembly and movups instructions to load data into the xmm registers. I have read that ...
6
votes
1answer
741 views
Are where any difference between array and packed array in Delphi?
In C/C++ you always have
SizeOf(array[N] of T) = N * SizeOf(T);
In Pascal/Delphi you can use 'packed array' to be sure that the above assert is true, but does 'packed' specifier have any practical ...
6
votes
3answers
109 views
Why is alignment imporant?
I know that some processors fail with misaligned data, and others like the oh-so-common x86, would just be slower with that.
My question is why? Why is it harder for an x86 processor to get the data ...
6
votes
3answers
530 views
How to Vertically Center Images on a Line?
What's the best way to center icons on a line when the images are smaller than the line height?
For example (styles inline for easier reading):
<div style="line-height: 20px">
<img ...
6
votes
6answers
1k views
How does sizeof calculate the size of structures
I know that a char and an int are calculated as being 8 bytes on 32 bit architectures due to alignment, but I recently came across a situation where a structure with 3 shorts was reported as being 6 ...
6
votes
5answers
2k views
C 64-bit Pointer Alignment
Are pointers on a 64-bit system still 4 byte aligned (similar to a double on a 32 bit system)? Or are they note 8 byte aligned?
For example, on a 64-bit system how big is the following data ...
6
votes
2answers
665 views
Align text only on first separator in VIM
Suppose I have this code:
width: 215px;
height: 22px;
margin-top: 3px;
background-color: white;
border: 1px solid #999999;
I want to align it this way:
width: 215px;
height: ...
6
votes
4answers
1k views
Memory alignment on modern processors?
I often see code such as the following when, e.g., representing a large bitmap in memory:
size_t width = 1280;
size_t height = 800;
size_t bytesPerPixel = 3;
size_t bytewidth = ((width * ...
6
votes
8answers
2k views
Purpose of memory alignment
Admittedly I don't get it. Say you have a memory with a memory word of length of 1 byte. Why can't you access a 4 byte long variable in a single memory access on an unaligned address(i.e. not ...
6
votes
4answers
1k views
How to automatically align python variable assignment lines in vim
I would like to automatically align lines of python variable assignments in vim.
For example I would like to change this:
a = 1
banana = 2
into this
a = 1
banana = 2
automatically in vim.
...
5
votes
5answers
68 views
a tag taking some extra space in html
I put an image inside the a tag. but when i gave border to the image and a tag. The A tag taking some extra space. it is not surrounding the image.how to overcome those extra space by 'a' tag. i am ...
5
votes
4answers
160 views
Calling SSE code in managed code (alignment)
Here's my problem: We have a math library written in C++ that is heavily using SSE. We need to use that same math library in our the managed layer of our tools (which are written in C#).
The problem ...
5
votes
2answers
84 views
Half the page + CSS alignment
I didn't know how to explain but draw a picture of the CSS align that I need.
The template has a fixed width and the green area represents the main content and blue division provides the title for ...
5
votes
1answer
136 views
Apple GCC 4.2.1 - problem with passing a pointer to constructor
Let's say I have a class and there are no visible problems with it or its members, however if I try to pass the addresses of several class members to another class in the same module, the first ...
5
votes
4answers
450 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 ...
5
votes
5answers
307 views
C++: why is `new` needed?
I've got this trivial class hierarchy:
class Base {
public:
virtual int x( ) const = 0;
};
class Derived : public Base {
int _x;
public:
Derived( int x ) : _x(x) { }
int x( ) const { ...
5
votes
6answers
1k views
How to align input forms in HTML
This I am new HTML and I am trying to learn how to use forms.
The biggest issue I am having so far is aligning the forms. Here is an example of my current HTML file:
<form>
First ...
5
votes
2answers
313 views
Array not crossing 256 byte boundary
Is it possible to create an array that doesn't cross 256 byte boundary? That is addresses of the individual array items only differ in the lower byte. This is weaker requirement than keeping the array ...