/external/llvm/lib/CodeGen/ |
MachineFunctionAnalysis.cpp | 17 #include "llvm/CodeGen/MachineModuleInfo.h" 34 AU.addRequired<MachineModuleInfo>(); 38 MachineModuleInfo *MMI = getAnalysisIfAvailable<MachineModuleInfo>(); 49 getAnalysis<MachineModuleInfo>(),
|
MachineModuleInfo.cpp | 1 //===-- llvm/CodeGen/MachineModuleInfo.cpp ----------------------*- C++ -*-===// 10 #include "llvm/CodeGen/MachineModuleInfo.h" 28 INITIALIZE_PASS(MachineModuleInfo, "machinemoduleinfo", 30 char MachineModuleInfo::ID = 0; 253 MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI, 260 MachineModuleInfo::MachineModuleInfo() 262 llvm_unreachable("This MachineModuleInfo constructor should never be called, [all...] |
BranchFolding.h | 19 class MachineModuleInfo; 31 MachineModuleInfo *mmi); 92 MachineModuleInfo *MMI;
|
LLVMTargetMachine.cpp | 19 #include "llvm/CodeGen/MachineModuleInfo.h" 112 // Install a MachineModuleInfo class, which is an immutable pass that holds 114 MachineModuleInfo *MMI = 115 new MachineModuleInfo(*TM->getMCAsmInfo(), *TM->getRegisterInfo(),
|
UnreachableBlockElim.cpp | 31 #include "llvm/CodeGen/MachineModuleInfo.h" 104 MachineModuleInfo *MMI; 127 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
|
GCStrategy.cpp | 24 #include "llvm/CodeGen/MachineModuleInfo.h" 71 MachineModuleInfo *MMI; 349 AU.addRequired<MachineModuleInfo>(); 413 MMI = &getAnalysis<MachineModuleInfo>();
|
/external/llvm/lib/Target/X86/ |
X86TargetObjectFile.h | 25 MachineModuleInfo *MMI, unsigned Encoding, 32 MachineModuleInfo *MMI) const;
|
X86COFFMachineModuleInfo.h | 19 #include "llvm/CodeGen/MachineModuleInfo.h" 30 X86COFFMachineModuleInfo(const MachineModuleInfo &) {}
|
X86TargetObjectFile.cpp | 22 MachineModuleInfo *MMI, unsigned Encoding, 41 MachineModuleInfo *MMI) const {
|
/external/llvm/lib/Target/ARM/ |
ARMTargetObjectFile.h | 33 MachineModuleInfo *MMI, unsigned Encoding,
|
ARMTargetObjectFile.cpp | 46 MachineModuleInfo *MMI, unsigned Encoding,
|
/external/llvm/include/llvm/CodeGen/ |
MachineModuleInfoImpls.h | 18 #include "llvm/CodeGen/MachineModuleInfo.h" 43 MachineModuleInfoMachO(const MachineModuleInfo &) {} 81 MachineModuleInfoELF(const MachineModuleInfo &) {}
|
TargetLoweringObjectFileImpl.h | 23 class MachineModuleInfo; 62 MachineModuleInfo *MMI, unsigned Encoding, 68 MachineModuleInfo *MMI) const; 109 MachineModuleInfo *MMI, unsigned Encoding, 115 MachineModuleInfo *MMI) const;
|
FunctionLoweringInfo.h | 42 class MachineModuleInfo; 215 /// being passed to this variadic function, and set the MachineModuleInfo's 219 void ComputeUsesVAFloatArgument(const CallInst &I, MachineModuleInfo *MMI); 224 MachineModuleInfo *MMI, MachineBasicBlock *MBB); 228 void AddLandingPadInfo(const LandingPadInst &I, MachineModuleInfo &MMI,
|
MachineModuleInfo.h | 1 //===-- llvm/CodeGen/MachineModuleInfo.h ------------------------*- C++ -*-===// 18 // The following information can be retrieved from the MachineModuleInfo. 81 /// MachineModuleInfo is destroyed. 93 /// MachineModuleInfo - This class contains meta information specific to a 97 class MachineModuleInfo : public ImmutablePass { 176 MachineModuleInfo(); // DUMMY CONSTRUCTOR, DO NOT CALL. 178 MachineModuleInfo(const MCAsmInfo &MAI, const MCRegisterInfo &MRI, 180 ~MachineModuleInfo(); 208 return const_cast<MachineModuleInfo*>(this)->getObjFileInfo<Ty>(); 407 }; // End class MachineModuleInfo [all...] |
MachineFunction.h | 37 class MachineModuleInfo; 79 MachineModuleInfo &MMI; 141 unsigned FunctionNum, MachineModuleInfo &MMI, 145 MachineModuleInfo &getMMI() const { return MMI; }
|
AsmPrinter.h | 40 class MachineModuleInfo; 81 /// MMI - This is a pointer to the current MachineModuleInfo. 82 MachineModuleInfo *MMI;
|
JITCodeEmitter.h | 32 class MachineModuleInfo; 330 /// Specifies the MachineModuleInfo object. This is used for exception handling 332 virtual void setModuleInfo(MachineModuleInfo* Info) = 0;
|
MachineCodeEmitter.h | 30 class MachineModuleInfo; 327 /// Specifies the MachineModuleInfo object. This is used for exception handling 329 virtual void setModuleInfo(MachineModuleInfo* Info) = 0;
|
/external/llvm/include/llvm/Target/ |
TargetLoweringObjectFile.h | 24 class MachineModuleInfo; 117 MachineModuleInfo *MMI, unsigned Encoding, 123 MachineModuleInfo *MMI) const;
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfException.h | 25 class MachineModuleInfo; 43 MachineModuleInfo *MMI;
|
/external/llvm/lib/Target/PowerPC/ |
PPCCodeEmitter.cpp | 21 #include "llvm/CodeGen/MachineModuleInfo.h" 33 MachineModuleInfo *MMI; 36 AU.addRequired<MachineModuleInfo>(); 102 MMI = &getAnalysis<MachineModuleInfo>();
|
/frameworks/compile/mclinker/lib/CodeGen/ |
MCLDTargetMachine.cpp | 26 #include <llvm/CodeGen/MachineModuleInfo.h> 158 // Install a MachineModuleInfo class, which is an immutable pass that holds 160 MachineModuleInfo *MMI = 161 new MachineModuleInfo(*TM->getMCAsmInfo(), *TM->getRegisterInfo(),
|
/external/llvm/lib/Target/ |
TargetLoweringObjectFile.cpp | 102 MachineModuleInfo *MMI) const { 293 MachineModuleInfo *MMI, unsigned Encoding,
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
FunctionLoweringInfo.cpp | 22 #include "llvm/CodeGen/MachineModuleInfo.h" 114 MachineModuleInfo &MMI = MF->getMMI(); 383 /// being passed to this variadic function, and set the MachineModuleInfo's 388 MachineModuleInfo *MMI) 408 void llvm::AddCatchInfo(const CallInst &I, MachineModuleInfo *MMI, 410 // Inform the MachineModuleInfo of the personality for this landing pad. 418 // MachineModuleInfo. 462 void llvm::AddLandingPadInfo(const LandingPadInst &I, MachineModuleInfo &MMI,
|