diff options
author | Björn Gustavsson <[email protected]> | 2015-06-25 16:18:18 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-07-03 14:34:58 +0200 |
commit | 5e83d2ae89c731bd7e4c32b550150336008d2974 (patch) | |
tree | e1fa7b34f5591d364e19f3bac37a3f37d4ca796a /erts/emulator/beam/beam_debug.c | |
parent | 62473daf8169a04a07409f344d938bc51a4536c3 (diff) | |
download | otp-5e83d2ae89c731bd7e4c32b550150336008d2974.tar.gz otp-5e83d2ae89c731bd7e4c32b550150336008d2974.tar.bz2 otp-5e83d2ae89c731bd7e4c32b550150336008d2974.zip |
Use a cheaper tag scheme for 'd' operands
Since 'd' operands can only either an X register or an Y register,
we only need a single bit to distinguish them. Furthermore, we can
pre-multiply the register number with the word size to speed up
address calculation.
Diffstat (limited to 'erts/emulator/beam/beam_debug.c')
-rw-r--r-- | erts/emulator/beam/beam_debug.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/erts/emulator/beam/beam_debug.c b/erts/emulator/beam/beam_debug.c index 30e3765502..ea1f2cd012 100644 --- a/erts/emulator/beam/beam_debug.c +++ b/erts/emulator/beam/beam_debug.c @@ -475,15 +475,12 @@ print_op(int to, void *to_arg, int op, int size, BeamInstr* addr) ap++; break; case 'd': /* Destination (x(0), x(N), y(N)) */ - switch (loader_tag(*ap)) { - case LOADER_X_REG: - erts_print(to, to_arg, "x(%d)", - loader_x_reg_index(*ap)); - break; - case LOADER_Y_REG: + if (*ap & 1) { erts_print(to, to_arg, "y(%d)", - loader_y_reg_index(*ap) - CP_SIZE); - break; + *ap / sizeof(Eterm) - CP_SIZE); + } else { + erts_print(to, to_arg, "x(%d)", + *ap / sizeof(Eterm)); } ap++; break; |