Home
last modified time | relevance | path

Searched refs:StackSlot (Results 1 – 24 of 24) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DInlineSpiller.cpp151 void addToMergeableSpills(MachineInstr &Spill, int StackSlot,
153 bool rmFromMergeableSpills(MachineInstr &Spill, int StackSlot);
174 int StackSlot; member in __anonc14622d90111::InlineSpiller
301 if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot) in isSnippet()
305 if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) in isSnippet()
412 TII.storeRegToStackSlot(*MBB, MII, SrcReg, false, StackSlot, in hoistSpillInsideBB()
418 HSpiller.addToMergeableSpills(*MII, StackSlot, Original); in hoistSpillInsideBB()
471 if (Reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) { in eliminateRedundantSpills()
477 if (HSpiller.rmFromMergeableSpills(MI, StackSlot)) in eliminateRedundantSpills()
725 if (InstrReg != Reg || FI != StackSlot) in coalesceStackAccess()
[all …]
/third_party/node/deps/v8/src/base/platform/
Dplatform.h602 struct StackSlot { struct
604 StackSlot(void* value) : value(reinterpret_cast<uintptr_t>(value)) {} in StackSlot() function
605 StackSlot(uintptr_t value) : value(value) {} // NOLINT in StackSlot() function
615 static StackSlot GetStackStart(); argument
621 static V8_NOINLINE StackSlot GetCurrentStackPosition();
625 static StackSlot GetRealStackAddressForSlot(StackSlot slot) { in GetRealStackAddressForSlot()
Dplatform-solaris.cc75 Stack::StackSlot Stack::GetStackStart() { in GetStackStart()
Dplatform-darwin.cc102 Stack::StackSlot Stack::GetStackStart() { in GetStackStart()
Dplatform-freebsd.cc107 Stack::StackSlot Stack::GetStackStart() { in GetStackStart()
Dplatform-aix.cc139 Stack::StackSlot Stack::GetStackStart() { in GetStackStart()
Dplatform-starboard.cc489 Stack::StackSlot Stack::GetCurrentStackPosition() { in GetCurrentStackPosition()
Dplatform-posix.cc1219 Stack::StackSlot Stack::GetStackStart() { in GetStackStart()
1246 Stack::StackSlot Stack::GetCurrentStackPosition() { in GetCurrentStackPosition()
Dplatform-win32.cc1704 Stack::StackSlot Stack::GetStackStart() { in GetStackStart()
1723 Stack::StackSlot Stack::GetCurrentStackPosition() { in GetCurrentStackPosition()
/third_party/node/deps/v8/src/compiler/
Dgraph-assembler.cc414 TNode<RawPtrT> GraphAssembler::StackSlot(int size, int alignment) { in StackSlot() function in v8::internal::compiler::GraphAssembler
416 graph()->NewNode(machine()->StackSlot(size, alignment))); in StackSlot()
Dmachine-operator.h957 const Operator* StackSlot(int size, int alignment = 0); in NON_EXPORTED_BASE()
958 const Operator* StackSlot(MachineRepresentation rep, int alignment = 0); in NON_EXPORTED_BASE()
Dint64-lowering.cc643 machine()->StackSlot(MachineRepresentation::kWord64)); in LowerNode()
678 machine()->StackSlot(MachineRepresentation::kWord64)); in LowerNode()
Dmachine-operator.cc1560 const Operator* MachineOperatorBuilder::StackSlot(int size, int alignment) { in StackSlot() function in v8::internal::compiler::MachineOperatorBuilder
1574 const Operator* MachineOperatorBuilder::StackSlot(MachineRepresentation rep, in StackSlot() function in v8::internal::compiler::MachineOperatorBuilder
1576 return StackSlot(1 << ElementSizeLog2Of(rep), alignment); in StackSlot()
Draw-machine-assembler.h99 Node* StackSlot(MachineRepresentation rep, int alignment = 0) {
100 return AddNode(machine()->StackSlot(rep, alignment));
Dopcodes.h692 V(StackSlot) \
Dgraph-assembler.h308 TNode<RawPtrT> StackSlot(int size, int alignment);
Dwasm-compiler.cc2385 graph()->NewNode(mcgraph()->machine()->StackSlot(stack_slot_size)); in BuildIntToFloatConversionInstruction()
2428 graph()->NewNode(mcgraph()->machine()->StackSlot(stack_slot_size)); in BuildCcallConvertFloat()
3931 info = gasm_->StackSlot(size, size); in TraceFunctionExit()
3947 gasm_->StackSlot(sizeof(wasm::MemoryTracingInfo), kAlign); in TraceMemoryOperation()
5460 graph()->NewNode(mcgraph()->machine()->StackSlot(slot_size)); in StoreArgsInStackSlot()
7273 : graph()->NewNode(mcgraph()->machine()->StackSlot( in BuildCapiCallWrapper()
7403 Node* stack_slot = gasm_->StackSlot(kSize, kAlign); in BuildJSFastApiCallWrapper()
Deffect-control-linearizer.cc4932 Node* stack_slot = __ StackSlot(kSize, kAlign); in AdaptFastCallTypedArrayArgument()
4955 Node* stack_slot = __ StackSlot(kSize, kAlign); in AdaptFastCallArgument()
4977 Node* stack_slot = __ StackSlot(kSize, kAlign); in AdaptFastCallArgument()
5044 Node* stack_slot = __ StackSlot(kSize, kAlign); in AdaptOverloadedFastCallArgument()
5184 stack_slot = __ StackSlot(kSize, kAlign); in LowerFastApiCall()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInstX8632.cpp2387 AsmAddress StackSlot = AsmAddress(RegisterSet::Encoded_Reg_esp, 0); in emitIAS() local
2388 Asm->movss(Ty, StackSlot, RegX8632::getEncodedXmm(Var->getRegNum())); in emitIAS()
2389 Asm->fld(Ty, StackSlot); in emitIAS()
2470 AsmAddress StackSlot = AsmAddress(RegisterSet::Encoded_Reg_esp, 0); in emitIAS() local
2471 Asm->fstp(Ty, StackSlot); in emitIAS()
2472 Asm->movss(Ty, RegX8632::getEncodedXmm(Dest->getRegNum()), StackSlot); in emitIAS()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp2361 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64); in ExpandLegalINT_TO_FP() local
2365 StackSlot.getValueType()); in ExpandLegalINT_TO_FP()
2367 SDValue Hi = StackSlot; in ExpandLegalINT_TO_FP()
2368 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(), in ExpandLegalINT_TO_FP()
2369 StackSlot, WordOff); in ExpandLegalINT_TO_FP()
2392 DAG.getLoad(MVT::f64, dl, Store2, StackSlot, MachinePointerInfo()); in ExpandLegalINT_TO_FP()
DSelectionDAGBuilder.cpp7926 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getFrameIndexTy(DL)); in getAddressForMemoryInput() local
7927 Chain = DAG.getTruncStore(Chain, Location, OpInfo.CallOperand, StackSlot, in getAddressForMemoryInput()
7930 OpInfo.CallOperand = StackSlot; in getAddressForMemoryInput()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.h1231 SDValue StackSlot,
DX86ISelLowering.cpp3973 SDValue StackSlot = in LowerCall() local
3976 CreateCopyOfByValArgument(Arg, StackSlot, Chain, Flags, DAG, dl); in LowerCall()
3978 Arg = StackSlot; in LowerCall()
18845 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT); in LowerSINT_TO_FP() local
18847 Chain, dl, ValueToStore, StackSlot, in LowerSINT_TO_FP()
18849 std::pair<SDValue, SDValue> Tmp = BuildFILD(Op, SrcVT, Chain, StackSlot, DAG); in LowerSINT_TO_FP()
18858 SDValue StackSlot, in BuildFILD() argument
18871 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot); in BuildFILD()
18879 LoadMMO = cast<LoadSDNode>(StackSlot)->getMemOperand(); in BuildFILD()
18880 StackSlot = StackSlot.getOperand(1); in BuildFILD()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp8330 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT); in LowerFLT_ROUNDS_() local
8331 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Chain, StackSlot, in LowerFLT_ROUNDS_()
8336 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four); in LowerFLT_ROUNDS_()