Displaying 5 results from an estimated 5 matches for "_block_s".
Did you mean:
_block_
2011 Apr 10
0
[LLVMdev] RFC: GSoC Project
...o, and as being implemented for GCC [1]). A lot of what follows is
> lifted from [1]; I will progressively add more details as I get more
> familiar with the LLVM codebase.
>
> I intend to start with the simplest possible approach - representing the
> stack as a doubly linked list of _block_s, the size of each _block_
> being a power of two. This can later be modified to improve performance
> and accommodate other factors. Blocks will be chained together into a
> doubly linked list structure (using the first two words in the block as
> the next and previous pointers).
>
&...
2011 Mar 23
5
[LLVMdev] RFC: GSoC Project
...M (like we have in
Go, and as being implemented for GCC [1]). A lot of what follows is
lifted from [1]; I will progressively add more details as I get more
familiar with the LLVM codebase.
I intend to start with the simplest possible approach - representing the
stack as a doubly linked list of _block_s, the size of each _block_
being a power of two. This can later be modified to improve performance
and accommodate other factors. Blocks will be chained together into a
doubly linked list structure (using the first two words in the block as
the next and previous pointers).
In the prologue, a fu...
2011 Apr 10
2
[LLVMdev] RFC: GSoC Project
..., and as being implemented for GCC [1]). A lot of what follows is
> lifted from [1]; I will progressively add more details as I get more
> familiar with the LLVM codebase.
>
> I intend to start with the simplest possible approach - representing the
> stack as a doubly linked list of _block_s, the size of each _block_
> being a power of two. This can later be modified to improve performance
> and accommodate other factors. Blocks will be chained together into a
> doubly linked list structure (using the first two words in the block as
> the next and previous pointers).
>...
2011 Apr 11
0
[LLVMdev] RFC: GSoC Project
...emented for GCC [1]). A lot of what follows is
>> lifted from [1]; I will progressively add more details as I get more
>> familiar with the LLVM codebase.
>>
>> I intend to start with the simplest possible approach - representing the
>> stack as a doubly linked list of _block_s, the size of each _block_
>> being a power of two. This can later be modified to improve performance
>> and accommodate other factors. Blocks will be chained together into a
>> doubly linked list structure (using the first two words in the block as
>> the next and previous p...
2011 Mar 23
0
[LLVMdev] RFC: GSoC Project
On Wed, Mar 23, 2011 at 03:37:02PM +0530, Sanjoy Das wrote:
> I intend to start with the simplest possible approach - representing the
> stack as a doubly linked list of _block_s, the size of each _block_
> being a power of two. This can later be modified to improve performance
> and accommodate other factors. Blocks will be chained together into a
> doubly linked list structure (using the first two words in the block as
> the next and previous pointers).
W...