Currently CLANG does not pass LLVM options to gold plugin.
Ex: -mllvm <some-option> is not passed on to gold plugin.
This patch enables passing LLVM arguments to gold plugin
Details
- Reviewers
tejohnson
Diff Detail
Event Timeline
Please add llvm-commits as a subscriber for all patches, so that the patch
and review gets posted to the mailing list. I've cc'ed llvm-commits here,
which might be enough to get llvm-commits added.
lib/Driver/Tools.cpp | ||
---|---|---|
8375 | Should be moved to AddGoldPlugin called just above. Seems reasonable to pass these along to the plugin, rather than require the user to know to pass them via -Wl,-plugin-opt. |
lib/Driver/Tools.cpp | ||
---|---|---|
8375 | Moved to AddGoldPlugin |
Plugin-opt (and mllvm) aren't really meant for users, I'm not sure that we
need to be making them easier to specify like that.
Peter
bunty2020 updated this revision to Diff 57813.
bunty2020 added a comment.
Moved changes to AddGoldPlugin function
http://reviews.llvm.org/D20423
Files:
lib/Driver/Tools.cpp
Index: lib/Driver/Tools.cpp
- lib/Driver/Tools.cpp
+++ lib/Driver/Tools.cpp
@@ -1923,6 +1923,10 @@
else CmdArgs.push_back("-plugin-opt=-debugger-tune=gdb"); }
+ for (const Arg *A : Args.filtered(options::OPT_mllvm)) {
+ CmdArgs.push_back(Args.MakeArgString("-plugin-opt="
+ + StringRef(A->getValue(0))));
+ }
}
/// This is a helper function for validating the optional refinement step
llvm-commits mailing list
llvm-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
True but from a developer's standpoint this increases usability quite a bit. We're passing one developer option to another to make the handling of the -mllvm developer option uniform with and without -flto.
Okay, but It isn't really uniform though because the flag only works with gold (and not ld64, lld etc).
That said I don't feel too strongly about it, so while it would be nice if the flag worked with those linkers, that doesn't need to happen in this patch.
As a developer it is easier if I don't need to change the way I pass the developer options between a regular -O2 and a "-O2 -flto" build. Also, it would be nice not to have change the way I pass the developer option between the -flto compile and link steps e.g. the "-flto -c foo.c" and "-flto foo.o" steps. Why not provide the added convenience for developers?
(The patch currently LGTM, but I would like to wait until there is agreement with joker.eph before I accept)
This seems strange to me. For example, it breaks the otherwise very convenient:
$ clang -flto t.c -mllvm -some-internal-option-for-cc1
I don't understand how it's better.
Clang's help shows the following description:
-mllvm <value> Additional arguments to forward to LLVM's option processing
If -mllvm <some-option> sets some internal option for cc1 then its strange for front-end parser using some option which is supposed to be LLVM's option.
cc1 is not just the front-end, it is the front-end, the optimizer, and the codegen (unless emitting bitcode).
Should be moved to AddGoldPlugin called just above.
Seems reasonable to pass these along to the plugin, rather than require the user to know to pass them via -Wl,-plugin-opt.