Searched refs:target_pos (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/mips64/ |
D | assembler-mips64.cc | 775 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos, in SetBranchOffset() argument 778 int32_t imm = target_pos - (pos + Assembler::kBranchPCOffset); in SetBranchOffset() 790 void Assembler::target_at_put(int pos, int target_pos, bool is_internal) { in target_at_put() argument 792 uint64_t imm = reinterpret_cast<uint64_t>(buffer_) + target_pos; in target_at_put() 798 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 801 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 806 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put() 815 uint64_t imm = reinterpret_cast<uint64_t>(buffer_) + target_pos; in target_at_put() 829 int32_t imm28 = target_pos - pos; in target_at_put() 839 int32_t imm28 = target_pos - pos; in target_at_put() [all …]
|
D | assembler-mips64.h | 1254 void target_at_put(int pos, int target_pos, bool is_internal);
|
/external/v8/src/mips/ |
D | assembler-mips.cc | 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() [all …]
|
D | assembler-mips.h | 1199 void target_at_put(int pos, int target_pos, bool is_internal);
|
/external/v8/src/s390/ |
D | assembler-s390.cc | 399 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument 409 int16_t imm16 = target_pos - pos; in target_at_put() 416 int32_t imm32 = target_pos - pos; in target_at_put() 421 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 424 int32_t imm32 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 518 int target_pos; in load_label_offset() local 521 target_pos = L->pos(); in load_label_offset() 522 constant = target_pos + (Code::kHeaderSize - kHeapObjectTag); in load_label_offset() 525 target_pos = L->pos(); // L's link in load_label_offset() 531 target_pos = pc_offset(); in load_label_offset() [all …]
|
D | assembler-s390.h | 1353 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/external/v8/src/ppc/ |
D | assembler-ppc.cc | 456 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument 466 int imm26 = target_pos - pos; in target_at_put() 479 int imm16 = target_pos - pos; in target_at_put() 495 int32_t offset = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 506 int32_t offset = target_pos + SIGN_EXT_IMM16(operands & kImm16Mask); in target_at_put() 519 patcher.masm()->bitwise_mov(dst, target_pos); in target_at_put() 526 patcher.masm()->dp(target_pos); in target_at_put()
|
D | assembler-ppc.h | 1324 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 907 void Assembler::target_at_put(int pos, int target_pos) { in target_at_put() argument 910 DCHECK(target_pos == pos || target_pos >= 0); in target_at_put() 937 uint32_t target24 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 983 int imm26 = target_pos - (pos + kPcLoadDelta); in target_at_put() 1427 int target_pos; in branch_offset() local 1429 target_pos = L->pos(); in branch_offset() 1433 target_pos = L->pos(); in branch_offset() 1436 target_pos = pc_offset(); in branch_offset() 1445 return target_pos - (pc_offset() + kPcLoadDelta); in branch_offset()
|
D | assembler-arm.h | 1664 void target_at_put(int pos, int target_pos);
|