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

Side by Side Diff: src/runtime.h

Issue 6580038: [Isolates] Merge from bleeding_edge, revisions 5934-6100. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 9 years, 10 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/regexp.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 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 F(GetIndexedInterceptorElementNames, 1, 1) \ 61 F(GetIndexedInterceptorElementNames, 1, 1) \
62 F(GetArgumentsProperty, 1, 1) \ 62 F(GetArgumentsProperty, 1, 1) \
63 F(ToFastProperties, 1, 1) \ 63 F(ToFastProperties, 1, 1) \
64 F(ToSlowProperties, 1, 1) \ 64 F(ToSlowProperties, 1, 1) \
65 F(FinishArrayPrototypeSetup, 1, 1) \ 65 F(FinishArrayPrototypeSetup, 1, 1) \
66 F(SpecialArrayFunctions, 1, 1) \ 66 F(SpecialArrayFunctions, 1, 1) \
67 F(GetGlobalReceiver, 0, 1) \ 67 F(GetGlobalReceiver, 0, 1) \
68 \ 68 \
69 F(IsInPrototypeChain, 2, 1) \ 69 F(IsInPrototypeChain, 2, 1) \
70 F(SetHiddenPrototype, 2, 1) \ 70 F(SetHiddenPrototype, 2, 1) \
71 F(SetMathFunctionId, 2, 1) \
72 \ 71 \
73 F(IsConstructCall, 0, 1) \ 72 F(IsConstructCall, 0, 1) \
74 \ 73 \
75 F(GetOwnProperty, 2, 1) \ 74 F(GetOwnProperty, 2, 1) \
76 \ 75 \
77 F(IsExtensible, 1, 1) \ 76 F(IsExtensible, 1, 1) \
78 F(PreventExtensions, 1, 1)\ 77 F(PreventExtensions, 1, 1)\
79 \ 78 \
80 /* Utilities */ \ 79 /* Utilities */ \
81 F(GetFunctionDelegate, 1, 1) \ 80 F(GetFunctionDelegate, 1, 1) \
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 F(GetThreadDetails, 2, 1) \ 337 F(GetThreadDetails, 2, 1) \
339 F(SetDisableBreak, 1, 1) \ 338 F(SetDisableBreak, 1, 1) \
340 F(GetBreakLocations, 1, 1) \ 339 F(GetBreakLocations, 1, 1) \
341 F(SetFunctionBreakPoint, 3, 1) \ 340 F(SetFunctionBreakPoint, 3, 1) \
342 F(SetScriptBreakPoint, 3, 1) \ 341 F(SetScriptBreakPoint, 3, 1) \
343 F(ClearBreakPoint, 1, 1) \ 342 F(ClearBreakPoint, 1, 1) \
344 F(ChangeBreakOnException, 2, 1) \ 343 F(ChangeBreakOnException, 2, 1) \
345 F(IsBreakOnException, 1, 1) \ 344 F(IsBreakOnException, 1, 1) \
346 F(PrepareStep, 3, 1) \ 345 F(PrepareStep, 3, 1) \
347 F(ClearStepping, 0, 1) \ 346 F(ClearStepping, 0, 1) \
348 F(DebugEvaluate, 4, 1) \ 347 F(DebugEvaluate, 5, 1) \
349 F(DebugEvaluateGlobal, 3, 1) \ 348 F(DebugEvaluateGlobal, 4, 1) \
350 F(DebugGetLoadedScripts, 0, 1) \ 349 F(DebugGetLoadedScripts, 0, 1) \
351 F(DebugReferencedBy, 3, 1) \ 350 F(DebugReferencedBy, 3, 1) \
352 F(DebugConstructedBy, 2, 1) \ 351 F(DebugConstructedBy, 2, 1) \
353 F(DebugGetPrototype, 1, 1) \ 352 F(DebugGetPrototype, 1, 1) \
354 F(SystemBreak, 0, 1) \ 353 F(SystemBreak, 0, 1) \
355 F(DebugDisassembleFunction, 1, 1) \ 354 F(DebugDisassembleFunction, 1, 1) \
356 F(DebugDisassembleConstructor, 1, 1) \ 355 F(DebugDisassembleConstructor, 1, 1) \
357 F(FunctionGetInferredName, 1, 1) \ 356 F(FunctionGetInferredName, 1, 1) \
358 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ 357 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \
359 F(LiveEditGatherCompileInfo, 2, 1) \ 358 F(LiveEditGatherCompileInfo, 2, 1) \
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 Handle<Script> script, 605 Handle<Script> script,
607 int position); 606 int position);
608 607
609 // Helper functions used stubs. 608 // Helper functions used stubs.
610 static void PerformGC(Object* result); 609 static void PerformGC(Object* result);
611 }; 610 };
612 611
613 } } // namespace v8::internal 612 } } // namespace v8::internal
614 613
615 #endif // V8_RUNTIME_H_ 614 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/regexp.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698