search for: scalarevalut

Displaying 2 results from an estimated 2 matches for "scalarevalut".

2010 Nov 14
2
[LLVMdev] how to get the condition from loop information with llvm classes
I want to get some condition from loop information,for example, for(int i=0; i<COUNT; i++){} I want to get some message such as i<COUNT, which classes can work? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101114/39b8670f/attachment.html>
2010 Nov 15
0
[LLVMdev] how to get the condition from loop information with llvm classes
On Nov 14, 2010, at 1:08 AM, chenneng5758 wrote: > I want to get some condition from loop information,for example, > for(int i=0; i<COUNT; i++){} > I want to get some message such as i<COUNT, which classes can work? COUNT is a loop trip count here. See LoopInfo.h and ScalarEvalution.h (and related SCEV interface) for more information. - Devang > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part...