author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 09 Feb 2009 17:53:54 -0500 | |
changeset 555 | 940821555fda |
parent 357 | 4b267433af82 |
child 591 | 20a0ac14babf |
permissions | -rwxr-xr-x |
#!/bin/sh for feh in ??_?_?/*.bytecode ; do echo -n "$feh " echo -n `./testparse glsl $feh |grep "INSTRUCTION COUNT: " |perl -w -p -e 's/\AINSTRUCTION COUNT://;'` echo -n " vs. " grep "instruction slots used" `echo $feh |perl -w -p -e 's/bytecode\Z/disasm/;'` |perl -w -p -e 's#\A// approximately (\d+) instruction slots used .*?\Z#$1#;' done