Lines Matching refs:target_pos
710 void Assembler::target_at_put(int32_t pos, int32_t target_pos) { in target_at_put() argument
713 ASSERT(target_pos == kEndOfChain || target_pos >= 0); in target_at_put()
716 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put()
722 int32_t imm18 = target_pos - (pos + kBranchPCOffset); in target_at_put()
734 uint32_t imm = (uint32_t)buffer_ + target_pos; in target_at_put()
745 uint32_t imm28 = (uint32_t)buffer_ + target_pos; in target_at_put()
983 int32_t target_pos; in jump_address() local
986 target_pos = L->pos(); in jump_address()
989 target_pos = L->pos(); // L's link. in jump_address()
997 uint32_t imm = (uint32_t)buffer_ + target_pos; in jump_address()
1005 int32_t target_pos; in branch_offset() local
1008 target_pos = L->pos(); in branch_offset()
1011 target_pos = L->pos(); in branch_offset()
1023 int32_t offset = target_pos - (pc_offset() + kBranchPCOffset); in branch_offset()
1032 int target_pos; in label_at_put() local
1034 target_pos = L->pos(); in label_at_put()
1035 instr_at_put(at_offset, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in label_at_put()
1038 target_pos = L->pos(); // L's link. in label_at_put()
1039 int32_t imm18 = target_pos - at_offset; in label_at_put()
1045 target_pos = kEndOfChain; in label_at_put()