/third_party/node/deps/v8/src/codegen/s390/ |
H A D | assembler-s390.cc | 507 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument 518 int16_t imm16 = target_pos - pos; in target_at_put() 526 int32_t imm32 = target_pos - pos; in target_at_put() 531 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 534 int32_t imm32 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 540 int32_t imm16 = target_pos - pos; in target_at_put() 614 // was: target_pos = kEndOfChain; in link() 627 int target_pos; in load_label_offset() local 630 target_pos in load_label_offset() [all...] |
H A D | assembler-s390.h | 1378 // Patch instruction(s) at pos to target target_pos (e.g. branch) 1379 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/third_party/ffmpeg/libavformat/ |
H A D | mp3dec.c | 499 static int64_t mp3_sync(AVFormatContext *s, int64_t target_pos, int flags) in mp3_sync() argument 506 avio_seek(s->pb, FFMAX(target_pos - SEEK_WINDOW, 0), SEEK_SET); in mp3_sync() 507 ret = avio_seek(s->pb, target_pos, SEEK_SET); in mp3_sync() 512 best_pos = target_pos; in mp3_sync() 515 int64_t pos = target_pos + (dir > 0 ? i - SEEK_WINDOW/4 : -i); in mp3_sync() 532 if ((target_pos - pos)*dir <= 0 && FFABS(MIN_VALID/2-j) < score) { in mp3_sync()
|
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | assembler-loong64.cc | 485 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos, in SetBranchOffset() argument 488 int32_t imm = target_pos - pos; in SetBranchOffset() 514 void Assembler::target_at_put(int pos, int target_pos, bool is_internal) { in target_at_put() argument 516 uint64_t imm = reinterpret_cast<uint64_t>(buffer_start_) + target_pos; in target_at_put() 522 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 525 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 530 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put() 887 int64_t target_pos; in jump_address() local 889 target_pos in jump_address() 906 int64_t target_pos; branch_long_offset() local 926 int32_t target_pos; branch_offset_helper() local 952 int target_pos; label_at_put() local [all...] |
H A D | assembler-loong64.h | 843 void target_at_put(int pos, int target_pos, bool is_internal);
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.cc | 882 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos, in SetBranchOffset() argument 885 int32_t imm = target_pos - (pos + Assembler::kBranchPCOffset); in SetBranchOffset() 896 void Assembler::target_at_put(int32_t pos, int32_t target_pos, in target_at_put() argument 901 uint32_t imm = reinterpret_cast<uint32_t>(buffer_start_) + target_pos; in target_at_put() 906 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 909 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 915 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put() 923 int32_t imm_short = target_pos - (pos + Assembler::kBranchPCOffset); in target_at_put() 929 instr_b = SetBranchOffset(pos, target_pos, instr_ in target_at_put() 1398 int32_t target_pos; jump_address() local 1419 int32_t target_pos; branch_long_offset() local 1442 int32_t target_pos; branch_offset_helper() local 1469 int target_pos; label_at_put() local [all...] |
H A D | assembler-mips.h | 1544 void target_at_put(int pos, int target_pos, bool is_internal);
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | assembler-riscv64.cc | 450 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos, in SetBranchOffset() argument 452 int32_t imm = target_pos - pos; in SetBranchOffset() 490 static inline Instr SetJalOffset(int32_t pos, int32_t target_pos, Instr instr) { in SetJalOffset() argument 492 int32_t imm = target_pos - pos; in SetJalOffset() 505 static inline ShortInstr SetCJalOffset(int32_t pos, int32_t target_pos, in SetCJalOffset() argument 508 int32_t imm = target_pos - pos; in SetCJalOffset() 520 static inline Instr SetCBranchOffset(int32_t pos, int32_t target_pos, in SetCBranchOffset() argument 523 int32_t imm = target_pos - pos; in SetCBranchOffset() 536 void Assembler::target_at_put(int pos, int target_pos, bool is_internal, in target_at_put() argument 539 uint64_t imm = reinterpret_cast<uint64_t>(buffer_start_) + target_pos; in target_at_put() 1392 int64_t target_pos; jump_address() local 1422 int64_t target_pos; branch_long_offset() local 1453 int32_t target_pos; branch_offset_helper() local 1485 int target_pos; label_at_put() local [all...] |
H A D | assembler-riscv64.h | 1423 void target_at_put(int pos, int target_pos, bool is_internal,
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.cc | 789 static inline Instr SetBranchOffset(int32_t pos, int32_t target_pos, in SetBranchOffset() argument 792 int32_t imm = target_pos - (pos + Assembler::kBranchPCOffset); in SetBranchOffset() 803 void Assembler::target_at_put(int pos, int target_pos, bool is_internal) { in target_at_put() argument 805 uint64_t imm = reinterpret_cast<uint64_t>(buffer_start_) + target_pos; in target_at_put() 811 DCHECK(target_pos == kEndOfChain || target_pos >= 0); in target_at_put() 814 instr_at_put(pos, target_pos + (Code::kHeaderSize - kHeapObjectTag)); in target_at_put() 819 instr = SetBranchOffset(pos, target_pos, instr); in target_at_put() 827 int32_t imm = target_pos - (pos + Assembler::kLongBranchPCOffset); in target_at_put() 834 instr_b = SetBranchOffset(pos, target_pos, instr_ in target_at_put() 1326 int64_t target_pos; jump_address() local 1345 int64_t target_pos; jump_offset() local 1366 int64_t target_pos; branch_long_offset() local 1386 int32_t target_pos; branch_offset_helper() local 1413 int target_pos; label_at_put() local [all...] |
H A D | assembler-mips64.h | 1595 void target_at_put(int pos, int target_pos, bool is_internal);
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc.cc | 450 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument 460 int imm26 = target_pos - pos; in target_at_put() 473 int imm16 = target_pos - pos; in target_at_put() 489 int32_t offset = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 504 int32_t offset = target_pos + delta; in target_at_put() 519 patcher.bitwise_mov(dst, target_pos); in target_at_put() 527 patcher.dp(target_pos); in target_at_put() 684 // was: target_pos = kEndOfChain; in link()
|
H A D | assembler-ppc.h | 1330 // Patch instruction(s) at pos to target target_pos (e.g. branch) 1331 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm.cc | 815 void Assembler::target_at_put(int pos, int target_pos) { in target_at_put() argument 818 DCHECK(target_pos == pos || target_pos >= 0); in target_at_put() 845 uint32_t target24 = target_pos + (Code::kHeaderSize - kHeapObjectTag); in target_at_put() 891 int imm26 = target_pos - (pos + Instruction::kPcLoadDelta); in target_at_put() 1444 int target_pos; in branch_offset() local 1446 target_pos = L->pos(); in branch_offset() 1450 target_pos = L->pos(); in branch_offset() 1453 target_pos = pc_offset(); in branch_offset() 1458 return target_pos in branch_offset() [all...] |
H A D | assembler-arm.h | 1204 void target_at_put(int pos, int target_pos);
|