mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
Use standard syntax for the rlwinm.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4946
This commit is contained in:
parent
8547d43b79
commit
073c102b95
@ -124,7 +124,8 @@ dispatch_boring:
|
||||
bdz counter_is_zero /* decrements ctr reg */
|
||||
|
||||
/* try a fast lookup in the translation cache */
|
||||
rlwinm 4,30,2,VG_TT_FAST_MASK<<2 /* r4=((r30<<2) & (MASK<<2)) */
|
||||
/* r4=((r30<<2) & (VG_TT_FAST_MASK<<2)) */
|
||||
rlwinm 4,30, 2, 32-2-VG_TT_FAST_BITS, 31-2
|
||||
// CAB: use a caller-saved reg for this ?
|
||||
addis 5,4,VG_(tt_fast)@ha
|
||||
lwz 5,VG_(tt_fast)@l(5)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user