/external/llvm/lib/CodeGen/ |
MachineFunctionAnalysis.cpp | 38 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>(); 39 assert(MMI && "MMI not around yet??"); 40 MMI->setModule(&M);
|
BranchFolding.h | 31 MachineModuleInfo *mmi); 92 MachineModuleInfo *MMI;
|
LLVMTargetMachine.cpp | 114 MachineModuleInfo *MMI = 117 PM.add(MMI); 136 return &MMI->getContext();
|
UnreachableBlockElim.cpp | 104 MachineModuleInfo *MMI; 127 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
|
GCStrategy.cpp | 71 MachineModuleInfo *MMI; 413 MMI = &getAnalysis<MachineModuleInfo>();
|
StackColoring.cpp | 482 MachineModuleInfo *MMI = &MF->getMMI(); 485 MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo();
|
TailDuplication.cpp | 64 MachineModuleInfo *MMI; 134 MMI = getAnalysisIfAvailable<MachineModuleInfo>(); [all...] |
/external/llvm/lib/Target/X86/ |
X86FrameLowering.cpp | 47 const MachineModuleInfo &MMI = MF.getMMI(); 55 MMI.callsUnwindInit() || MMI.callsEHReturn()); 309 MachineModuleInfo &MMI = MF.getMMI(); 310 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo(); 364 MMI.addFrameInst(MCCFIInstruction::createOffset(Label, DwarfReg, Offset)); 652 MachineModuleInfo &MMI = MF.getMMI(); 654 bool needsFrameMoves = MMI.hasDebugInfo() || 761 MCSymbol *FrameLabel = MMI.getContext().CreateTempSymbol(); 767 MMI.addFrameInst [all...] |
X86CodeEmitter.cpp | 48 MachineModuleInfo *MMI; 130 MMI = &getAnalysis<MachineModuleInfo>(); 131 MCE.setModuleInfo(MMI); [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfException.h | 42 /// MMI - Collected machine module information. 43 MachineModuleInfo *MMI;
|
DwarfDebug.h | 309 MachineModuleInfo *MMI; 611 /// by MMI.
|
/external/llvm/lib/Target/PowerPC/ |
PPCCodeEmitter.cpp | 33 MachineModuleInfo *MMI; 102 MMI = &getAnalysis<MachineModuleInfo>(); 103 MCE.setModuleInfo(MMI);
|
PPCFrameLowering.cpp | 343 MachineModuleInfo &MMI = MF.getMMI(); 344 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo(); 346 bool needsFrameMoves = MMI.hasDebugInfo() || 594 FrameLabel = MMI.getContext().CreateTempSymbol(); 599 MMI.addFrameInst( 605 MMI.addFrameInst( 612 MMI.addFrameInst( 619 MMI.addFrameInst( 639 ReadyLabel = MMI.getContext().CreateTempSymbol(); 647 MMI.addFrameInst(MCCFIInstruction::createDefCfaRegister(ReadyLabel, Reg)) [all...] |
/frameworks/compile/mclinker/lib/CodeGen/ |
MCLDTargetMachine.cpp | 160 MachineModuleInfo *MMI = 163 PM.add(MMI); 164 MCContext *Context = &MMI->getContext(); // Return the MCContext by-ref.
|
/external/llvm/include/llvm/CodeGen/ |
AsmPrinter.h | 81 /// MMI - This is a pointer to the current MachineModuleInfo. 82 MachineModuleInfo *MMI;
|
MachineFunction.h | 79 MachineModuleInfo &MMI; 141 unsigned FunctionNum, MachineModuleInfo &MMI, 145 MachineModuleInfo &getMMI() const { return MMI; }
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
FunctionLoweringInfo.cpp | 114 MachineModuleInfo &MMI = MF->getMMI(); 118 if (MMI.hasDebugInfo() && 133 MMI.setVariableDbgInfo(DI->getVariable(), 388 MachineModuleInfo *MMI) 392 if (FT->isVarArg() && !MMI->usesVAFloatArgument()) { 398 MMI->setUsesVAFloatArgument(true); 408 void llvm::AddCatchInfo(const CallInst &I, MachineModuleInfo *MMI, 415 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); 432 MMI->addCatchTypeInfo(MBB, TyInfo); 438 MMI->addCleanup(MBB) [all...] |
FastISel.cpp | 582 MachineModuleInfo &MMI = FuncInfo.MF->getMMI(); 583 ComputeUsesVAFloatArgument(*Call, &MMI); [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZFrameLowering.cpp | 319 MachineModuleInfo &MMI = MF.getMMI(); 320 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo(); 336 MCSymbol *GPRSaveLabel = MMI.getContext().CreateTempSymbol(); 344 MMI.addFrameInst(MCCFIInstruction::createOffset( 357 MCSymbol *AdjustSPLabel = MMI.getContext().CreateTempSymbol(); 360 MMI.addFrameInst(MCCFIInstruction::createDefCfaOffset( 371 MCSymbol *SetFPLabel = MMI.getContext().CreateTempSymbol(); 375 MMI.addFrameInst( 401 FPRSaveLabel = MMI.getContext().CreateTempSymbol(); 404 MMI.addFrameInst(MCCFIInstruction::createOffset [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreFrameLowering.cpp | 94 MachineModuleInfo *MMI = &MF.getMMI(); 135 MCSymbol *FrameLabel = MMI->getContext().CreateTempSymbol(); 145 MCSymbol *SaveLRLabel = MMI->getContext().CreateTempSymbol(); 157 MCSymbol *SaveR10Label = MMI->getContext().CreateTempSymbol(); 166 MCSymbol *FrameLabel = MMI->getContext().CreateTempSymbol();
|
/external/llvm/lib/Analysis/ |
Lint.cpp | 299 MemMoveInst *MMI = cast<MemMoveInst>(&I); 301 visitMemoryReference(I, MMI->getDest(), AliasAnalysis::UnknownSize, 302 MMI->getAlignment(), 0, 304 visitMemoryReference(I, MMI->getSource(), AliasAnalysis::UnknownSize, 305 MMI->getAlignment(), 0,
|
/external/llvm/lib/Target/AArch64/ |
AArch64FrameLowering.cpp | 56 MachineModuleInfo &MMI = MF.getMMI(); 57 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo(); 58 bool NeedsFrameMoves = MMI.hasDebugInfo() 95 MCSymbol *SPLabel = MMI.getContext().CreateTempSymbol(); 101 MMI.addFrameInst( 132 MCSymbol *FPLabel = MMI.getContext().CreateTempSymbol(); 137 MMI.addFrameInst(MCCFIInstruction::createDefCfa(FPLabel, Reg, Offset)); 163 CSLabel = MMI.getContext().CreateTempSymbol(); 170 MMI.addFrameInst(MCCFIInstruction::createDefCfa(CSLabel, Reg, -Offset)); 178 CSLabel = MMI.getContext().CreateTempSymbol() [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
Connection.java | 40 MMI, /* not presently used; dial() returns null */
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITEmitter.cpp | 331 /// MMI - Machine module info for exception informations 332 MachineModuleInfo* MMI; 364 : SizeEstimate(0), Resolver(jit, *this), MMI(0), CurFn(0), 452 MMI = Info; [all...] |
/external/llvm/lib/Target/ARM/ |
ARMCodeEmitter.cpp | 54 MachineModuleInfo *MMI; 414 MMI = &getAnalysis<MachineModuleInfo>(); 415 MCE.setModuleInfo(MMI); [all...] |