Lines Matching refs:imm28
684 int32_t imm28 = (instr & static_cast<int32_t>(kImm26Mask)) << 2; in target_at() local
685 if (imm28 == kEndOfJumpChain) { in target_at()
691 int64_t delta = instr_address - imm28; in target_at()
740 uint64_t imm28 = reinterpret_cast<uint64_t>(buffer_) + target_pos; in target_at_put() local
741 imm28 &= kImm28Mask; in target_at_put()
742 DCHECK((imm28 & 3) == 0); in target_at_put()
745 uint32_t imm26 = imm28 >> 2; in target_at_put()
2610 uint32_t imm28 = (instr & static_cast<int32_t>(kImm26Mask)) << 2; in RelocateInternalReference() local
2611 if (static_cast<int32_t>(imm28) == kEndOfJumpChain) { in RelocateInternalReference()
2615 imm28 += pc_delta; in RelocateInternalReference()
2616 imm28 &= kImm28Mask; in RelocateInternalReference()
2617 DCHECK((imm28 & 3) == 0); in RelocateInternalReference()
2620 uint32_t imm26 = imm28 >> 2; in RelocateInternalReference()