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

Side by Side Diff: src/runtime.h

Issue 173349: Reverting 2753. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 3 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.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 F(ChangeBreakOnException, 2) \ 296 F(ChangeBreakOnException, 2) \
297 F(PrepareStep, 3) \ 297 F(PrepareStep, 3) \
298 F(ClearStepping, 0) \ 298 F(ClearStepping, 0) \
299 F(DebugEvaluate, 4) \ 299 F(DebugEvaluate, 4) \
300 F(DebugEvaluateGlobal, 3) \ 300 F(DebugEvaluateGlobal, 3) \
301 F(DebugGetLoadedScripts, 0) \ 301 F(DebugGetLoadedScripts, 0) \
302 F(DebugReferencedBy, 3) \ 302 F(DebugReferencedBy, 3) \
303 F(DebugConstructedBy, 2) \ 303 F(DebugConstructedBy, 2) \
304 F(DebugGetPrototype, 1) \ 304 F(DebugGetPrototype, 1) \
305 F(SystemBreak, 0) \ 305 F(SystemBreak, 0) \
306 F(DebugDisassembleFunction, 1) \ 306 F(FunctionGetAssemblerCode, 1) \
307 F(DebugDisassembleConstructor, 1) \
308 F(FunctionGetInferredName, 1) 307 F(FunctionGetInferredName, 1)
309 #else 308 #else
310 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) 309 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F)
311 #endif 310 #endif
312 311
313 #ifdef DEBUG 312 #ifdef DEBUG
314 #define RUNTIME_FUNCTION_LIST_DEBUG(F) \ 313 #define RUNTIME_FUNCTION_LIST_DEBUG(F) \
315 /* Testing */ \ 314 /* Testing */ \
316 F(ListNatives, 0) 315 F(ListNatives, 0)
317 #else 316 #else
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 int position); 395 int position);
397 396
398 // Helper functions used stubs. 397 // Helper functions used stubs.
399 static void PerformGC(Object* result); 398 static void PerformGC(Object* result);
400 }; 399 };
401 400
402 401
403 } } // namespace v8::internal 402 } } // namespace v8::internal
404 403
405 #endif // V8_RUNTIME_H_ 404 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698