OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 F(GetInterceptorInfo, 1, 1) \ | 60 F(GetInterceptorInfo, 1, 1) \ |
61 F(GetNamedInterceptorPropertyNames, 1, 1) \ | 61 F(GetNamedInterceptorPropertyNames, 1, 1) \ |
62 F(GetIndexedInterceptorElementNames, 1, 1) \ | 62 F(GetIndexedInterceptorElementNames, 1, 1) \ |
63 F(GetArgumentsProperty, 1, 1) \ | 63 F(GetArgumentsProperty, 1, 1) \ |
64 F(ToFastProperties, 1, 1) \ | 64 F(ToFastProperties, 1, 1) \ |
65 F(ToSlowProperties, 1, 1) \ | 65 F(ToSlowProperties, 1, 1) \ |
66 F(FinishArrayPrototypeSetup, 1, 1) \ | 66 F(FinishArrayPrototypeSetup, 1, 1) \ |
67 F(SpecialArrayFunctions, 1, 1) \ | 67 F(SpecialArrayFunctions, 1, 1) \ |
68 F(GetGlobalReceiver, 0, 1) \ | 68 F(GetGlobalReceiver, 0, 1) \ |
69 \ | 69 \ |
70 F(GetPrototype, 1, 1) \ | |
71 F(IsInPrototypeChain, 2, 1) \ | 70 F(IsInPrototypeChain, 2, 1) \ |
72 F(SetHiddenPrototype, 2, 1) \ | 71 F(SetHiddenPrototype, 2, 1) \ |
73 \ | 72 \ |
74 F(IsConstructCall, 0, 1) \ | 73 F(IsConstructCall, 0, 1) \ |
75 \ | 74 \ |
76 F(GetOwnProperty, 2, 1) \ | 75 F(GetOwnProperty, 2, 1) \ |
77 \ | 76 \ |
78 F(IsExtensible, 1, 1) \ | 77 F(IsExtensible, 1, 1) \ |
79 F(PreventExtensions, 1, 1)\ | 78 F(PreventExtensions, 1, 1)\ |
80 \ | 79 \ |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 F(CreateArrayLiteralBoilerplate, 3, 1) \ | 271 F(CreateArrayLiteralBoilerplate, 3, 1) \ |
273 F(CloneLiteralBoilerplate, 1, 1) \ | 272 F(CloneLiteralBoilerplate, 1, 1) \ |
274 F(CloneShallowLiteralBoilerplate, 1, 1) \ | 273 F(CloneShallowLiteralBoilerplate, 1, 1) \ |
275 F(CreateObjectLiteral, 4, 1) \ | 274 F(CreateObjectLiteral, 4, 1) \ |
276 F(CreateObjectLiteralShallow, 4, 1) \ | 275 F(CreateObjectLiteralShallow, 4, 1) \ |
277 F(CreateArrayLiteral, 3, 1) \ | 276 F(CreateArrayLiteral, 3, 1) \ |
278 F(CreateArrayLiteralShallow, 3, 1) \ | 277 F(CreateArrayLiteralShallow, 3, 1) \ |
279 \ | 278 \ |
280 /* Harmony proxies */ \ | 279 /* Harmony proxies */ \ |
281 F(CreateJSProxy, 2, 1) \ | 280 F(CreateJSProxy, 2, 1) \ |
282 F(IsJSProxy, 1, 1) \ | |
283 F(GetHandler, 1, 1) \ | |
284 \ | 281 \ |
285 /* Catch context extension objects */ \ | 282 /* Catch context extension objects */ \ |
286 F(CreateCatchExtensionObject, 2, 1) \ | 283 F(CreateCatchExtensionObject, 2, 1) \ |
287 \ | 284 \ |
288 /* Statements */ \ | 285 /* Statements */ \ |
289 F(NewClosure, 3, 1) \ | 286 F(NewClosure, 3, 1) \ |
290 F(NewObject, 1, 1) \ | 287 F(NewObject, 1, 1) \ |
291 F(NewObjectFromBound, 2, 1) \ | 288 F(NewObjectFromBound, 2, 1) \ |
292 F(FinalizeInstanceSize, 1, 1) \ | 289 F(FinalizeInstanceSize, 1, 1) \ |
293 F(Throw, 1, 1) \ | 290 F(Throw, 1, 1) \ |
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 Handle<Script> script, | 644 Handle<Script> script, |
648 int position); | 645 int position); |
649 | 646 |
650 // Helper functions used stubs. | 647 // Helper functions used stubs. |
651 static void PerformGC(Object* result); | 648 static void PerformGC(Object* result); |
652 }; | 649 }; |
653 | 650 |
654 } } // namespace v8::internal | 651 } } // namespace v8::internal |
655 | 652 |
656 #endif // V8_RUNTIME_H_ | 653 #endif // V8_RUNTIME_H_ |
OLD | NEW |