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