search for: 00de6c27

Displaying 3 results from an estimated 3 matches for "00de6c27".

Did you mean: 007e6c29
2013 Feb 24
0
[LLVMdev] Optimizer to remove duplicate loads?
Hi, On 24/02/13 06:48, edA-qa mort-ora-y wrote: > Which optimizer would remove duplicate, or unneeded loads? In my > generator I end up having a lot of the same load. For example here I > keep loading "@pt" which will always be the same value. in order to do this, the optimizers need to know that the call to @trace_integer does not modify the contents of @pt. Is it logically
2013 Feb 24
1
[LLVMdev] Optimizer to remove duplicate loads?
...pt: I'm also happy to receive encrypted mail. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 261 bytes Desc: OpenPGP digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130224/00de6c27/attachment.sig>
2013 Feb 24
2
[LLVMdev] Optimizer to remove duplicate loads?
Which optimizer would remove duplicate, or unneeded loads? In my generator I end up having a lot of the same load. For example here I keep loading "@pt" which will always be the same value. %16 = load %1** @pt, align 8 %17 = getelementptr inbounds %1* %16, i64 0, i32 2, i32 0 %18 = load i32* %17, align 4 call void @trace_integer(i32 %18) %19 = load %1** @pt, align 8 %20 =