Displaying 3 results from an estimated 3 matches for "faullt".
Did you mean:
fault
2008 Jul 11
1
[LLVMdev] Cloning Functions
...nctions ?
>
> I had wondered that myself. In what way is global data optimized?
> My assumption is that global data might be added by optimizations
> but that nothing would be deleted or drastically changed.
Hmm...it seems you are right. When I try to merge the two value maps I
get a faullt mapping a ConstantValue from one of the pristine Function
clones. Apparently this ConstantValue got deleted by optimization
somewhere.
This actually doesn't make a lot of sense to me. What happens if I
clone a function and optimize it or the original function and ConstantValues
start getting...
2008 Jul 11
0
[LLVMdev] Cloning Functions
On Friday 11 July 2008 12:05, Devang Patel wrote:
> > Ok, I've mostly got a mechanism to do what I want:
> >
> > 1. As each function comes in for op/codegen, clone it and save off
> > the clone and its associated ValueMap (I call these clones
> > "pristine"
> > functions.
> >
> > 2. After all processing is done, clone the resulting
2008 Jul 11
2
[LLVMdev] Cloning Functions
On Jul 11, 2008, at 9:59 AM, David Greene wrote:
> On Wednesday 09 July 2008 13:49, David Greene wrote:
>
>>> then it seems you're doing
>>>
>>> for each function
>>> generate_ir
>>> convert_to_llvm_ir
>>> optimize_llvm_ir
>>
>> Yep.
>
> Ok, I've mostly got a mechanism to do what I want:
>
> 1. As