Home
last modified time | relevance | path

Searched refs:MachineMove (Results 1 – 18 of 18) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMachineLocation.h75 class MachineMove {
84 MachineMove() : Label(0) {} in MachineMove() function
86 MachineMove(MCSymbol *label, const MachineLocation &D, in MachineMove() function
DMCAsmInfo.h343 std::vector<MachineMove> InitialFrameState;
578 InitialFrameState.push_back(MachineMove(label, D, S)); in addInitialFrameState()
580 const std::vector<MachineMove> &getInitialFrameState() const { in getInitialFrameState()
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsFrameLowering.cpp177 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitPrologue()
196 Moves.push_back(MachineMove(AdjustSPLabel, DstML, SrcML)); in emitPrologue()
229 Moves.push_back(MachineMove(CSLabel, DstML0, SrcML0)); in emitPrologue()
230 Moves.push_back(MachineMove(CSLabel, DstML1, SrcML1)); in emitPrologue()
236 Moves.push_back(MachineMove(CSLabel, DstML, SrcML)); in emitPrologue()
253 Moves.push_back(MachineMove(SetFPLabel, DstML, SrcML)); in emitPrologue()
/external/swiftshader/third_party/LLVM/lib/Target/XCore/
DXCoreFrameLowering.cpp139 std::vector<MachineMove> &Moves = MMI->getFrameMoves(); in emitPrologue()
147 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); in emitPrologue()
152 Moves.push_back(MachineMove(FrameLabel, CSDst, CSSrc)); in emitPrologue()
165 MMI->getFrameMoves().push_back(MachineMove(SaveLRLabel, CSDst, CSSrc)); in emitPrologue()
181 MMI->getFrameMoves().push_back(MachineMove(SaveR10Label, CSDst, CSSrc)); in emitPrologue()
193 MMI->getFrameMoves().push_back(MachineMove(FrameLabel, SPDst, SPSrc)); in emitPrologue()
199 std::vector<MachineMove> &Moves = MMI->getFrameMoves(); in emitPrologue()
209 Moves.push_back(MachineMove(SpillLabel, CSDst, CSSrc)); in emitPrologue()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITDwarfEmitter.h24 class MachineMove; variable
44 const std::vector<MachineMove> &Moves) const;
DJITDwarfEmitter.cpp68 const std::vector<MachineMove> &Moves) const { in EmitFrameMoves()
75 const MachineMove &Move = Moves[i]; in EmitFrameMoves()
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUFrameLowering.cpp158 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitPrologue()
163 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); in emitPrologue()
173 Moves.push_back(MachineMove(FrameLabel, CSDst, CSSrc)); in emitPrologue()
182 Moves.push_back(MachineMove(ReadyLabel, FPDst, FPSrc)); in emitPrologue()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineModuleInfo.h112 std::vector<MachineMove> FrameMoves;
237 std::vector<MachineMove> &getFrameMoves() { return FrameMoves; } in getFrameMoves()
DAsmPrinter.h45 class MachineMove; variable
404 void EmitCFIFrameMove(const MachineMove &Move) const;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86FrameLowering.cpp296 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitCalleeSavedFrameMoves()
346 Moves.push_back(MachineMove(Label, CSDst, CSSrc)); in emitCalleeSavedFrameMoves()
678 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitPrologue()
711 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); in emitPrologue()
715 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); in emitPrologue()
721 Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc)); in emitPrologue()
739 Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc)); in emitPrologue()
783 Moves.push_back(MachineMove(Label, SPDst, SPSrc)); in emitPrologue()
902 Moves.push_back(MachineMove(Label, SPDst, SPSrc)); in emitPrologue()
906 Moves.push_back(MachineMove(Label, SPDst, SPSrc)); in emitPrologue()
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCFrameLowering.cpp422 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitPrologue()
435 Moves.push_back(MachineMove(FrameLabel, SPDst, SPSrc)); in emitPrologue()
438 Moves.push_back(MachineMove(FrameLabel, SP, SP)); in emitPrologue()
444 Moves.push_back(MachineMove(FrameLabel, FPDst, FPSrc)); in emitPrologue()
450 Moves.push_back(MachineMove(FrameLabel, LRDst, LRSrc)); in emitPrologue()
477 Moves.push_back(MachineMove(ReadyLabel, FPDst, FPSrc)); in emitPrologue()
498 Moves.push_back(MachineMove(Label, CSDst, CSSrc)); in emitPrologue()
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetFrameLowering.h28 class MachineMove; variable
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DDwarfException.h26 class MachineMove; variable
DDwarfDebug.h288 std::vector<MachineMove> Moves;
290 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M) in FunctionDebugFrameInfo()
DAsmPrinterDwarf.cpp210 void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const { in EmitCFIFrameMove()
DAsmPrinter.cpp629 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitPrologLabel()
632 for (std::vector<MachineMove>::iterator I = Moves.begin(), in emitPrologLabel()
/external/llvm/test/CodeGen/PowerPC/
Dpr15031.ll151 …or_base.96" = type { %"struct.std::_Vector_base<llvm::MachineMove, std::allocator<llvm::MachineMov…
152MachineMove, std::allocator<llvm::MachineMove> >::_Vector_impl" = type { %"class.llvm::MachineMove
153 %"class.llvm::MachineMove" = type { %"class.llvm::MCSymbol"*, %"class.llvm::MachineLocation", %"cla…
/external/swiftshader/third_party/LLVM/lib/MC/
DMCDwarf.cpp866 const std::vector<MachineMove> &Moves = MAI.getInitialFrameState(); in EmitCIE()