Searched refs:BranchImm (Results 1 – 3 of 3) sorted by relevance
344 uint64_t BranchImm = Value + Addend - FinalAddress; in resolveAArch64Relocation() local347 assert(-(1LL << 27) <= static_cast<int64_t>(BranchImm) && in resolveAArch64Relocation()348 static_cast<int64_t>(BranchImm) < (1LL << 27)); in resolveAArch64Relocation()354 *TargetPtr |= static_cast<uint32_t>(BranchImm & 0xffffffcU) >> 2; in resolveAArch64Relocation()
1106 def B : BranchImm<0, "b", [(br bb:$addr)]>;
1163 class BranchImm<bit op, string asm, list<dag> pattern>