Lines Matching full:href
5 <link rel="stylesheet" href="llvm.css" type="text/css">
12 <p>Written by <a href="mailto:sanjoy@playingwithpointers.com">Sanjoy Das</a></p>
16 <li><a href="#intro">Introduction</a></li>
17 <li><a href="#implementation">Implementation Details</a>
19 <li><a href="#morestack">Allocating Stacklets</a></li>
20 <li><a href="#alloca">Variable Sized Allocas</a></li>
23 <li><a href="#results">Results</a>
25 <li><a href="#go">Go on LLVM</a></li>
26 <li><a href="#abi">Runtime ABI</a></li>
37 The runtime functionality is <a href="http://gcc.gnu.org/wiki/SplitStacks">already there in libgcc</a>.
72 The section on <a href="#morestack">allocating stacklets</a> automatically assumes that every stack frame will be of fixed size. However, LLVM allows the use of the <code>llvm.alloca</code> intrinsic to allocate dynamically sized blocks of memory on the stack. When faced with such a variable-sized alloca, code is generated to
87 <a href="http://jigsaw.w3.org/css-validator/check/referer">
90 <a href="http://validator.w3.org/check/referer">
93 <a href="mailto:sanjoy@playingwithpointers.com">Sanjoy Das</a><br>
94 <a href="http://llvm.org/">LLVM Compiler Infrastructure</a><br>