| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_H_ |
| 6 #define V8_BUILTINS_H_ | 6 #define V8_BUILTINS_H_ |
| 7 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 | 10 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 V(BIT_XOR_STRONG, 1) \ | 187 V(BIT_XOR_STRONG, 1) \ |
| 188 V(SHL, 1) \ | 188 V(SHL, 1) \ |
| 189 V(SHL_STRONG, 1) \ | 189 V(SHL_STRONG, 1) \ |
| 190 V(SAR, 1) \ | 190 V(SAR, 1) \ |
| 191 V(SAR_STRONG, 1) \ | 191 V(SAR_STRONG, 1) \ |
| 192 V(SHR, 1) \ | 192 V(SHR, 1) \ |
| 193 V(SHR_STRONG, 1) \ | 193 V(SHR_STRONG, 1) \ |
| 194 V(DELETE, 2) \ | 194 V(DELETE, 2) \ |
| 195 V(IN, 1) \ | 195 V(IN, 1) \ |
| 196 V(INSTANCE_OF, 1) \ | 196 V(INSTANCE_OF, 1) \ |
| 197 V(FILTER_KEY, 1) \ | |
| 198 V(CALL_NON_FUNCTION, 0) \ | 197 V(CALL_NON_FUNCTION, 0) \ |
| 199 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ | 198 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ |
| 200 V(CALL_FUNCTION_PROXY, 1) \ | 199 V(CALL_FUNCTION_PROXY, 1) \ |
| 201 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ | 200 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ |
| 202 V(TO_OBJECT, 0) \ | 201 V(TO_OBJECT, 0) \ |
| 203 V(TO_NUMBER, 0) \ | 202 V(TO_NUMBER, 0) \ |
| 204 V(TO_STRING, 0) \ | 203 V(TO_STRING, 0) \ |
| 205 V(TO_NAME, 0) \ | 204 V(TO_NAME, 0) \ |
| 206 V(STRING_ADD_LEFT, 1) \ | 205 V(STRING_ADD_LEFT, 1) \ |
| 207 V(STRING_ADD_LEFT_STRONG, 1) \ | 206 V(STRING_ADD_LEFT_STRONG, 1) \ |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 363 |
| 365 friend class BuiltinFunctionTable; | 364 friend class BuiltinFunctionTable; |
| 366 friend class Isolate; | 365 friend class Isolate; |
| 367 | 366 |
| 368 DISALLOW_COPY_AND_ASSIGN(Builtins); | 367 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 369 }; | 368 }; |
| 370 | 369 |
| 371 } } // namespace v8::internal | 370 } } // namespace v8::internal |
| 372 | 371 |
| 373 #endif // V8_BUILTINS_H_ | 372 #endif // V8_BUILTINS_H_ |
| OLD | NEW |