Searched refs:target_pos (Results 1 – 10 of 10) sorted by relevance
/external/v8/src/mips/ |
D | assembler-mips.cc | 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() [all …]
|
D | assembler-mips.h | 1029 void target_at_put(int32_t pos, int32_t target_pos);
|
/external/chromium_org/v8/src/mips/ |
D | assembler-mips.cc | 704 void Assembler::target_at_put(int32_t pos, int32_t target_pos) { in target_at_put() argument 707 ASSERT(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 710 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 716 int32_t imm18 = target_pos - (pos + kBranchPCOffset); in target_at_put() 728 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put() 739 uint32_t imm28 = reinterpret_cast<uint32_t>(buffer_) + target_pos; in target_at_put() 988 int32_t target_pos; in jump_address() local 991 target_pos = L->pos(); in jump_address() 994 target_pos = L->pos(); // L's link. in jump_address() 1002 uint32_t imm = reinterpret_cast<uint32_t>(buffer_) + target_pos; in jump_address() [all …]
|
D | assembler-mips.h | 986 void target_at_put(int32_t pos, int32_t target_pos);
|
/external/chromium_org/v8/src/ |
D | scanner-character-streams.cc | 175 unsigned target_pos = pos_ + delta; in BufferSeekForward() local 176 SetRawPosition(target_pos); in BufferSeekForward()
|
/external/v8/src/ |
D | scanner-character-streams.cc | 173 unsigned target_pos = pos_ + delta; in BufferSeekForward() local 174 SetRawPosition(target_pos); in BufferSeekForward()
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 570 void Assembler::target_at_put(int pos, int target_pos) { in target_at_put() argument 573 ASSERT(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 576 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 579 int imm26 = target_pos - (pos + kPcLoadDelta); in target_at_put() 990 int target_pos; in branch_offset() local 992 target_pos = L->pos(); in branch_offset() 995 target_pos = L->pos(); // L's link in branch_offset() 997 target_pos = kEndOfChain; in branch_offset() 1005 return target_pos - (pc_offset() + kPcLoadDelta); in branch_offset() 1010 int target_pos; in label_at_put() local [all …]
|
D | assembler-arm.h | 1296 void target_at_put(int pos, int target_pos);
|
/external/chromium_org/v8/src/arm/ |
D | assembler-arm.cc | 797 void Assembler::target_at_put(int pos, int target_pos) { in target_at_put() argument 800 ASSERT(target_pos == pos || target_pos >= 0); in target_at_put() 818 uint32_t target24 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 867 int imm26 = target_pos - (pos + kPcLoadDelta); in target_at_put() 1276 int target_pos; in branch_offset() local 1278 target_pos = L->pos(); in branch_offset() 1282 target_pos = L->pos(); in branch_offset() 1285 target_pos = pc_offset(); in branch_offset() 1293 return target_pos - (pc_offset() + kPcLoadDelta); in branch_offset()
|
D | assembler-arm.h | 1458 void target_at_put(int pos, int target_pos);
|