2.4. Endianness and Address Numbering

Main memory is addressable at the byte level - we can specify the address of any 8-bit chunk. That means that a machine word, 32-bits in ARMv7, consists of 4 bytes of memory. The order those bytes are numbered in is called endianness.

In a big-endian processor, the bytes are numbered from left to right with the leftmost byte being the lowest address:

313029282726252423222120191817161514131211109876543210
byte 0 byte 1 byte 2 byte 3
../_images/big-endian.svg

In a little-endian processor (like ARM or Intel), the bytes are numbered from right to left.

313029282726252423222120191817161514131211109876543210
byte 3 byte 2 byte 1 byte 0
../_images/little-endian.svg

Notice that the view in memory looks reversed - 0D is the first value that appears in memory, followed by 0C, then 0B and finally 0A.

If you go back to the Data & Alignment page, and look closely at how the data was stored into memory, you will notice that some of it looks out of order. This is due to endianness.

Note

ARM (and intel) processors are Little Endian - which means that sometimes the 4 bytes of a word in memory will look like they are backwards. Little endian english thgim kool ekil siht (might look like this) - the words are in order, but the letters are backwards.

This interesting numbering system can be seen in the memory view. Here are the first 48 bytes of memory loaded with values corresponding to their address (address 0 has 0x00, address 1 has 0x01…):

../_images/numbering.png

Notice that each row of the memory display contains four words, or 16 bytes, of memory. Addresses are always shown in - the address 10 is not ten, but is 0x10 or 16. Row 1 has addresses 0x0-0xF (0-15), row 2 has 0x10-0x1F (16-31)… Words are in the expected order: addresses 0-3 come before 4-7, but the bytes within each word read backwards: 3, then 2, then 1, then 0.


When working with a full word of data, you do not have to worry about endianness - the 32-bit chunk will take up 4 bytes and you don’t really care how they are ordered. You will need to worry about endianness when:

  1. You take/send data from a machine that is one endianess to a machine that is the opposite form.

  2. You work with individual bytes or half words.

This code sample shows the difference between loading a pattern as a word and loading it as a series of bytes and half words.

@allocate 2 words with given hex values
word1:      .word    0xAABBCCDD
word2:      .word    0xEEFF0011

.space 8    @padding between items

@allocate 4 bytes with given values
bytes1:     .byte    0xAA, 0xBB, 0xCC, 0xDD
chunk:      .hword   0xEEEE
bytes2:     .byte    0x00, 0x11
Try sample

It results in this memory:

../_images/endian_data.png

The first row in the picture shows hex addresses 0x0-0x7 (0x8-0xF are cut out of the picture). The two words were loaded into them:

address 0x03 0x02 0x01 0x00 0x07 0x06 0x05 0x04
data AABBCCDD EEFF0011

The second row shows hex addresses 0x10-0x17. The first byte loaded - 0xAA is in address 0x10, but that is not the leftmost address! Address 0x11 has the next byte, etc… as shown below:

address 0x13 0x12 0x11 0x10 0x17 0x16 0x15 0x14
data DD CC BB AA 11 00 EEEE

However, if you ask the simulator to display numbers in bytes:

../_images/memory_settings.png

It displays bytes in numerical order: 0x00, 0x01, 0x02, … Notice how in byte mode the memory allocated as words (starting at address 0x00) looks jumbled up, while the memory allocated as bytes (starting at 0x10) looks correct.

../_images/endian_data_as_bytes.png

The same data displayed in byte mode.

You have attempted of activities on this page
Next Section - 2.5. Loading & Storing