Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1526)

Side by Side Diff: src/runtime.h

Issue 6993057: Version 3.4.2 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/proxy.js ('k') | src/runtime.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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) \
70 F(IsInPrototypeChain, 2, 1) \ 71 F(IsInPrototypeChain, 2, 1) \
71 F(SetHiddenPrototype, 2, 1) \ 72 F(SetHiddenPrototype, 2, 1) \
72 \ 73 \
73 F(IsConstructCall, 0, 1) \ 74 F(IsConstructCall, 0, 1) \
74 \ 75 \
75 F(GetOwnProperty, 2, 1) \ 76 F(GetOwnProperty, 2, 1) \
76 \ 77 \
77 F(IsExtensible, 1, 1) \ 78 F(IsExtensible, 1, 1) \
78 F(PreventExtensions, 1, 1)\ 79 F(PreventExtensions, 1, 1)\
79 \ 80 \
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 F(CreateArrayLiteralBoilerplate, 3, 1) \ 272 F(CreateArrayLiteralBoilerplate, 3, 1) \
272 F(CloneLiteralBoilerplate, 1, 1) \ 273 F(CloneLiteralBoilerplate, 1, 1) \
273 F(CloneShallowLiteralBoilerplate, 1, 1) \ 274 F(CloneShallowLiteralBoilerplate, 1, 1) \
274 F(CreateObjectLiteral, 4, 1) \ 275 F(CreateObjectLiteral, 4, 1) \
275 F(CreateObjectLiteralShallow, 4, 1) \ 276 F(CreateObjectLiteralShallow, 4, 1) \
276 F(CreateArrayLiteral, 3, 1) \ 277 F(CreateArrayLiteral, 3, 1) \
277 F(CreateArrayLiteralShallow, 3, 1) \ 278 F(CreateArrayLiteralShallow, 3, 1) \
278 \ 279 \
279 /* Harmony proxies */ \ 280 /* Harmony proxies */ \
280 F(CreateJSProxy, 2, 1) \ 281 F(CreateJSProxy, 2, 1) \
282 F(IsJSProxy, 1, 1) \
283 F(GetHandler, 1, 1) \
281 \ 284 \
282 /* Catch context extension objects */ \ 285 /* Catch context extension objects */ \
283 F(CreateCatchExtensionObject, 2, 1) \ 286 F(CreateCatchExtensionObject, 2, 1) \
284 \ 287 \
285 /* Statements */ \ 288 /* Statements */ \
286 F(NewClosure, 3, 1) \ 289 F(NewClosure, 3, 1) \
287 F(NewObject, 1, 1) \ 290 F(NewObject, 1, 1) \
288 F(NewObjectFromBound, 2, 1) \ 291 F(NewObjectFromBound, 2, 1) \
289 F(FinalizeInstanceSize, 1, 1) \ 292 F(FinalizeInstanceSize, 1, 1) \
290 F(Throw, 1, 1) \ 293 F(Throw, 1, 1) \
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
644 Handle<Script> script, 647 Handle<Script> script,
645 int position); 648 int position);
646 649
647 // Helper functions used stubs. 650 // Helper functions used stubs.
648 static void PerformGC(Object* result); 651 static void PerformGC(Object* result);
649 }; 652 };
650 653
651 } } // namespace v8::internal 654 } } // namespace v8::internal
652 655
653 #endif // V8_RUNTIME_H_ 656 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/proxy.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698