summaryrefslogtreecommitdiffstats
path: root/js/src/vm/BytecodeFormatFlags.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /js/src/vm/BytecodeFormatFlags.h
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 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.h5
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 */