/third_party/node/deps/v8/src/codegen/arm/ |
H A D | macro-assembler-arm.cc | 122 void TurboAssembler::Jump(intptr_t target, RelocInfo::Mode rmode, in Jump() argument 124 mov(pc, Operand(target, rmode), LeaveCC, cond); in Jump() 127 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, in Jump() argument 129 DCHECK(!RelocInfo::IsCodeTarget(rmode)); in Jump() 130 Jump(static_cast<intptr_t>(target), rmode, cond); in Jump() local 133 void TurboAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode, in Jump() argument 135 DCHECK(RelocInfo::IsCodeTarget(rmode)); in Jump() 170 Jump(static_cast<intptr_t>(code.address()), rmode, cond); in Jump() local 186 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, Condition cond, in Call() argument 213 mov(ip, Operand(target, rmode)); in Call() 221 Call(Handle<Code> code, RelocInfo::Mode rmode, Condition cond, TargetAddressStorageMode mode, bool check_constant_pool) Call() argument [all...] |
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.h | 66 RelocInfo::Mode rmode = RelocInfo::NO_INFO) in Operand() 67 : rm_(no_reg), rmode_(rmode) { in Operand() 109 RelocInfo::Mode rmode() const { return rmode_; } in rmode() function in v8::internal::Operand 1394 static int RelocateInternalReference(RelocInfo::Mode rmode, Address pc, 1397 static void RelocateRelativeReference(RelocInfo::Mode rmode, Address pc, 1403 void dd(uint32_t data, RelocInfo::Mode rmode = RelocInfo::NO_INFO); 1404 void dq(uint64_t data, RelocInfo::Mode rmode = RelocInfo::NO_INFO); 1405 void dp(uintptr_t data, RelocInfo::Mode rmode = RelocInfo::NO_INFO) { in dp() 1406 dd(data, rmode); in dp() 1547 bool MustUseReg(RelocInfo::Mode rmode); [all...] |
H A D | macro-assembler-mips.h | 208 void Jump(intptr_t target, RelocInfo::Mode rmode, COND_ARGS); 209 void Jump(Address target, RelocInfo::Mode rmode, COND_ARGS); 214 void Jump(Handle<Code> code, RelocInfo::Mode rmode, COND_ARGS); 218 void Call(Address target, RelocInfo::Mode rmode, COND_ARGS); 219 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | macro-assembler-riscv64.h | 204 RelocInfo::Mode rmode = RelocInfo::FULL_EMBEDDED_OBJECT); 234 void Jump(intptr_t target, RelocInfo::Mode rmode, COND_ARGS); 235 void Jump(Address target, RelocInfo::Mode rmode, COND_ARGS); 240 void Jump(Handle<Code> code, RelocInfo::Mode rmode, COND_ARGS); 243 void Call(Address target, RelocInfo::Mode rmode, COND_ARGS); 244 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, 249 RelocInfo::Mode rmode = RelocInfo::INTERNAL_REFERENCE_ENCODED);
|
H A D | assembler-riscv64.cc | 801 bool Assembler::MustUseReg(RelocInfo::Mode rmode) { in MustUseReg() argument 802 return !RelocInfo::IsNoInfo(rmode); in MustUseReg() 3589 int Assembler::RelocateInternalReference(RelocInfo::Mode rmode, Address pc, in RelocateInternalReference() argument 3591 if (RelocInfo::IsInternalReference(rmode)) { in RelocateInternalReference() 3600 DCHECK(RelocInfo::IsInternalReferenceEncoded(rmode)); in RelocateInternalReference() 3611 void Assembler::RelocateRelativeReference(RelocInfo::Mode rmode, Address pc, in RelocateRelativeReference() argument 3615 DCHECK(RelocInfo::IsRelativeCodeTarget(rmode)); in RelocateRelativeReference() 3665 RelocInfo::Mode rmode = it.rinfo()->rmode(); in GrowBuffer() local 3666 if (rmode in GrowBuffer() 3680 dd(uint32_t data, RelocInfo::Mode rmode) dd() argument 3691 dq(uint64_t data, RelocInfo::Mode rmode) dq() argument 3715 RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) RecordRelocInfo() argument [all...] |
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | macro-assembler-ppc.h | 695 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al, 697 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al, 700 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al, 703 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al); 704 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, 770 RelocInfo::Mode rmode = RelocInfo::FULL_EMBEDDED_OBJECT); 1243 RelocInfo::Mode rmode,
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | macro-assembler-arm64.h | 162 bool CanUseNearCallOrJump(RelocInfo::Mode rmode) { in CanUseNearCallOrJump() argument 163 return rmode != RelocInfo::EXTERNAL_REFERENCE; in CanUseNearCallOrJump() 947 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); 948 void Jump(Handle<CodeT> code, RelocInfo::Mode rmode, Condition cond = al); 952 void Call(Address target, RelocInfo::Mode rmode); 953 void Call(Handle<CodeT> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET); 957 void IndirectCall(Address target, RelocInfo::Mode rmode); 1522 int64_t CalculateTargetOffset(Address target, RelocInfo::Mode rmode, 1525 void JumpHelper(int64_t offset, RelocInfo::Mode rmode, Condition cond = al);
|
/third_party/node/deps/v8/src/heap/ |
H A D | remembered-set.h | 323 DCHECK(RelocInfo::IsCodeTargetMode(rinfo->rmode())); in UpdateCodeTarget() 339 DCHECK(RelocInfo::IsEmbeddedObjectMode(rinfo->rmode())); in UpdateEmbeddedPointer()
|
H A D | marking-visitor-inl.h | 115 DCHECK(RelocInfo::IsEmbeddedObjectMode(rinfo->rmode())); in VisitEmbeddedPointer() 135 DCHECK(RelocInfo::IsCodeTargetMode(rinfo->rmode())); in VisitCodeTarget()
|
H A D | mark-compact.cc | 271 DCHECK(RelocInfo::IsEmbeddedObjectMode(rinfo->rmode())); 1493 DCHECK(RelocInfo::IsCodeTargetMode(rinfo->rmode())); 1503 DCHECK(RelocInfo::IsEmbeddedObjectMode(rinfo->rmode())); 3093 const RelocInfo::Mode rmode = rinfo->rmode(); in ProcessRelocInfo() local 3100 if (RelocInfo::IsCodeTargetMode(rmode)) { in ProcessRelocInfo() 3102 } else if (RelocInfo::IsCompressedEmbeddedObject(rmode)) { in ProcessRelocInfo() 3105 DCHECK(RelocInfo::IsFullEmbeddedObject(rmode)); in ProcessRelocInfo() 3111 if (RelocInfo::IsCodeTargetMode(rmode)) { in ProcessRelocInfo() 3113 } else if (RelocInfo::IsFullEmbeddedObject(rmode)) { in ProcessRelocInfo() [all...] |
/third_party/node/deps/v8/src/snapshot/embedded/ |
H A D | embedded-data.cc | 242 DCHECK_EQ(rinfo->rmode(), off_heap_it.rinfo()->rmode()); in FinalizeEmbeddedCodeTargets()
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | macro-assembler-s390.cc | 369 void TurboAssembler::Jump(intptr_t target, RelocInfo::Mode rmode, in Jump() argument 375 mov(ip, Operand(target, rmode)); in Jump() 381 void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, in Jump() argument 383 DCHECK(!RelocInfo::IsCodeTarget(rmode)); in Jump() 384 Jump(static_cast<intptr_t>(target), rmode, cond); in Jump() local 387 void TurboAssembler::Jump(Handle<Code> code, RelocInfo::Mode rmode, in Jump() argument 389 DCHECK(RelocInfo::IsCodeTarget(rmode)); in Jump() 425 RelocInfo::Mode rmode, in CallSizeNotPredictableCodeSize() 437 void TurboAssembler::Call(Address target, RelocInfo::Mode rmode, in Call() argument 441 mov(ip, Operand(target, rmode)); in Call() 424 CallSizeNotPredictableCodeSize(Address target, RelocInfo::Mode rmode, Condition cond) CallSizeNotPredictableCodeSize() argument 445 Call(Handle<Code> code, RelocInfo::Mode rmode, Condition cond) Call() argument 510 Move(Register dst, Handle<HeapObject> value, RelocInfo::Mode rmode) Move() argument [all...] |
H A D | macro-assembler-s390.h | 88 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al); 89 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al); 102 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al); 103 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, 139 RelocInfo::Mode rmode = RelocInfo::FULL_EMBEDDED_OBJECT); 1488 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al); 1754 RelocInfo::Mode rmode,
|
/third_party/node/deps/v8/src/objects/ |
H A D | code.cc | 152 DCHECK(RelocInfo::IsEmbeddedObjectMode(it.rinfo()->rmode())); in ClearEmbeddedObjects() 192 RelocInfo::Mode mode = it.rinfo()->rmode(); in RelocateFromDesc() 320 if (RelocInfo::IsCodeTargetMode(it.rinfo()->rmode())) { in IsIsolateIndependent()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | macro-assembler-ia32.cc | 1861 void TurboAssembler::Call(Handle<Code> code_object, RelocInfo::Mode rmode) { in CallRecordWriteStub() argument 1873 DCHECK(RelocInfo::IsCodeTarget(rmode)); in CallRecordWriteStub() 1874 call(code_object, rmode); in CallRecordWriteStub() 1980 void TurboAssembler::Jump(Handle<Code> code_object, RelocInfo::Mode rmode) { in CallRecordWriteStub() argument 1992 DCHECK(RelocInfo::IsCodeTarget(rmode)); in CallRecordWriteStub() 1993 jmp(code_object, rmode); in CallRecordWriteStub()
|
H A D | macro-assembler-ia32.h | 148 void Call(Handle<Code> code_object, RelocInfo::Mode rmode); 162 void Jump(Handle<Code> code_object, RelocInfo::Mode rmode);
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 66 RelocInfo::Mode rmode = RelocInfo::NO_INFO) in Operand() 67 : rm_(no_reg), rmode_(rmode) { in Operand() 109 RelocInfo::Mode rmode() const { return rmode_; } in rmode() function in v8::internal::Operand 1457 static int RelocateInternalReference(RelocInfo::Mode rmode, Address pc, 1463 void dd(uint32_t data, RelocInfo::Mode rmode = RelocInfo::NO_INFO); 1464 void dq(uint64_t data, RelocInfo::Mode rmode = RelocInfo::NO_INFO); 1465 void dp(uintptr_t data, RelocInfo::Mode rmode = RelocInfo::NO_INFO) { in dp() 1466 dq(data, rmode); in dp() 1598 bool MustUseReg(RelocInfo::Mode rmode); 1601 void RecordRelocInfo(RelocInfo::Mode rmode, intptr_ [all...] |
H A D | assembler-mips64.cc | 1063 bool Assembler::MustUseReg(RelocInfo::Mode rmode) { in MustUseReg() argument 1064 return !RelocInfo::IsNoInfo(rmode); in MustUseReg() 3671 int Assembler::RelocateInternalReference(RelocInfo::Mode rmode, Address pc, in RelocateInternalReference() argument 3673 if (RelocInfo::IsInternalReference(rmode)) { in RelocateInternalReference() 3682 DCHECK(RelocInfo::IsInternalReferenceEncoded(rmode)); in RelocateInternalReference() 3776 RelocInfo::Mode rmode = it.rinfo()->rmode(); in GrowBuffer() local 3777 if (rmode == RelocInfo::INTERNAL_REFERENCE) { in GrowBuffer() 3778 RelocateInternalReference(rmode, it.rinfo()->pc(), pc_delta); in GrowBuffer() 3791 void Assembler::dd(uint32_t data, RelocInfo::Mode rmode) { in dd() argument 3802 dq(uint64_t data, RelocInfo::Mode rmode) dq() argument 3827 RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) RecordRelocInfo() argument [all...] |
H A D | macro-assembler-mips64.h | 233 void Jump(intptr_t target, RelocInfo::Mode rmode, COND_ARGS); 234 void Jump(Address target, RelocInfo::Mode rmode, COND_ARGS); 239 void Jump(Handle<Code> code, RelocInfo::Mode rmode, COND_ARGS); 242 void Call(Address target, RelocInfo::Mode rmode, COND_ARGS); 243 void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
|
/third_party/node/deps/v8/src/compiler/ |
H A D | raw-machine-assembler.h | 95 Node* RelocatableIntPtrConstant(intptr_t value, RelocInfo::Mode rmode); 120 Node* RelocatableInt32Constant(int32_t value, RelocInfo::Mode rmode) { in RelocatableInt32Constant() argument 121 return AddNode(common()->RelocatableInt32Constant(value, rmode)); in RelocatableInt32Constant() 123 Node* RelocatableInt64Constant(int64_t value, RelocInfo::Mode rmode) { in RelocatableInt64Constant() argument 124 return AddNode(common()->RelocatableInt64Constant(value, rmode)); in RelocatableInt64Constant()
|
H A D | raw-machine-assembler.cc | 75 RelocInfo::Mode rmode) { in RelocatableIntPtrConstant() 77 ? RelocatableInt64Constant(value, rmode) in RelocatableIntPtrConstant() 78 : RelocatableInt32Constant(static_cast<int>(value), rmode); in RelocatableIntPtrConstant() 74 RelocatableIntPtrConstant(intptr_t value, RelocInfo::Mode rmode) RelocatableIntPtrConstant() argument
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | deoptimizer.cc | 2016 if (info->rmode() == RelocInfo::DEOPT_SCRIPT_OFFSET) { in GetDeoptInfo() 2019 DCHECK(it.rinfo()->rmode() == RelocInfo::DEOPT_INLINING_ID); in GetDeoptInfo() 2022 } else if (info->rmode() == RelocInfo::DEOPT_ID) { in GetDeoptInfo() 2024 } else if (info->rmode() == RelocInfo::DEOPT_REASON) { in GetDeoptInfo() 2026 } else if (info->rmode() == RelocInfo::DEOPT_NODE_ID) { in GetDeoptInfo()
|
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.h | 448 float RoundF2FHelper(float input_val, int rmode); 449 double RoundF2FHelper(double input_val, int rmode); 451 I_TYPE RoundF2IHelper(F_TYPE original, int rmode);
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | code-generator-ia32.cc | 74 RelocInfo::IsWasmReference(constant.rmode())) { in ToImmediate() 76 constant.rmode()); in ToImmediate() 130 return Operand(base, ctant.ToInt32(), ctant.rmode()); in MemoryOperand() 150 return Operand(base, index, scale, ctant.ToInt32(), ctant.rmode()); in MemoryOperand() 168 return Operand(index, scale, ctant.ToInt32(), ctant.rmode()); in MemoryOperand() 172 return Operand(ctant.ToInt32(), ctant.rmode()); in MemoryOperand() 199 return Operand(base, ctant.ToInt32() + disp, ctant.rmode()); in NextMemoryOperand() 728 __ wasm_call(wasm_code, constant.rmode()); in AssembleArchInstruction() 730 __ call(wasm_code, constant.rmode()); in AssembleArchInstruction() 743 __ jmp(wasm_code, constant.rmode()); in AssembleArchInstruction() [all...] |
/third_party/python/Lib/ |
H A D | turtle.py | 2045 def resizemode(self, rmode=None): 2049 rmode -- one of the strings "auto", "user", "noresize" 2067 if rmode is None: 2069 rmode = rmode.lower() 2070 if rmode in ["auto", "user", "noresize"]: 2071 self.pen(resizemode=rmode)
|