Files
linux-kernel-module-cheat/userland/arch/arm/adr.S
Ciro Santilli 六四事件 法轮功 b3874cc72b asm: make all text section labels .L local
To help with backtraces if we ever fix them due to the lkmc_asm_main_after_prologue debacle.
2019-06-16 12:28:53 +01:00

34 lines
894 B
ArmAsm

/* https://github.com/cirosantilli/linux-kernel-module-cheat#arm-adr-instruction */
#include <lkmc.h>
.data
data_label:
.word 0x1234678
LKMC_PROLOGUE
adr r4, .Llabel
/* objdump tells us that this uses the literal pool,
* it does not get converted to adr, which is the better
* alternative here.
*/
ldr r5, =.Llabel
adrl r6, .Llabel
.Llabel:
LKMC_ASSERT_EQ_REG(r4, r5)
LKMC_ASSERT_EQ_REG(r4, r6)
#if 0
/* Error: symbol .data is in a different section.
*
* It works however in ARMv8.
* I think this means that there is no relocation type
* that takes care of this encoding in ARMv8, but there
* is one in ARMv8.
*
* If you have no idea what I'm talking about, read this:
* https://stackoverflow.com/questions/3322911/what-do-linkers-do/33690144#33690144
*/
adr r5, data_label
#endif
LKMC_EPILOGUE