annotate loader/loader_objfix.sh @ 10578:b9d289fd8a57

10000l, the old code was slow as hell, copying stuff extra times and actually broken -- blanking the whole screen at each 'page flip' with -dr enabled. benchmarks: before: 56% cpu for decode 56% cpu for vo with no -dr 25% cpu for vo with -dr after: 56% cpu for decode 25% cpu for vo without -dr 0% cpu for vo with -dr if vo_fbdev is going to do pageflip, it needs to do it for REAL, using vertical scroll registers (like g2), not copying a temp buffer (which will shear anyway and is super-slow).
author rfelker
date Tue, 12 Aug 2003 08:24:24 +0000
parents a04a7dc31ebb
children 1c9a9a1f89ed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5880
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
1 #!/bin/sh
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
2 # This script fixes up symbol mangling in GNU as code of stubs.s.
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
3 # This file is licensed under the GPL, more info at http://www.fsf.org/
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
4 for i in "export_names" \
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
5 "printf" \
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
6 "exp_EH_prolog" \
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
7 "unk_exp1"
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
8 do
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
9 echo "fixing: $i=_$i"
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
10 objcopy --redefine-sym "$i=_$i" stubs.o
a04a7dc31ebb openbsd updates by Bj«Órn Sandell <biorn@dce.chalmers.se>
arpi
parents:
diff changeset
11 done