Searched refs:or32le (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/lld/ELF/Arch/ |
H A D | Hexagon.cpp | 254 static void or32le(uint8_t *p, int32_t v) { write32le(p, read32le(p) | v); } in or32le() function 263 or32le(loc, applyMask(findMaskR6(read32le(loc)), val)); in relocate() 266 or32le(loc, applyMask(findMaskR8(read32le(loc)), val)); in relocate() 269 or32le(loc, applyMask(0x00003fe0, val & 0x3f)); in relocate() 272 or32le(loc, applyMask(0x00203fe0, val & 0x3f)); in relocate() 280 or32le(loc, applyMask(findMaskR11(read32le(loc)), val & 0x3f)); in relocate() 283 or32le(loc, applyMask(0x000007e0, val)); in relocate() 292 or32le(loc, applyMask(findMaskR16(read32le(loc)), val & 0x3f)); in relocate() 295 or32le(loc, applyMask(findMaskR16(read32le(loc)), val & 0xffff)); in relocate() 300 or32le(loc, val); in relocate() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
H A D | RuntimeDyldCOFFAArch64.h | 36 static void or32le(void *P, int32_t V) { write32le(P, read32le(P) | V); } in or32le() function 309 or32le(Target + 12, ((Value + RE.Addend) & 0xFFFF) << 5); in resolveRelocation() 310 or32le(Target + 8, ((Value + RE.Addend) & 0xFFFF0000) >> 11); in resolveRelocation() 311 or32le(Target + 4, ((Value + RE.Addend) & 0xFFFF00000000) >> 27); in resolveRelocation() 312 or32le(Target + 0, ((Value + RE.Addend) & 0xFFFF000000000000) >> 43); in resolveRelocation()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.cpp | 31 static void or32le(void *P, int32_t V) { write32le(P, read32le(P) | V); } in or32le() function 34 or32le(L, (Imm & 0xFFF) << 10); in or32AArch64Imm() 474 or32le(TargetPtr, (BranchImm & 0x001FFFFC) << 3); in resolveAArch64Relocation() 486 or32le(TargetPtr, (BranchImm & 0x0000FFFC) << 3); in resolveAArch64Relocation() 497 or32le(TargetPtr, (BranchImm & 0x0FFFFFFC) >> 2); in resolveAArch64Relocation() 501 or32le(TargetPtr, ((Value + Addend) & 0xFFFF000000000000) >> 43); in resolveAArch64Relocation() 504 or32le(TargetPtr, ((Value + Addend) & 0xFFFF00000000) >> 27); in resolveAArch64Relocation() 507 or32le(TargetPtr, ((Value + Addend) & 0xFFFF0000) >> 11); in resolveAArch64Relocation() 510 or32le(TargetPtr, ((Value + Addend) & 0xFFFF) << 5); in resolveAArch64Relocation()
|