Home
last modified time | relevance | path

Searched refs:MMIWP (Results 1 – 6 of 6) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp109 MachineModuleInfoWrapperPass &MMIWP) { in addPassesToGenerateCode() argument
116 PM.add(&MMIWP); in addPassesToGenerateCode()
227 MachineModuleInfoWrapperPass *MMIWP) { in addPassesToEmitFile() argument
229 if (!MMIWP) in addPassesToEmitFile()
230 MMIWP = new MachineModuleInfoWrapperPass(this); in addPassesToEmitFile()
232 addPassesToGenerateCode(*this, PM, DisableVerify, *MMIWP); in addPassesToEmitFile()
237 if (addAsmPrinter(PM, Out, DwoOut, FileType, MMIWP->getMMI().getContext())) in addPassesToEmitFile()
258 MachineModuleInfoWrapperPass *MMIWP = new MachineModuleInfoWrapperPass(this); in addPassesToEmitMC() local
260 addPassesToGenerateCode(*this, PM, DisableVerify, *MMIWP); in addPassesToEmitMC()
266 Ctx = &MMIWP->getMMI().getContext(); in addPassesToEmitMC()
/openbsd/src/gnu/llvm/llvm/lib/Target/WebAssembly/
DWebAssemblyMCLowerPrePass.cpp72 auto *MMIWP = getAnalysisIfAvailable<MachineModuleInfoWrapperPass>(); in runOnModule() local
73 if (!MMIWP) in runOnModule()
76 MachineModuleInfo &MMI = MMIWP->getMMI(); in runOnModule()
/openbsd/src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
DAssembler.cpp167 std::unique_ptr<MachineModuleInfoWrapperPass> MMIWP = in getFunctionReservedRegs() local
170 FunctionID, Module.get(), &MMIWP.get()->getMMI()); in getFunctionReservedRegs()
183 auto MMIWP = std::make_unique<MachineModuleInfoWrapperPass>(TM.get()); in assembleToStream() local
185 FunctionID, Module.get(), &MMIWP.get()->getMMI()); in assembleToStream()
223 MCContext &MCContext = MMIWP->getMMI().getContext(); in assembleToStream()
231 PM.add(MMIWP.release()); in assembleToStream()
/openbsd/src/gnu/llvm/llvm/tools/llc/
Dllc.cpp674 MachineModuleInfoWrapperPass *MMIWP = in compileModule() local
695 PM.add(MMIWP); in compileModule()
706 codegen::getFileType(), NoVerify, MMIWP)) { in compileModule()
711 ->Initialize(MMIWP->getMMI().getContext(), *Target); in compileModule()
713 assert(MMIWP && "Forgot to create MMIWP?"); in compileModule()
714 if (MIR->parseMachineFunctions(*M, MMIWP->getMMI())) in compileModule()
/openbsd/src/gnu/llvm/llvm/include/llvm/Target/
DTargetMachine.h375 MachineModuleInfoWrapperPass *MMIWP = nullptr) {
445 MachineModuleInfoWrapperPass *MMIWP = nullptr) override;
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp420 auto *MMIWP = getAnalysisIfAvailable<MachineModuleInfoWrapperPass>(); in doInitialization() local
421 MMI = MMIWP ? &MMIWP->getMMI() : nullptr; in doInitialization()