Displaying 3 results from an estimated 3 matches for "pass_manager".
Did you mean:
_passmanager
2009 Feb 24
1
[LLVMdev] -O2, -O3 in JIT
Hi,
Does anyone know an easy way to do same optimisations as 'opt -O2' or 'opt -O3' in the JIT.
I can do the tedious way:
pass_manager->add(createInstructionCombiningPass());
pass_manager->add(createGVNPass());
etc.
etc.
but I would rather reuse the code in 'opt' to manage the passes.
Cheers,
Mark.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: winmail.dat
Type: applicati...
2009 Feb 24
0
[LLVMdev] Broke my tail (call)
On 2009-02-24 12:35, Jon Harrop wrote:
> On Tuesday 24 February 2009 00:16:37 Dan Gohman wrote:
>
>> On Feb 23, 2009, at 5:59 AM, Anton Korobeynikov wrote:
>>
>>> This is not true in general and highly target- and CC- dependent. For
>>> example, you can ran out of registers and then your struct can be
>>> passed
>>> partly in registers
2009 Feb 24
3
[LLVMdev] Broke my tail (call)
On Tuesday 24 February 2009 00:16:37 Dan Gohman wrote:
> On Feb 23, 2009, at 5:59 AM, Anton Korobeynikov wrote:
> > This is not true in general and highly target- and CC- dependent. For
> > example, you can ran out of registers and then your struct can be
> > passed
> > partly in registers and partly on stack. And depending on the stack
> > frame size of the callee