Searched refs:target_pos (Results 1 – 11 of 11) sorted by relevance
/external/v8/src/mips64/ |
D | assembler-mips64.cc | 772 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos, in SetBranchOffset() argument 775 int32_t imm = target_pos - (pos + Assembler::kBranchPCOffset); in SetBranchOffset() 787 void Assembler::target_at_put(int pos, int target_pos, bool is_internal) { in target_at_put() argument 789 uint64_t imm = reinterpret_cast<uint64_t>(buffer_) + target_pos; in target_at_put() 795 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 798 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 803 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put() 812 uint64_t imm = reinterpret_cast<uint64_t>(buffer_) + target_pos; in target_at_put() 826 int32_t imm28 = target_pos - pos; in target_at_put() 836 int32_t imm28 = target_pos - pos; in target_at_put() [all …]
|
D | assembler-mips64.h | 1249 void target_at_put(int pos, int target_pos, bool is_internal);
|
/external/v8/src/mips/ |
D | assembler-mips.cc | 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() [all …]
|
D | assembler-mips.h | 1188 void target_at_put(int pos, int target_pos, bool is_internal);
|
/external/v8/src/parsing/ |
D | scanner-character-streams.cc | 224 size_t target_pos = pos_ + delta; in BufferSeekForward() local 225 SetRawPosition(target_pos); in BufferSeekForward()
|
/external/v8/src/s390/ |
D | assembler-s390.cc | 384 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument 394 int16_t imm16 = target_pos - pos; in target_at_put() 401 int32_t imm32 = target_pos - pos; in target_at_put() 406 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 409 int32_t imm32 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 503 int target_pos; in load_label_offset() local 506 target_pos = L->pos(); in load_label_offset() 507 constant = target_pos + (Code::kHeaderSize - kHeapObjectTag); in load_label_offset() 510 target_pos = L->pos(); // L's link in load_label_offset() 516 target_pos = pc_offset(); in load_label_offset() [all …]
|
D | assembler-s390.h | 1320 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/external/v8/src/ppc/ |
D | assembler-ppc.cc | 448 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument 458 int imm26 = target_pos - pos; in target_at_put() 471 int imm16 = target_pos - pos; in target_at_put() 487 int32_t offset = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 498 int32_t offset = target_pos + SIGN_EXT_IMM16(operands & kImm16Mask); in target_at_put() 511 patcher.masm()->bitwise_mov(dst, target_pos); in target_at_put() 518 patcher.masm()->dp(target_pos); in target_at_put()
|
D | assembler-ppc.h | 1317 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 827 void Assembler::target_at_put(int pos, int target_pos) { in target_at_put() argument 830 DCHECK(target_pos == pos || target_pos >= 0); in target_at_put() 857 uint32_t target24 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 901 int imm26 = target_pos - (pos + kPcLoadDelta); in target_at_put() 1346 int target_pos; in branch_offset() local 1348 target_pos = L->pos(); in branch_offset() 1352 target_pos = L->pos(); in branch_offset() 1355 target_pos = pc_offset(); in branch_offset() 1364 return target_pos - (pc_offset() + kPcLoadDelta); in branch_offset()
|
D | assembler-arm.h | 1548 void target_at_put(int pos, int target_pos);
|