Displaying 2 results from an estimated 2 matches for "lcg6".
Did you mean:
lcg
2010 Jun 08
4
[LLVMdev] Adding support to LLVM for data & code layout (needed by GHC)
....html,
specifically under the title, 'Problems with backend'.
Basically we want to be able to produce code using llvm that looks like this:
.text
.align 4,0x90
.long _ZCMain_main_srt-(_ZCMain_main_info)+0
.long 0
.long 196630
.globl _ZCMain_main_info
_ZCMain_main_info:
.Lcg6:
leal -12(%ebp),%eax
cmpl 84(%ebx),%eax
[...]
So in the above code we can access the code for the function
'_ZCMain_main_info' and the metadata for it need by the runtime with
just the one label. At the moment llvm just outputs all global
variables at the end.
It seems to me t...
2010 Jun 08
0
[LLVMdev] Adding support to LLVM for data & code layout (needed by GHC)
...with backend'.
>
> Basically we want to be able to produce code using llvm that looks like this:
>
> .text
> .align 4,0x90
> .long _ZCMain_main_srt-(_ZCMain_main_info)+0
> .long 0
> .long 196630
> .globl _ZCMain_main_info
> _ZCMain_main_info:
> .Lcg6:
> leal -12(%ebp),%eax
> cmpl 84(%ebx),%eax
> [...]
>
> So in the above code we can access the code for the function
> '_ZCMain_main_info' and the metadata for it need by the runtime with
> just the one label. At the moment llvm just outputs all global
> va...