OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 /* Literals */ \ | 265 /* Literals */ \ |
266 F(MaterializeRegExpLiteral, 4, 1)\ | 266 F(MaterializeRegExpLiteral, 4, 1)\ |
267 F(CreateArrayLiteralBoilerplate, 3, 1) \ | 267 F(CreateArrayLiteralBoilerplate, 3, 1) \ |
268 F(CloneLiteralBoilerplate, 1, 1) \ | 268 F(CloneLiteralBoilerplate, 1, 1) \ |
269 F(CloneShallowLiteralBoilerplate, 1, 1) \ | 269 F(CloneShallowLiteralBoilerplate, 1, 1) \ |
270 F(CreateObjectLiteral, 4, 1) \ | 270 F(CreateObjectLiteral, 4, 1) \ |
271 F(CreateObjectLiteralShallow, 4, 1) \ | 271 F(CreateObjectLiteralShallow, 4, 1) \ |
272 F(CreateArrayLiteral, 3, 1) \ | 272 F(CreateArrayLiteral, 3, 1) \ |
273 F(CreateArrayLiteralShallow, 3, 1) \ | 273 F(CreateArrayLiteralShallow, 3, 1) \ |
274 \ | 274 \ |
| 275 /* Harmony proxies */ \ |
| 276 F(CreateJSProxy, 2, 1) \ |
| 277 \ |
275 /* Catch context extension objects */ \ | 278 /* Catch context extension objects */ \ |
276 F(CreateCatchExtensionObject, 2, 1) \ | 279 F(CreateCatchExtensionObject, 2, 1) \ |
277 \ | 280 \ |
278 /* Statements */ \ | 281 /* Statements */ \ |
279 F(NewClosure, 3, 1) \ | 282 F(NewClosure, 3, 1) \ |
280 F(NewObject, 1, 1) \ | 283 F(NewObject, 1, 1) \ |
281 F(NewObjectFromBound, 2, 1) \ | 284 F(NewObjectFromBound, 2, 1) \ |
282 F(FinalizeInstanceSize, 1, 1) \ | 285 F(FinalizeInstanceSize, 1, 1) \ |
283 F(Throw, 1, 1) \ | 286 F(Throw, 1, 1) \ |
284 F(ReThrow, 1, 1) \ | 287 F(ReThrow, 1, 1) \ |
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
637 Handle<Script> script, | 640 Handle<Script> script, |
638 int position); | 641 int position); |
639 | 642 |
640 // Helper functions used stubs. | 643 // Helper functions used stubs. |
641 static void PerformGC(Object* result); | 644 static void PerformGC(Object* result); |
642 }; | 645 }; |
643 | 646 |
644 } } // namespace v8::internal | 647 } } // namespace v8::internal |
645 | 648 |
646 #endif // V8_RUNTIME_H_ | 649 #endif // V8_RUNTIME_H_ |
OLD | NEW |