Searched refs:MMIWP (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LLVMTargetMachine.cpp | 114 MachineModuleInfoWrapperPass &MMIWP) { in addPassesToGenerateCode() argument 121 PM.add(&MMIWP); in addPassesToGenerateCode() 212 MachineModuleInfoWrapperPass *MMIWP) { in addPassesToEmitFile() argument 214 if (!MMIWP) in addPassesToEmitFile() 215 MMIWP = new MachineModuleInfoWrapperPass(this); in addPassesToEmitFile() 217 addPassesToGenerateCode(*this, PM, DisableVerify, *MMIWP); in addPassesToEmitFile() 222 if (addAsmPrinter(PM, Out, DwoOut, FileType, MMIWP->getMMI().getContext())) in addPassesToEmitFile() 243 MachineModuleInfoWrapperPass *MMIWP = new MachineModuleInfoWrapperPass(this); in addPassesToEmitMC() local 245 addPassesToGenerateCode(*this, PM, DisableVerify, *MMIWP); in addPassesToEmitMC() 251 Ctx = &MMIWP->getMMI().getContext(); in addPassesToEmitMC()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DirectXTargetMachine.cpp | 113 MachineModuleInfoWrapperPass *MMIWP) { in addPassesToEmitFile() argument 129 if (!MMIWP) in addPassesToEmitFile() 130 MMIWP = new MachineModuleInfoWrapperPass(this); in addPassesToEmitFile() 131 PM.add(MMIWP); in addPassesToEmitFile() 133 MMIWP->getMMI().getContext())) in addPassesToEmitFile()
|
H A D | DirectXTargetMachine.h | 36 MachineModuleInfoWrapperPass *MMIWP) override;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyMCLowerPrePass.cpp | 73 auto *MMIWP = getAnalysisIfAvailable<MachineModuleInfoWrapperPass>(); in runOnModule() local 74 if (!MMIWP) in runOnModule() 77 MachineModuleInfo &MMI = MMIWP->getMMI(); in runOnModule()
|
/freebsd/contrib/llvm-project/llvm/tools/llc/ |
H A D | llc.cpp | 677 MachineModuleInfoWrapperPass *MMIWP = in compileModule() local 686 delete MMIWP; in compileModule() 696 delete MMIWP; in compileModule() 702 PM.add(MMIWP); in compileModule() 713 codegen::getFileType(), NoVerify, MMIWP)) { in compileModule() 718 ->Initialize(MMIWP->getMMI().getContext(), *Target); in compileModule() 720 assert(MMIWP && "Forgot to create MMIWP?"); in compileModule() 721 if (MIR->parseMachineFunctions(*M, MMIWP->getMMI())) in compileModule()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetMachine.h | 388 MachineModuleInfoWrapperPass *MMIWP = nullptr) { 470 MachineModuleInfoWrapperPass *MMIWP = nullptr) override;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 435 auto *MMIWP = getAnalysisIfAvailable<MachineModuleInfoWrapperPass>(); in doInitialization() local 436 MMI = MMIWP ? &MMIWP->getMMI() : nullptr; in doInitialization()
|