• Home
  • Raw
  • Download

Lines Matching refs:target_pos

826 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos,  in SetBranchOffset()  argument
829 int32_t imm = target_pos - (pos + Assembler::kBranchPCOffset); in SetBranchOffset()
841 void Assembler::target_at_put(int32_t pos, int32_t target_pos, in target_at_put() argument
846 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put()
851 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put()
854 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put()
860 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put()
866 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put()
1189 int32_t target_pos; in jump_address() local
1192 target_pos = L->pos(); in jump_address()
1195 target_pos = L->pos(); // L's link. in jump_address()
1203 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in jump_address()
1211 int32_t target_pos; in branch_offset_helper() local
1215 target_pos = L->pos(); in branch_offset_helper()
1218 target_pos = L->pos(); in branch_offset_helper()
1230 int32_t offset = target_pos - (pc_offset() + kBranchPCOffset + pad); in branch_offset_helper()
1239 int target_pos; in label_at_put() local
1241 target_pos = L->pos(); in label_at_put()
1242 instr_at_put(at_offset, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in label_at_put()
1245 target_pos = L->pos(); // L's link. in label_at_put()
1246 int32_t imm18 = target_pos - at_offset; in label_at_put()
1252 target_pos = kEndOfChain; in label_at_put()