/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MachineLocation.h | 75 class MachineMove { 84 MachineMove() : Label(0) {} in MachineMove() function 86 MachineMove(MCSymbol *label, const MachineLocation &D, in MachineMove() function
|
D | MCAsmInfo.h | 343 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/ |
D | MipsFrameLowering.cpp | 177 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/ |
D | XCoreFrameLowering.cpp | 139 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/ |
D | JITDwarfEmitter.h | 24 class MachineMove; variable 44 const std::vector<MachineMove> &Moves) const;
|
D | JITDwarfEmitter.cpp | 68 const std::vector<MachineMove> &Moves) const { in EmitFrameMoves() 75 const MachineMove &Move = Moves[i]; in EmitFrameMoves()
|
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/ |
D | SPUFrameLowering.cpp | 158 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/ |
D | MachineModuleInfo.h | 112 std::vector<MachineMove> FrameMoves; 237 std::vector<MachineMove> &getFrameMoves() { return FrameMoves; } in getFrameMoves()
|
D | AsmPrinter.h | 45 class MachineMove; variable 404 void EmitCFIFrameMove(const MachineMove &Move) const;
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86FrameLowering.cpp | 296 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/ |
D | PPCFrameLowering.cpp | 422 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/ |
D | TargetFrameLowering.h | 28 class MachineMove; variable
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfException.h | 26 class MachineMove; variable
|
D | DwarfDebug.h | 288 std::vector<MachineMove> Moves; 290 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M) in FunctionDebugFrameInfo()
|
D | AsmPrinterDwarf.cpp | 210 void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const { in EmitCFIFrameMove()
|
D | AsmPrinter.cpp | 629 std::vector<MachineMove> &Moves = MMI.getFrameMoves(); in emitPrologLabel() 632 for (std::vector<MachineMove>::iterator I = Moves.begin(), in emitPrologLabel()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | pr15031.ll | 151 …or_base.96" = type { %"struct.std::_Vector_base<llvm::MachineMove, std::allocator<llvm::MachineMov… 152 …MachineMove, 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/ |
D | MCDwarf.cpp | 866 const std::vector<MachineMove> &Moves = MAI.getInitialFrameState(); in EmitCIE()
|