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 divisible by 4), as it's the case with aligned addresses?
|
It's a limitation of many underlying processors. It can usually be worked around by doing 4 inefficient single byte fetches rather than one efficient word fetch, but many language specifiers decided it would be easier just to outlaw them and force everything to be aligned. There is much more information in this link that the OP discovered. |
||||
|
|
|
The memory subsystem on a modern processor is restricted to accessing memory at the granularity and alignment of it's word size; this is the case for a number of reasons. SPEED Modern processors have multiple levels of cache memory that data must be pulled through, supporting a single byte read would severely limit the memory throughput of the processor (think PIO mode for hard drives) The CPU ALWAYS reads at it's word size (4-bytes on a 32-bit processor), so when you do an unaligned address access --on a processor that supports it-- the processor is going to read multiple words. The CPU will read each word of memory that your requested address straddles. This causes an amplification of up to 2x the number of memory transactions required to access the requested data. Because of this, it can very easily be slower to read two bytes than four. For example, say you have a struct in memory that looks like this:
On a 32-bit processor it would most likely be aligned like shown here:
The processor can read each of these members in one transaction. Say you had a packed version of the struct, maybe from the network where it was packed for transmission efficiency; it might look something like this:
Reading the first byte is going to be the same. When you ask the processor to give you 16 bits from 0x0005 it will have to read a word from from 0x0004 and shift left 1 byte to place it in a 16-bit register; some extra work, but most can handle that in one cycle. When you ask for 32-bits from 0x0001 you'll get a 2x amplification. The processor will read from 0x0000 into the result register and shift left 1 byte; then read again from 0x0004 into a temporary register, shift right 3 bytes, then RANGE For any given address space, if the architecture can assume that the 2 LSB are always 0 then it can access 4 times more memory, or the same amount of memory with two bits for something like flags. Taking the two LSB off of an address would give you a 4 byte alignment, or stride, as each time the address is incremented it is effectively incrementing bit 2, not 0. This is sometimes referred to as a "stride" of 4 bytes. This can even affect the physical design of the system, if the address bus needs 2 less bits there can be 2 less pins on the CPU and two less traces on the circuit board. Atomicity The CPU can operate on an aligned word of memory atomically, meaning that no other instruction can interrupt that operation. This is critical to the correct operation of many lock-free data structures and other concurrent computing paradigms. Conclude The memory system of a processor is quite a bit more complex and involved than described here; if you'd like a more detailed discussion on how an x86 processor actually addresses memory take a look at this article. There are many more benefits to adhering to memory alignment that you can read at this IBM article. Another alignment-for-performance that I alluded to previously is alignment on cache lines which are (for example) 64K, but that's a topic for another question! |
||||
|
|
|
you can with some processors (the nehalem can do this), but previously all memory access was aligned on a 64-bit (or 32-bit) line, because the bus is 64 bits wide, you had to fetch 64 bit at a time, and it was significantly easier to fetch these in aligned 'chunks' of 64 bits. So, if you wanted to get a single byte, you fetched the 64-bit chunk and then masked off the bits you didn't want. Easy and fast if your byte was at the right end, but if it was in the middle of that 64-bit chunk, you'd have to mask off the unwanted bits and then shift the data over to the right place. Worse, if you wanted a 2 byte variable, but that was split across 2 chunks, then that required double the required memory accesses. So, as everyone thinks memory is cheap, they just made the compiler align the data on the processor's chunk sizes so your code runs faster and more efficiently at the cost of wasted memory. |
|||
|
|
|
After doing some additional Googling i found this great link, that explains the problem really well. |
|||||||
|
|
Fundamentally, the reason is because the memory bus has some specific length that is much, much smaller than the memory size. So, the CPU reads out of the on-chip L1 cache, which is often 32KB these days. But the memory bus that connects the L1 cache to the CPU will have the vastly smaller width of the cache line size. This will be on the order of 128 bits. So:
Misaligned accesses will occasionally overlap two cache lines, and this will require an entirely new cache read in order to obtain the data. It might even miss all the way out to the DRAM. Furthermore, some part of the CPU will have to stand on its head to put together a single object out of these two different cache lines which each have a piece of the data. On one line, it will be in the very high order bits, in the other, the very low order bits. There will be dedicated hardware fully integrated into the pipeline that handles moving aligned objects onto the necessary bits of the CPU data bus, but such hardware may be lacking for misaligned objects, because it probably makes more sense to use those transistors for speeding up correctly optimized programs. In any case, the second memory read that is sometimes necessary would slow down the pipeline no matter how much special-purpose hardware was (hypothetically and foolishly) dedicated to patching up misaligned memory operations. |
|||
|
|
|
If a system with byte-addressable memory has a 32-bit-wide memory bus, that means there are effectively four byte-wide memory systems which are all wired to read or write the same address. An aligned 32-bit read will require information stored in the same address in all four memory systems, so all systems can supply data simultaneously. An unaligned 32-bit read would require some memory systems to return data from one address, and some to return data from the next higher address. Although there are some memory systems that are optimized to be able to fulfill such requests (in addition to their address, they effectively have a "plus one" signal which causes them to use an address one higher than specified) such a feature adds considerable cost and complexity to a memory system; most commodity memory systems simply cannot return portions of different 32-bit words at the same time. |
|||
|
|
|
On PowerPC you can load an integer from an odd address with know problems. Sparc and I86 and (I think) Itatnium raise hardware exceptions when you try this. One 32 bit load vs four 8 bit loads isnt going to make a lot of difference on most modern processors. Whether the data is already in cache or not will have a far greater effect. |
|||
|
|

