search for: 4600b7d3

Displaying 3 results from an estimated 3 matches for "4600b7d3".

Did you mean: 460073
2010 Aug 29
0
[LLVMdev] Dataflow analysis based optimisations
On Sat, Aug 28, 2010 at 10:53 AM, David Given <dg at cowlark.com> wrote: > On 28/08/10 02:20, Kenneth Uildriks wrote: >> There are passes which mark function parameters as "nocapture", which >> means that the function does not store the passed-in pointer for use >> after that function returns.  If pointers to a newly created object >> are only ever passed
2010 Aug 31
1
[LLVMdev] Dataflow analysis based optimisations
...--- Conway's Game Of Life, in one line of APL -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 262 bytes Desc: OpenPGP digital signature URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100831/4600b7d3/attachment.sig>
2010 Aug 28
2
[LLVMdev] Dataflow analysis based optimisations
On 28/08/10 02:20, Kenneth Uildriks wrote: > There are passes which mark function parameters as "nocapture", which > means that the function does not store the passed-in pointer for use > after that function returns. If pointers to a newly created object > are only ever passed through "nocapture" parameters, never stored in a > global, and not returned from the