6

How do I write an instruction which will have the address a label is referencing put into a register?

Peter Cordes
  • 286,368
  • 41
  • 520
  • 731
superbriggs
  • 601
  • 1
  • 10
  • 19

1 Answers1

9

There are four ways, three are documented at Sourceware's Gnu Assembler manual. I guess the label is something like,

 target:
     .long 0xfeadbeef
  1. adr r0,target
  2. adrl r0,target
  3. ldr r0,=target
  4. sub r0,pc,#(.+8-target)

The first two are very similar and generate sub r0,pc,#offset. The 3rd puts a long in a literal pool and loads this via ldr r0,[pc,#offset2] or it may use a mov if the assembler finds it can (usually an aligned label, like at 0x8000). The last version is to manually calculated it.

The difference between adr and adrl comes from immediate operands. They are 8bits rotated by a multiple of two. So if the address is far, you may need to perform two instructions, which will usually be faster than the 3rd ldr variant which get a full 32-bits via the data cache or memory.

See also: Relocation in assembler


Thumb2 adds the combination movw and movt. For example,

label:
 ; data
...
movw    r0, :lower16:label - .
movt    r0, :upper16:label - . 

This will put the offset in r0. It is not as useful for PC relative but useful for absolutes or direct loads of constants.

See: ARM blog on constants

artless noise
  • 19,723
  • 5
  • 59
  • 95
  • I should note that the 'pc-relative' is often useful for shared libraries and boot code where the executing address may not be constant. The pc-relative versions will also execute a little faster and the 'label' can be a jump or vector table for faster dispatch where you want to do one of several things based on a value. So that was the focus of this post. For constants, people typically use the `ldr rx,=constant` for as it is usually for loop initialization and not usually performance critical, but code density might matter. The 'manual' version is for explanation, not for real use. – artless noise Dec 22 '21 at 18:42