annotate bin/asm @ 8389:e35dcf20b965

<izabera> ` paste <(head -c 2000 /dev/urandom | base64) # there you go moon_
author HackBot
date Mon, 06 Jun 2016 17:36:11 +0000
parents 1978adbb8da1
children
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
6096
1978adbb8da1 <fizzie> ` sed -i -e \'s|(\\\\d+:)|(\\\\w+:)|\' bin/asm
HackBot
parents: 6095
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*(\w+:)\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