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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 V(IN, 1) \ | 179 V(IN, 1) \ |
180 V(INSTANCE_OF, 1) \ | 180 V(INSTANCE_OF, 1) \ |
181 V(CALL_NON_FUNCTION, 0) \ | 181 V(CALL_NON_FUNCTION, 0) \ |
182 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ | 182 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ |
183 V(CALL_FUNCTION_PROXY, 1) \ | 183 V(CALL_FUNCTION_PROXY, 1) \ |
184 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ | 184 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ |
185 V(TO_NUMBER, 0) \ | 185 V(TO_NUMBER, 0) \ |
186 V(TO_STRING, 0) \ | 186 V(TO_STRING, 0) \ |
187 V(TO_NAME, 0) \ | 187 V(TO_NAME, 0) \ |
188 V(STRING_ADD_LEFT, 1) \ | 188 V(STRING_ADD_LEFT, 1) \ |
189 V(STRING_ADD_LEFT_STRONG, 1) \ | |
190 V(STRING_ADD_RIGHT, 1) \ | 189 V(STRING_ADD_RIGHT, 1) \ |
191 V(STRING_ADD_RIGHT_STRONG, 1) \ | |
192 V(APPLY_PREPARE, 1) \ | 190 V(APPLY_PREPARE, 1) \ |
193 V(REFLECT_APPLY_PREPARE, 1) \ | 191 V(REFLECT_APPLY_PREPARE, 1) \ |
194 V(REFLECT_CONSTRUCT_PREPARE, 2) \ | 192 V(REFLECT_CONSTRUCT_PREPARE, 2) \ |
195 V(CONCAT_ITERABLE_TO_ARRAY, 1) \ | 193 V(CONCAT_ITERABLE_TO_ARRAY, 1) \ |
196 V(STACK_OVERFLOW, 1) | 194 V(STACK_OVERFLOW, 1) |
197 | 195 |
198 class BuiltinFunctionTable; | 196 class BuiltinFunctionTable; |
199 class ObjectVisitor; | 197 class ObjectVisitor; |
200 | 198 |
201 | 199 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 | 346 |
349 friend class BuiltinFunctionTable; | 347 friend class BuiltinFunctionTable; |
350 friend class Isolate; | 348 friend class Isolate; |
351 | 349 |
352 DISALLOW_COPY_AND_ASSIGN(Builtins); | 350 DISALLOW_COPY_AND_ASSIGN(Builtins); |
353 }; | 351 }; |
354 | 352 |
355 } } // namespace v8::internal | 353 } } // namespace v8::internal |
356 | 354 |
357 #endif // V8_BUILTINS_H_ | 355 #endif // V8_BUILTINS_H_ |
OLD | NEW |