search for: 1016a

Displaying 3 results from an estimated 3 matches for "1016a".

Did you mean: 1016
2017 Jul 11
8
[LLD] Linker Relaxation
...s0,8(sp) 28: 0141 addi sp,sp,16 2a: 8082 ret And after linking: 00010164 <foo>: 10164: 1141 addi sp,sp,-16 10166: c422 sw s0,8(sp) 10168: c606 sw ra,12(sp) 1016a: 06300793 li a5,99 1016e: 842a mv s0,a0 10170: 00a7c863 blt a5,a0,10180 <foo+0x1c> 10174: 85aa mv a1,a0 10176: 0001a537 lui a0,0x1a 1017a:...
2017 Jul 11
4
[LLD] Linker Relaxation
...ret >> >> And after linking: >> >> 00010164 <foo>: >> 10164: 1141 addi sp,sp,-16 >> 10166: c422 sw s0,8(sp) >> 10168: c606 sw ra,12(sp) >> 1016a: 06300793 li a5,99 >> 1016e: 842a mv s0,a0 >> 10170: 00a7c863 blt a5,a0,10180 <foo+0x1c> >> 10174: 85aa mv a1,a0 >> 10176: 0001a537...
2017 Jul 11
2
[LLD] Linker Relaxation
Hi, Does lld support linker relaxation that may shrink code size? As far as I see lld seems to assume that the content of input sections to be fixed other than patching up relocations, but I believe some targets may benefit the extra optimization opportunity with relaxation. Specifically, I'm currently working on adding support for RISC-V in lld, and RISC-V heavily relies on linker relaxation