diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:29 +0000 |
commit | 59203c63bb777a3bacec32fb8830fba33540e809 (patch) | |
tree | 58298e711c0ff0575818c30485b44a2f21bf28a0 /js/src/vm/BytecodeFormatFlags.h | |
parent | Adding upstream version 126.0.1. (diff) | |
download | firefox-59203c63bb777a3bacec32fb8830fba33540e809.tar.xz firefox-59203c63bb777a3bacec32fb8830fba33540e809.zip |
Adding upstream version 127.0.upstream/127.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/vm/BytecodeFormatFlags.h')
-rw-r--r-- | js/src/vm/BytecodeFormatFlags.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/js/src/vm/BytecodeFormatFlags.h b/js/src/vm/BytecodeFormatFlags.h index 893f0f0823..bca2b0717f 100644 --- a/js/src/vm/BytecodeFormatFlags.h +++ b/js/src/vm/BytecodeFormatFlags.h @@ -41,10 +41,7 @@ enum { JOF_STRING = 26, /* uint32_t constant index */ JOF_TYPEMASK = 0xFF, /* mask for above immediate types */ - JOF_NAME = 1 << 8, /* name operation */ - JOF_PROP = 2 << 8, /* obj.prop operation */ - JOF_ELEM = 3 << 8, /* obj[index] operation */ - JOF_MODEMASK = 0xFF << 8, /* mask for above addressing modes */ + /* Bits 0xFF00 are available for future usage */ JOF_PROPSET = 1 << 16, /* property/element/name set operation */ JOF_PROPINIT = 1 << 17, /* property/element/name init operation */ |