diff options
author | Björn Gustavsson <[email protected]> | 2010-11-09 15:49:06 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-01-17 15:23:39 +0100 |
commit | 32be05dcaa4c32596bfe5372451b0b89ccd2f151 (patch) | |
tree | 37179180c8dfc7ef7455f06eb9cd575cd24b5e9a /erts/emulator/beam/beam_debug.c | |
parent | c5df89ea0d57e41190155dcf14cbc375dc647bee (diff) | |
download | otp-32be05dcaa4c32596bfe5372451b0b89ccd2f151.tar.gz otp-32be05dcaa4c32596bfe5372451b0b89ccd2f151.tar.bz2 otp-32be05dcaa4c32596bfe5372451b0b89ccd2f151.zip |
BEAM loader: Pack more instructions using a new 'Q' type
Introduce a new 'Q' type, similar to 'P' except that it
can be packed.
Diffstat (limited to 'erts/emulator/beam/beam_debug.c')
-rw-r--r-- | erts/emulator/beam/beam_debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/beam_debug.c b/erts/emulator/beam/beam_debug.c index 5ada352202..463d5f3acc 100644 --- a/erts/emulator/beam/beam_debug.c +++ b/erts/emulator/beam/beam_debug.c @@ -525,6 +525,7 @@ print_op(int to, void *to_arg, int op, int size, BeamInstr* addr) ap++; break; case 'P': /* Byte offset into tuple (see beam_load.c) */ + case 'Q': /* Like 'P', but packable */ erts_print(to, to_arg, "%d", (*ap / sizeof(Eterm)) - 1); ap++; break; |