search for: rlto_build

Displaying 5 results from an estimated 5 matches for "rlto_build".

2015 Jun 11
4
[LLVMdev] Question about NoWrap flag for SCEVAddRecExpr
...14, float* %tmp10, align 8, !tbaa !2 > %tmp15 = add nsw i64 %k.01, 2 > %exitcond.1 = icmp eq i64 %tmp15, 512 > br i1 %exitcond.1, label %bb1, label %bb2 > } > > !0 = !{i32 1, !"PIC Level", i32 2} > !1 = !{!"clang version 3.7.0 (clang-stage2-configure-Rlto_build 239114)"} > !2 = !{!3, !3, i64 0} > !3 = !{!"float", !4, i64 0} > !4 = !{!"omnipotent char", !5, i64 0} > !5 = !{!"Simple C/C++ TBAA"} > > > However, adding a dummy sext only proves <nuw> for {0,+,4} and not > <nsw>. The...
2015 Jun 10
3
[LLVMdev] Question about NoWrap flag for SCEVAddRecExpr
I am testing vectorization on the following test case: float x[1024], y[1024]; void myloop1() { for (long int k = 0; k < 512; k++) { x[2*k] = x[2*k]+y[k]; } } Vectorization failed due to "unsafe dependent memory operation". I traced the LoopAccessAnalysis.cpp and found the reason is the NoWrapFlag for SCEVAddRecExpr is not set and consequently the
2016 Apr 16
4
[RFC] Lazy-loading of debug info metadata
On Fri, Apr 15, 2016 at 4:04 PM, Duncan P. N. Exon Smith < dexonsmith at apple.com> wrote: > > > On 2016-Apr-15, at 14:53, David Blaikie <dblaikie at gmail.com> wrote: > > > > > > > >> On Fri, Apr 15, 2016 at 2:27 PM, Duncan P. N. Exon Smith < > dexonsmith at apple.com> wrote: > >> > >> > On 2016-Apr-15, at 10:27, David
2016 Apr 18
1
[RFC] Lazy-loading of debug info metadata
...h major regressions like this (it doesn't exactly track memory usage directly, but it does a half- bootstrap of -flto=full -g). Except at some point it switched to using a CMake cache, and it has been using -gline-tables-only as well: http://lab.llvm.org:8080/green/job/clang-stage2-configure-Rlto_build/ http://lab.llvm.org:8080/green/job/clang-stage2-configure-Rlto_build/8599/consoleFull ) I hope the blowup is from the work I've done over the last couple of weeks; I'll continue investigating today and revert whatever I have to. Sorry for the noise and the breakage. (It's also poss...
2015 Jun 11
2
[LLVMdev] Question about NoWrap flag for SCEVAddRecExpr
...%tmp15 = add nsw i64 %k.01, 2 >>> %exitcond.1 = icmp eq i64 %tmp15, 512 >>> br i1 %exitcond.1, label %bb1, label %bb2 >>> } >>> >>> !0 = !{i32 1, !"PIC Level", i32 2} >>> !1 = !{!"clang version 3.7.0 (clang-stage2-configure-Rlto_build 239114)"} >>> !2 = !{!3, !3, i64 0} >>> !3 = !{!"float", !4, i64 0} >>> !4 = !{!"omnipotent char", !5, i64 0} >>> !5 = !{!"Simple C/C++ TBAA"} >>> >>> >>> However, adding a dummy sext only proves &lt...