Displaying 2 results from an estimated 2 matches for "pageoff12".
2020 Aug 10
2
ORC JIT Weekly #19 -- Relocatable object level mocking with llvm-jitlink.
Hi All,
There was no update last week -- I'm still trying to get back into a
regular schedule.
Open-source changes since the last update were:
(1) Some bug fixes for JITLink MachO / arm64 support (PAGE21/PAGEOFF12 now
handle addends correctly).
(2) llvm-jitlink now supports loading archives as well as relocatable
objects.
(3) llvm-jitlink now supports basic object-file level mocking and testing.
That last one is unusual so I want to expand on it. The llvm-jitlink tool
acquired a couple of new options to sup...
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...C_VANILLA, // for pointers
+ ARM64_RELOC_SUBTRACTOR = 1, // must be followed by a ARM64_RELOC_UNSIGNED
+ ARM64_RELOC_BRANCH26 =2, // a B/BL instruction with 26-bit displacement
+ ARM64_RELOC_PAGE21 = 3, // pc-rel distance to page of target
+ ARM64_RELOC_PAGEOFF12 = 4, // offset within page, scaled by r_length
+ ARM64_RELOC_GOT_LOAD_PAGE21 = 5, // pc-rel distance to page of GOT slot
+ ARM64_RELOC_GOT_LOAD_PAGEOFF12 = 6, // offset within page of GOT slot,
+ // scaled by r_length
+ ARM64_RELOC_POINTER_...