Home
last modified time | relevance | path

Searched refs:BranchImm (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp468 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local
470 assert(isInt<21>(BranchImm)); in resolveAArch64Relocation()
473 or32le(TargetPtr, (BranchImm & 0x001FFFFC) << 3); in resolveAArch64Relocation()
477 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local
479 assert(isInt<16>(BranchImm)); in resolveAArch64Relocation()
485 or32le(TargetPtr, (BranchImm & 0x0000FFFC) << 3); in resolveAArch64Relocation()
492 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local
495 assert(isInt<28>(BranchImm)); in resolveAArch64Relocation()
496 or32le(TargetPtr, (BranchImm & 0x0FFFFFFC) >> 2); in resolveAArch64Relocation()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td2407 class BranchImm<bit op, string asm, list<dag> pattern>
H A DAArch64InstrInfo.td3592 def B : BranchImm<0, "b", [(br bb:$addr)]>;