Searched refs:code_target_index (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | assembler-loong64-inl.h | 156 int32_t code_target_index = instr & kImm26Mask; in relative_code_target_object_handle_at() local 157 code_target_index = ((code_target_index & 0x3ff) << 22 >> 6) | in relative_code_target_object_handle_at() 158 ((code_target_index >> 10) & kImm16Mask); in relative_code_target_object_handle_at() 159 return GetCodeTarget(code_target_index); in relative_code_target_object_handle_at()
|
H A D | macro-assembler-loong64.cc | 2580 int32_t code_target_index = AddCodeTarget(code); in CallRecordWriteStub() local 2582 b(code_target_index); in CallRecordWriteStub() 2678 int32_t code_target_index = AddCodeTarget(code); in CallRecordWriteStub() local 2681 bl(code_target_index); in CallRecordWriteStub()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | assembler.cc | 284 Handle<CodeT> AssemblerBase::GetCodeTarget(intptr_t code_target_index) const { in GetCodeTarget() 285 DCHECK_LT(static_cast<size_t>(code_target_index), code_targets_.size()); in GetCodeTarget() 286 return code_targets_[code_target_index]; in GetCodeTarget()
|
H A D | assembler.h | 357 Handle<CodeT> GetCodeTarget(intptr_t code_target_index) const;
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips-inl.h | 277 int code_target_index = GetLuiOriImmediate(instr1, instr2); in relative_code_target_object_handle_at() local 278 return GetCodeTarget(code_target_index); in relative_code_target_object_handle_at()
|
H A D | macro-assembler-mips.cc | 3742 int32_t code_target_index = AddCodeTarget(code); in CallRecordWriteStub() local 3750 GenPCRelativeJump(t8, t9, code_target_index, in CallRecordWriteStub() 3883 int32_t code_target_index = AddCodeTarget(code); in CallRecordWriteStub() local 3889 GenPCRelativeJumpAndLink(t8, code_target_index, in CallRecordWriteStub()
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | assembler-riscv64-inl.h | 246 int32_t code_target_index = BrachlongOffset(instr1, instr2); in relative_code_target_object_handle_at() local 247 return GetCodeTarget(code_target_index); in relative_code_target_object_handle_at()
|
H A D | macro-assembler-riscv64.cc | 3246 int32_t code_target_index = AddCodeTarget(code); in Jump() local 3253 GenPCRelativeJump(t6, code_target_index); in Jump() 3324 int32_t code_target_index = AddCodeTarget(code); in Call() local 3332 GenPCRelativeJumpAndLink(t6, code_target_index); in Call()
|
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm-inl.h | 187 int code_target_index = branch->GetBranchOffset() / kInstrSize; in relative_code_target_object_handle_at() local 188 return GetCodeTarget(code_target_index); in relative_code_target_object_handle_at()
|
H A D | macro-assembler-arm.cc | 146 int32_t code_target_index = AddCodeTarget(code); in Jump() local 147 b(code_target_index * kInstrSize, cond, RelocInfo::RELATIVE_CODE_TARGET); in Jump() 235 int32_t code_target_index = AddCodeTarget(code); in Call() local 236 bl(code_target_index * kInstrSize, cond, RelocInfo::RELATIVE_CODE_TARGET); in Call()
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | assembler-x64.cc | 1019 int code_target_index = AddCodeTarget(target); in call() local 1020 emitl(code_target_index); in call() 1459 int code_target_index = AddCodeTarget(target); in j() local 1460 emitl(code_target_index); in j() 1544 int code_target_index = AddCodeTarget(target); in jmp() local 1545 emitl(code_target_index); in jmp()
|
Completed in 39 milliseconds