search for: 41fa16b2

Displaying 3 results from an estimated 3 matches for "41fa16b2".

Did you mean: 41fa0bb2
2011 Nov 21
0
[LLVMdev] Optimization of array access
Where does the -time-passes option say the time is going? Sent from my iPhone On Nov 21, 2011, at 8:58 AM, Michael Smith <Michael.Smith at synopsys.com> wrote: > I’ve attached a 2 examples of patterns for updating an array. They’re simplified examples of some code generation I’m doing where I need to pass a large, unknown number of arguments (ints, doubles, pointers to other
2011 Nov 21
2
[LLVMdev] Optimization of array access
...ailing list LLVMdev at cs.uiuc.edu<mailto:LLVMdev at cs.uiuc.edu> http://llvm.cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111121/41fa16b2/attachment.html>
2011 Nov 21
3
[LLVMdev] Optimization of array access
I've attached a 2 examples of patterns for updating an array. They're simplified examples of some code generation I'm doing where I need to pass a large, unknown number of arguments (ints, doubles, pointers to other information) to a function. The two patterns are: Stack[0] = 0; Stack[1] = 1; Stack[2] = 42; And Int I = 0;