search for: autoprofile

Displaying 4 results from an estimated 4 matches for "autoprofile".

2013 Oct 01
2
[LLVMdev] RFH: passing options from clang down to opt
...2013 at 3:42 PM, Rafael EspĂ­ndola <rafael.espindola at gmail.com> wrote: > You are calling the option -auto-profile in some places and > -fauto-profile in others. Maybe it is just a typo? In opt, the option is named '-auto-profile' when I instantiate the pass: INITIALIZE_PASS(AutoProfile, "auto-profile", "Auto Profile loader", false, false) Do I need to name it fauto-profile as well? I'm also not sure how to schedule the pass at a specific spot in the pass manager. I've looked around for documentation on adding flags, but all I found w...
2013 Oct 01
0
[LLVMdev] RFH: passing options from clang down to opt
...ola > <rafael.espindola at gmail.com> wrote: >> You are calling the option -auto-profile in some places and >> -fauto-profile in others. Maybe it is just a typo? > > In opt, the option is named '-auto-profile' when I instantiate the pass: > > INITIALIZE_PASS(AutoProfile, "auto-profile", "Auto Profile loader", false, > false) > > Do I need to name it fauto-profile as well? > > I'm also not sure how to schedule the pass at a specific spot in the > pass manager. I've looked around for documentation on add...
2013 Oct 01
0
[LLVMdev] RFH: passing options from clang down to opt
You are calling the option -auto-profile in some places and -fauto-profile in others. Maybe it is just a typo? On 1 October 2013 15:31, Diego Novillo <dnovillo at google.com> wrote: > I'm trying to add a new option to clang to enable my auto profile > pass. I've added this to Options.td and Driver/Tools.cpp, but I'm not > getting the option -auto-profile in cc1's
2013 Oct 01
3
[LLVMdev] RFH: passing options from clang down to opt
I'm trying to add a new option to clang to enable my auto profile pass. I've added this to Options.td and Driver/Tools.cpp, but I'm not getting the option -auto-profile in cc1's invocation. I've checked that the code to push -auto-profile is executed, but if use -v, I don't see -auto-profile in the cc1 invocation. Can anyone point me to some document that explains how to