• Home
  • Raw
  • Download

Lines Matching refs:target_pos

824 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos,  in SetBranchOffset()  argument
827 int32_t imm = target_pos - (pos + Assembler::kBranchPCOffset); in SetBranchOffset()
839 void Assembler::target_at_put(int32_t pos, int32_t target_pos, in target_at_put() argument
844 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put()
849 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put()
852 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put()
858 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put()
864 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put()
1188 int32_t target_pos; in jump_address() local
1191 target_pos = L->pos(); in jump_address()
1194 target_pos = L->pos(); // L's link. in jump_address()
1202 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in jump_address()
1210 int32_t target_pos; in branch_offset_helper() local
1214 target_pos = L->pos(); in branch_offset_helper()
1217 target_pos = L->pos(); in branch_offset_helper()
1229 int32_t offset = target_pos - (pc_offset() + kBranchPCOffset + pad); in branch_offset_helper()
1238 int target_pos; in label_at_put() local
1240 target_pos = L->pos(); in label_at_put()
1241 instr_at_put(at_offset, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in label_at_put()
1244 target_pos = L->pos(); // L's link. in label_at_put()
1245 int32_t imm18 = target_pos - at_offset; in label_at_put()
1251 target_pos = kEndOfChain; in label_at_put()