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

Side by Side Diff: src/runtime.h

Issue 6606006: [Isolates] Merge 6500:6700 from bleeding_edge to isolates. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 9 years, 9 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 F(DateYMDFromTime, 2, 1) \ 232 F(DateYMDFromTime, 2, 1) \
233 \ 233 \
234 /* Numbers */ \ 234 /* Numbers */ \
235 \ 235 \
236 /* Globals */ \ 236 /* Globals */ \
237 F(CompileString, 1, 1) \ 237 F(CompileString, 1, 1) \
238 F(GlobalPrint, 1, 1) \ 238 F(GlobalPrint, 1, 1) \
239 \ 239 \
240 /* Eval */ \ 240 /* Eval */ \
241 F(GlobalReceiver, 1, 1) \ 241 F(GlobalReceiver, 1, 1) \
242 F(ResolvePossiblyDirectEval, 3, 2) \ 242 F(ResolvePossiblyDirectEval, 4, 2) \
243 F(ResolvePossiblyDirectEvalNoLookup, 3, 2) \ 243 F(ResolvePossiblyDirectEvalNoLookup, 4, 2) \
244 \ 244 \
245 F(SetProperty, -1 /* 3 or 4 */, 1) \ 245 F(SetProperty, -1 /* 3 or 4 */, 1) \
246 F(DefineOrRedefineDataProperty, 4, 1) \ 246 F(DefineOrRedefineDataProperty, 4, 1) \
247 F(DefineOrRedefineAccessorProperty, 5, 1) \ 247 F(DefineOrRedefineAccessorProperty, 5, 1) \
248 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ 248 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \
249 \ 249 \
250 /* Arrays */ \ 250 /* Arrays */ \
251 F(RemoveArrayHoles, 2, 1) \ 251 F(RemoveArrayHoles, 2, 1) \
252 F(GetArrayKeys, 2, 1) \ 252 F(GetArrayKeys, 2, 1) \
253 F(MoveArrayContents, 2, 1) \ 253 F(MoveArrayContents, 2, 1) \
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 F(TraceEnter, 0, 1) \ 305 F(TraceEnter, 0, 1) \
306 F(TraceExit, 1, 1) \ 306 F(TraceExit, 1, 1) \
307 F(Abort, 2, 1) \ 307 F(Abort, 2, 1) \
308 /* Logging */ \ 308 /* Logging */ \
309 F(Log, 2, 1) \ 309 F(Log, 2, 1) \
310 /* ES5 */ \ 310 /* ES5 */ \
311 F(LocalKeys, 1, 1) \ 311 F(LocalKeys, 1, 1) \
312 /* Cache suport */ \ 312 /* Cache suport */ \
313 F(GetFromCache, 2, 1) \ 313 F(GetFromCache, 2, 1) \
314 \ 314 \
315 /* Message objects */ \
316 F(NewMessageObject, 2, 1) \
317 F(MessageGetType, 1, 1) \
318 F(MessageGetArguments, 1, 1) \
319 F(MessageGetStartPosition, 1, 1) \
320 F(MessageGetScript, 1, 1) \
321 \
315 /* Pseudo functions - handled as macros by parser */ \ 322 /* Pseudo functions - handled as macros by parser */ \
316 F(IS_VAR, 1, 1) 323 F(IS_VAR, 1, 1)
317 324
318 #ifdef ENABLE_DEBUGGER_SUPPORT 325 #ifdef ENABLE_DEBUGGER_SUPPORT
319 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ 326 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \
320 /* Debugger support*/ \ 327 /* Debugger support*/ \
321 F(DebugBreak, 0, 1) \ 328 F(DebugBreak, 0, 1) \
322 F(SetDebugEventListener, 2, 1) \ 329 F(SetDebugEventListener, 2, 1) \
323 F(Break, 0, 1) \ 330 F(Break, 0, 1) \
324 F(DebugGetPropertyDetails, 2, 1) \ 331 F(DebugGetPropertyDetails, 2, 1) \
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 Handle<Script> script, 618 Handle<Script> script,
612 int position); 619 int position);
613 620
614 // Helper functions used stubs. 621 // Helper functions used stubs.
615 static void PerformGC(Object* result); 622 static void PerformGC(Object* result);
616 }; 623 };
617 624
618 } } // namespace v8::internal 625 } } // namespace v8::internal
619 626
620 #endif // V8_RUNTIME_H_ 627 #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