annotate bin/asm @ 6095:6324f7732ab0

<fizzie> ` sed -i -e \'s/--prefix-addresses //\' bin/asm
author HackBot
date Sat, 17 Oct 2015 11:05:52 +0000
parents 315b8ee3c5b0
children 1978adbb8da1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6079
6e702775e5c3 <ais523> ` sed -i -e \'1s/n//\' bin/asm
HackBot
parents: 6078
diff changeset
1 #!/bin/sh
6095
6324f7732ab0 <fizzie> ` sed -i -e \'s/--prefix-addresses //\' bin/asm
HackBot
parents: 6094
diff changeset
2 echo "$1" > /tmp/asm.s; for o in ',' '-msyntax=intel -mnaked-reg,-M intel'; do if as ${o%,*} /tmp/asm.s -o /tmp/asm.o 2>>/tmp/asm.err; then objdump ${o#*,} -d --insn-width=20 /tmp/asm.o | sed -e "1,/0000000000000000/d" | perl -pe 'if (/^\s*(\d+:)\s*((?:\w\w )+)\s*(\S.*)$/) { ($a,$b,$c) = ($1,$2,$3); $_ = "$a $b ".($c =~ s/\s+/ /rg)."\n"; }'; exit; fi; done; cat /tmp/asm.err