search for: text_bar

Displaying 4 results from an estimated 4 matches for "text_bar".

2019 Dec 04
2
GC for defsym'd symbols in LLD
LLD treats any symbol referenced from a linker script as a GC root, which makes sense. Unfortunately, it also processes --defsym as a linker script fragment internally, so all target symbols of a --defsym also get treated as GC roots (i.e., if you have something like --defsym SRC=TGT, TGT will become a GC root). I believe this to be unnecessary for defsym specifically, since you're just
2019 Dec 04
2
GC for defsym'd symbols in LLD
...ange defsym targets specifically to not be considered as GC roots, so that they can be dead code eliminated. Does anyone foresee any issues with this? > > % cat a.s > .globl _start, foo, bar > .text; _start: movabs $d, %rax > .section .text_foo,"ax"; foo: ret > .section .text_bar,"ax"; bar: nop > % as a.s -o a.o > > % ld.bfd a.o --defsym d=foo --gc-sections -o a => .text_foo is retained > % ld.bfd a.o --defsym d=bar --gc-sections -o a => .text_bar is retained > % ld.bfd a.o --defsym d=1 --gc-sections -o a => Neither .text_foo nor > .text...
2019 Dec 05
2
GC for defsym'd symbols in LLD
...roots, so that they > can be dead code eliminated. Does anyone foresee any issues with this? > > > > % cat a.s > > .globl _start, foo, bar > > .text; _start: movabs $d, %rax > > .section .text_foo,"ax"; foo: ret > > .section .text_bar,"ax"; bar: nop > > % as a.s -o a.o > > > > % ld.bfd a.o --defsym d=foo --gc-sections -o a => .text_foo is > retained > > % ld.bfd a.o --defsym d=bar --gc-sections -o a => .text_bar is > retained > > % ld.bfd a.o --defsym d=1 --...
2010 Mar 31
2
Bar plots with bars made of stacked text
I would like to make bar plots where the bars are composed of text like this: http://www.thomaslevine.com/lowres/text_bars.png Is there a package that will help me with this? Thanks Tom