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

Side by Side Diff: src/runtime.h

Issue 6368051: A MessageObject is a purely internal object to hold information about (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address comments 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/objects-visiting.cc ('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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 F(TraceEnter, 0, 1) \ 303 F(TraceEnter, 0, 1) \
304 F(TraceExit, 1, 1) \ 304 F(TraceExit, 1, 1) \
305 F(Abort, 2, 1) \ 305 F(Abort, 2, 1) \
306 /* Logging */ \ 306 /* Logging */ \
307 F(Log, 2, 1) \ 307 F(Log, 2, 1) \
308 /* ES5 */ \ 308 /* ES5 */ \
309 F(LocalKeys, 1, 1) \ 309 F(LocalKeys, 1, 1) \
310 /* Cache suport */ \ 310 /* Cache suport */ \
311 F(GetFromCache, 2, 1) \ 311 F(GetFromCache, 2, 1) \
312 \ 312 \
313 /* Message objects */ \
314 F(NewMessageObject, 2, 1) \
315 F(MessageGetType, 1, 1) \
316 F(MessageGetArguments, 1, 1) \
317 F(MessageGetStartPosition, 1, 1) \
318 F(MessageGetScript, 1, 1) \
319 \
313 /* Pseudo functions - handled as macros by parser */ \ 320 /* Pseudo functions - handled as macros by parser */ \
314 F(IS_VAR, 1, 1) 321 F(IS_VAR, 1, 1)
315 322
316 #ifdef ENABLE_DEBUGGER_SUPPORT 323 #ifdef ENABLE_DEBUGGER_SUPPORT
317 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ 324 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \
318 /* Debugger support*/ \ 325 /* Debugger support*/ \
319 F(DebugBreak, 0, 1) \ 326 F(DebugBreak, 0, 1) \
320 F(SetDebugEventListener, 2, 1) \ 327 F(SetDebugEventListener, 2, 1) \
321 F(Break, 0, 1) \ 328 F(Break, 0, 1) \
322 F(DebugGetPropertyDetails, 2, 1) \ 329 F(DebugGetPropertyDetails, 2, 1) \
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 int position); 557 int position);
551 558
552 // Helper functions used stubs. 559 // Helper functions used stubs.
553 static void PerformGC(Object* result); 560 static void PerformGC(Object* result);
554 }; 561 };
555 562
556 563
557 } } // namespace v8::internal 564 } } // namespace v8::internal
558 565
559 #endif // V8_RUNTIME_H_ 566 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects-visiting.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698