search for: lc1dh

Displaying 6 results from an estimated 6 matches for "lc1dh".

2012 Feb 15
0
[LLVMdev] LLVM GHC Backend: Tables Next To Code
....text > .align 8 > .long Main_main1_srt-(Main_main1_info)+0 > .long 0 > .quad 4294967299 > .quad 0 > .quad 270582939663 > .globl Main_main1_info > .type Main_main1_info, @object > Main_main1_info: > .Lc1Df: > leaq -8(%rbp),%rax > cmpq %r15,%rax > jb .Lc1Dh Ok. I'd strongly recommend the approach of generating the table inside the prolog of the function. This means you'd get something like this: .text .align 8 .globl Main_main1_info .type Main_main1_info, @object Main_main1_info: .Lc1Df: jmp .Ltmp .long Main_main1_srt-(Main_main1_info)+...
2012 Feb 15
2
[LLVMdev] LLVM GHC Backend: Tables Next To Code
..._srt-(Main_main1_info)+0 >> .long 0 >> .quad 4294967299 >> .quad 0 >> .quad 270582939663 >> .globl Main_main1_info >> .type Main_main1_info, @object >> Main_main1_info: >> .Lc1Df: >> leaq -8(%rbp),%rax >> cmpq %r15,%rax >> jb .Lc1Dh > > Ok. I'd strongly recommend the approach of generating the table inside the prolog of the function. This means you'd get something like this: > This is starting to look very similar to how ARM constant islands work, without the extra ugliness from how small the ARM immediat...
2012 Feb 14
3
[LLVMdev] LLVM GHC Backend: Tables Next To Code
...s With TNTC enabled we generate code for closures of this form: .text .align 8 .long Main_main1_srt-(Main_main1_info)+0 .long 0 .quad 4294967299 .quad 0 .quad 270582939663 .globl Main_main1_info .type Main_main1_info, @object Main_main1_info: .Lc1Df: leaq -8(%rbp),%rax cmpq %r15,%rax jb .Lc1Dh [...] .data .globl Main_main1_closure .type Main_main1_closure, @object Main_main1_closure: .quad Main_main1_info .quad 0 Without TNTC we instead generated code of this form: .text .globl Main_main1_entry .type Main_main1_entry, @function Main_main1_entry: .LFB15: leaq -8(%rbp),%rax cmpq...
2012 Feb 15
0
[LLVMdev] LLVM GHC Backend: Tables Next To Code
....long 0 >> .quad 4294967299 >> .quad 0 >> .quad 270582939663 >> .globl Main_main1_info >> .type Main_main1_info, @object >> Main_main1_info: >> .Lc1Df: >> leaq -8(%rbp),%rax >> cmpq %r15,%rax >> jb .Lc1Dh > > Ok. I'd strongly recommend the approach of generating the table inside the prolog of the function. This means you'd get something like this: > This is starting to look very similar to how ARM constant islands work, without the extra ugliness from how small the ARM immediate...
2012 Feb 14
0
[LLVMdev] LLVM GHC Backend: Tables Next To Code
On Feb 13, 2012, at 6:49 AM, Sergiu Ivanov wrote: > On behalf of GHC hackers, I would like to discuss the possibility of > having a proper implementation of the tables-next-to-code optimisation > in LLVM. It would be great to have this. However, the design will be tricky. Is there anything that spells out how the TNTC optimization works at the actual machine instruction level? It
2012 Feb 13
3
[LLVMdev] LLVM GHC Backend: Tables Next To Code
Hello everyone, On behalf of GHC hackers, I would like to discuss the possibility of having a proper implementation of the tables-next-to-code optimisation in LLVM. Currently, the object code produced by all three GHC backends follows the convention that the table with the metadata of a closure is located immediately before the code of the closure. This makes it possible to get to both the code