Searched refs:BranchImm (Results 1 – 3 of 3) sorted by relevance
468 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local470 assert(isInt<21>(BranchImm)); in resolveAArch64Relocation()473 or32le(TargetPtr, (BranchImm & 0x001FFFFC) << 3); in resolveAArch64Relocation()477 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local479 assert(isInt<16>(BranchImm)); in resolveAArch64Relocation()485 or32le(TargetPtr, (BranchImm & 0x0000FFFC) << 3); in resolveAArch64Relocation()492 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local495 assert(isInt<28>(BranchImm)); in resolveAArch64Relocation()496 or32le(TargetPtr, (BranchImm & 0x0FFFFFFC) >> 2); in resolveAArch64Relocation()
2407 class BranchImm<bit op, string asm, list<dag> pattern>
3592 def B : BranchImm<0, "b", [(br bb:$addr)]>;