Lines Matching refs:imm28
706 int32_t imm28 = (instr & static_cast<int32_t>(kImm26Mask)) << 2; in target_at() local
707 if (imm28 == kEndOfJumpChain) { in target_at()
713 int32_t delta = instr_address - imm28; in target_at()
756 uint32_t imm28 = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put() local
757 imm28 &= kImm28Mask; in target_at_put()
758 DCHECK((imm28 & 3) == 0); in target_at_put()
761 uint32_t imm26 = imm28 >> 2; in target_at_put()
2373 uint32_t imm28 = (instr & static_cast<int32_t>(kImm26Mask)) << 2; in RelocateInternalReference() local
2374 if (static_cast<int32_t>(imm28) == kEndOfJumpChain) { in RelocateInternalReference()
2377 imm28 += pc_delta; in RelocateInternalReference()
2378 imm28 &= kImm28Mask; in RelocateInternalReference()
2379 DCHECK((imm28 & 3) == 0); in RelocateInternalReference()
2382 uint32_t imm26 = imm28 >> 2; in RelocateInternalReference()