[llvm] 4254f27 - [CodeGen][NPM] Parse MachineFunctions in NPM driver (#128467)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 23:51:47 PDT 2025
Author: Akshat Oke
Date: 2025-03-20T12:21:43+05:30
New Revision: 4254f2777cd3dccf160c79e36ce091d58b4e99c1
URL: https://github.com/llvm/llvm-project/commit/4254f2777cd3dccf160c79e36ce091d58b4e99c1
DIFF: https://github.com/llvm/llvm-project/commit/4254f2777cd3dccf160c79e36ce091d58b4e99c1.diff
LOG: [CodeGen][NPM] Parse MachineFunctions in NPM driver (#128467)
MachineFunctions were not being parsed when target is allowed to build
the pipeline.
This will allow us to use `-start-before` and other options.
Added:
Modified:
llvm/tools/llc/NewPMDriver.cpp
Removed:
################################################################################
diff --git a/llvm/tools/llc/NewPMDriver.cpp b/llvm/tools/llc/NewPMDriver.cpp
index 5c6909d080c70..fa82689ecf9ae 100644
--- a/llvm/tools/llc/NewPMDriver.cpp
+++ b/llvm/tools/llc/NewPMDriver.cpp
@@ -153,13 +153,12 @@ int llvm::compileModuleWithNewPM(
FPM.addPass(createFunctionToMachineFunctionPassAdaptor(std::move(MFPM)));
MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
- if (MIR->parseMachineFunctions(*M, MAM))
- return 1;
} else {
ExitOnErr(Target->buildCodeGenPipeline(
MPM, *OS, DwoOut ? &DwoOut->os() : nullptr, FileType, Opt, &PIC));
}
+ // If user only wants to print the pipeline, print it before parsing the MIR.
if (PrintPipelinePasses) {
std::string PipelineStr;
raw_string_ostream OS(PipelineStr);
@@ -171,6 +170,9 @@ int llvm::compileModuleWithNewPM(
return 0;
}
+ if (MIR && MIR->parseMachineFunctions(*M, MAM))
+ return 1;
+
// Before executing passes, print the final values of the LLVM options.
cl::PrintOptionValues();
More information about the llvm-commits
mailing list