OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 15 matching lines...) Expand all Loading... |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 | 28 |
29 #ifndef V8_BYTECODES_IRREGEXP_H_ | 29 #ifndef V8_BYTECODES_IRREGEXP_H_ |
30 #define V8_BYTECODES_IRREGEXP_H_ | 30 #define V8_BYTECODES_IRREGEXP_H_ |
31 | 31 |
32 namespace v8 { namespace internal { | 32 namespace v8 { namespace internal { |
33 | 33 |
34 | 34 |
35 static const int BYTECODE_MASK = 0xff; | 35 static const int BYTECODE_MASK = 0xff; |
36 static const unsigned int MAX_FIRST_ARG = 0xffffffu; | 36 // The first argument is packed in with the byte code in one word, but so it |
| 37 // has 24 bits, but it can be positive and negative so only use 23 bits for |
| 38 // positive values. |
| 39 static const unsigned int MAX_FIRST_ARG = 0x7fffffu; |
37 static const int BYTECODE_SHIFT = 8; | 40 static const int BYTECODE_SHIFT = 8; |
38 | 41 |
39 #define BYTECODE_ITERATOR(V) \ | 42 #define BYTECODE_ITERATOR(V) \ |
40 V(BREAK, 0, 4) /* bc8 */ \ | 43 V(BREAK, 0, 4) /* bc8 */ \ |
41 V(PUSH_CP, 1, 4) /* bc8 pad24 */ \ | 44 V(PUSH_CP, 1, 4) /* bc8 pad24 */ \ |
42 V(PUSH_BT, 2, 8) /* bc8 pad24 offset32 */ \ | 45 V(PUSH_BT, 2, 8) /* bc8 pad24 offset32 */ \ |
43 V(PUSH_REGISTER, 3, 4) /* bc8 reg_idx24 */ \ | 46 V(PUSH_REGISTER, 3, 4) /* bc8 reg_idx24 */ \ |
44 V(SET_REGISTER_TO_CP, 4, 8) /* bc8 reg_idx24 offset32 */ \ | 47 V(SET_REGISTER_TO_CP, 4, 8) /* bc8 reg_idx24 offset32 */ \ |
45 V(SET_CP_TO_REGISTER, 5, 4) /* bc8 reg_idx24 */ \ | 48 V(SET_CP_TO_REGISTER, 5, 4) /* bc8 reg_idx24 */ \ |
46 V(SET_REGISTER_TO_SP, 6, 4) /* bc8 reg_idx24 */ \ | 49 V(SET_REGISTER_TO_SP, 6, 4) /* bc8 reg_idx24 */ \ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 BYTECODE_ITERATOR(DECLARE_BYTECODES) | 93 BYTECODE_ITERATOR(DECLARE_BYTECODES) |
91 #undef DECLARE_BYTECODES | 94 #undef DECLARE_BYTECODES |
92 | 95 |
93 #define DECLARE_BYTECODE_LENGTH(name, code, length) \ | 96 #define DECLARE_BYTECODE_LENGTH(name, code, length) \ |
94 static const int BC_##name##_LENGTH = length; | 97 static const int BC_##name##_LENGTH = length; |
95 BYTECODE_ITERATOR(DECLARE_BYTECODE_LENGTH) | 98 BYTECODE_ITERATOR(DECLARE_BYTECODE_LENGTH) |
96 #undef DECLARE_BYTECODE_LENGTH | 99 #undef DECLARE_BYTECODE_LENGTH |
97 } } | 100 } } |
98 | 101 |
99 #endif // V8_BYTECODES_IRREGEXP_H_ | 102 #endif // V8_BYTECODES_IRREGEXP_H_ |
OLD | NEW |