HomeSort by: relevance | last modified time | path
    Searched refs:StackSlot (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InlineSpiller.cpp 101 // Map from StackSlot to the LiveInterval of the original register.
107 // Map from pair of (StackSlot and Original VNI) to a set of spills which
108 // have the same stackslot and have equal values defined by Original VNI.
152 void addToMergeableSpills(MachineInstr &Spill, int StackSlot,
154 bool rmFromMergeableSpills(MachineInstr &Spill, int StackSlot);
175 int StackSlot;
178 // All registers to spill to StackSlot, including the main register.
315 if (SnipLI.reg() == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot)
319 if (SnipLI.reg() == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot)
427 TII.storeRegToStackSlot(*MBB, MII, SrcReg, false, StackSlot,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 434 for (const auto &StackSlot : llvm::reverse(AlignPackStack.Stack)) {
435 Diag(StackSlot.PragmaPushLocation, diag::warn_pragma_pack_no_pop_eof);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 2315 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
2334 SDValue Store1 = DAG.getStore(MemChain, dl, Lo, StackSlot,
2337 SDValue HiPtr = DAG.getMemBasePlusOffset(StackSlot, TypeSize::Fixed(4), dl);
2344 DAG.getLoad(MVT::f64, dl, MemChain, StackSlot, MachinePointerInfo());
SelectionDAGBuilder.cpp 2700 // If the guard/stackslot do not equal, branch to failure MBB.
8188 SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getFrameIndexTy(DL));
8189 Chain = DAG.getTruncStore(Chain, Location, OpInfo.CallOperand, StackSlot,
8192 OpInfo.CallOperand = StackSlot;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 4014 // Set the delta of movement of the returnaddr stackslot.
4119 SDValue StackSlot =
4122 CreateCopyOfByValArgument(Arg, StackSlot, Chain, Flags, DAG, dl);
4124 Arg = StackSlot;
20035 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
20036 Chain = DAG.getStore(Chain, dl, ValueToStore, StackSlot, MPI, Alignment);
20038 BuildFILD(VT, SrcVT, dl, Chain, StackSlot, MPI, Alignment, DAG);
20069 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
20071 SDValue FSTOps[] = {Chain, Result, StackSlot};
20079 DstVT, DL, Chain, StackSlot,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelLowering.cpp 1624 SDValue StackSlot =
1628 Lo = DAG.getStore(Chain, DL, Lo, StackSlot, MPI, Align(8));
1631 DAG.getMemBasePlusOffset(StackSlot, TypeSize::Fixed(4), DL);
1638 SDValue Ops[] = {Chain, IntID, StackSlot,
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 8685 SDValue StackSlot = DAG.getFrameIndex(SSFI, PtrVT);
8686 Chain = DAG.getStore(Chain, dl, MFFS, StackSlot, MachinePointerInfo());
8692 SDValue Addr = DAG.getNode(ISD::ADD, dl, PtrVT, StackSlot, Four);

Completed in 123 milliseconds