Displaying 2 results from an estimated 2 matches for "enableipra".
2016 Dec 08
2
Issues with DummyCGSCCPass used for IPRA
...Hello,
>
> I'm trying to enable interprocedural register allocation (IPRA).
Hi Maxime,
I don't understand here why you need to enable IPRA as that is already
scheduled based on option -mllvm -enable-ipra. So I think easy way to make
IPRA execute every time is to set default value of EnableIPRA option to
true.
you can find this option defined in lib/CodeGen/TargetMachine.cpp and you
may also need to change its initialization to true in TargetOptions
constructor in include/llvm/Target/TargetOptions.h
- Vivek
> In order to do this, I’ve added the DummyCGSCCPass to our pipeline, as is...
2016 Dec 09
2
Issues with DummyCGSCCPass used for IPRA
...rying to enable interprocedural register allocation (IPRA).
>> Hi Maxime,
>>
>> I don't understand here why you need to enable IPRA as that is already scheduled based on option -mllvm -enable-ipra. So I think easy way to make IPRA execute every time is to set default value of EnableIPRA option to true.
>> you can find this option defined in lib/CodeGen/TargetMachine.cpp and you may also need to change its initialization to true in TargetOptions constructor in include/llvm/Target/TargetOptions.h
>>
>> - Vivek
>> In order to do this, I’ve added the DummyCGS...