Displaying 1 result from an estimated 1 matches for "_zcmain_main_info_table".
2010 Jun 08
4
[LLVMdev] Adding support to LLVM for data & code layout (needed by GHC)
...ould be sorted
on. When it comes for AsmPrinter to write out the module it does so in
order. Any new functions or globals created by optimisations are
simply added to the end of the sort order. This would produce the
above code but also with a label for the data, like this:
.text
.align 4,0x90
_ZCMain_main_info_table:
.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
The problem could be optimisations though. this is an area I'm not
very knowledgeable in so please point out any i...