summaryrefslogtreecommitdiff
path: root/tools/llc
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2012-06-27 16:23:48 +0000
committerDuncan Sands <baldrick@free.fr>2012-06-27 16:23:48 +0000
commitf6ce8ea20c558db1cb1b448ca15c878dd6dbf71b (patch)
tree4f0c4c767d81494ed6666dfd1721a1ffe2b5e00a /tools/llc
parent2d5f8ca3d180832d168e59e2bf3d85317e86287d (diff)
downloadllvm-f6ce8ea20c558db1cb1b448ca15c878dd6dbf71b.tar.gz
llvm-f6ce8ea20c558db1cb1b448ca15c878dd6dbf71b.tar.bz2
llvm-f6ce8ea20c558db1cb1b448ca15c878dd6dbf71b.tar.xz
When users ask for -mcpu=help or -mattr=help, just output the help without
requiring a module. Original patch by Sunay Ismail, simplified by Arnaud de Grandmaison, then complicated by me (if a triple was specified on the command line, output help for that triple, not for the default). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159268 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/llc.cpp36
1 files changed, 23 insertions, 13 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 9b3ef8144c..8095366875 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -365,20 +365,29 @@ int main(int argc, char **argv) {
// Load the module to be compiled...
SMDiagnostic Err;
std::auto_ptr<Module> M;
+ Module *mod = 0;
+ Triple TheTriple;
+
+ bool SkipModule = MCPU == "help" ||
+ (!MAttrs.empty() && MAttrs.front() == "help");
+
+ // If user just wants to list available options, skip module loading
+ if (!SkipModule) {
+ M.reset(ParseIRFile(InputFilename, Err, Context));
+ mod = M.get();
+ if (mod == 0) {
+ Err.print(argv[0], errs());
+ return 1;
+ }
- M.reset(ParseIRFile(InputFilename, Err, Context));
- if (M.get() == 0) {
- Err.print(argv[0], errs());
- return 1;
+ // If we are supposed to override the target triple, do so now.
+ if (!TargetTriple.empty())
+ mod->setTargetTriple(Triple::normalize(TargetTriple));
+ TheTriple = Triple(mod->getTargetTriple());
+ } else {
+ TheTriple = Triple(Triple::normalize(TargetTriple));
}
- Module &mod = *M.get();
-
- // If we are supposed to override the target triple, do so now.
- if (!TargetTriple.empty())
- mod.setTargetTriple(Triple::normalize(TargetTriple));
- // Figure out the target triple.
- Triple TheTriple(mod.getTargetTriple());
if (TheTriple.getTriple().empty())
TheTriple.setTriple(sys::getDefaultTargetTriple());
@@ -441,6 +450,7 @@ int main(int argc, char **argv) {
MCPU, FeaturesStr, Options,
RelocModel, CMModel, OLvl));
assert(target.get() && "Could not allocate target machine!");
+ assert(mod && "Should have exited after outputting help!");
TargetMachine &Target = *target.get();
if (DisableDotLoc)
@@ -472,7 +482,7 @@ int main(int argc, char **argv) {
if (const TargetData *TD = Target.getTargetData())
PM.add(new TargetData(*TD));
else
- PM.add(new TargetData(&mod));
+ PM.add(new TargetData(mod));
// Override default to generate verbose assembly.
Target.setAsmVerbosityDefault(true);
@@ -498,7 +508,7 @@ int main(int argc, char **argv) {
// Before executing passes, print the final values of the LLVM options.
cl::PrintOptionValues();
- PM.run(mod);
+ PM.run(*mod);
}
// Declare success.