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

Side by Side Diff: src/runtime.h

Issue 546125: A brutal approach to V8 script liveedit (Closed)
Patch Set: merge Created 10 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
« no previous file with comments | « src/liveedit.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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 F(ClearStepping, 0, 1) \ 314 F(ClearStepping, 0, 1) \
315 F(DebugEvaluate, 4, 1) \ 315 F(DebugEvaluate, 4, 1) \
316 F(DebugEvaluateGlobal, 3, 1) \ 316 F(DebugEvaluateGlobal, 3, 1) \
317 F(DebugGetLoadedScripts, 0, 1) \ 317 F(DebugGetLoadedScripts, 0, 1) \
318 F(DebugReferencedBy, 3, 1) \ 318 F(DebugReferencedBy, 3, 1) \
319 F(DebugConstructedBy, 2, 1) \ 319 F(DebugConstructedBy, 2, 1) \
320 F(DebugGetPrototype, 1, 1) \ 320 F(DebugGetPrototype, 1, 1) \
321 F(SystemBreak, 0, 1) \ 321 F(SystemBreak, 0, 1) \
322 F(DebugDisassembleFunction, 1, 1) \ 322 F(DebugDisassembleFunction, 1, 1) \
323 F(DebugDisassembleConstructor, 1, 1) \ 323 F(DebugDisassembleConstructor, 1, 1) \
324 F(FunctionGetInferredName, 1, 1) 324 F(FunctionGetInferredName, 1, 1) \
325 F(DebugChangeScriptLive, 4, 1)
325 #else 326 #else
326 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) 327 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F)
327 #endif 328 #endif
328 329
330
329 #ifdef ENABLE_LOGGING_AND_PROFILING 331 #ifdef ENABLE_LOGGING_AND_PROFILING
330 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \ 332 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \
331 F(ProfilerResume, 2, 1) \ 333 F(ProfilerResume, 2, 1) \
332 F(ProfilerPause, 2, 1) 334 F(ProfilerPause, 2, 1)
333 #else 335 #else
334 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) 336 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F)
335 #endif 337 #endif
336 338
337 #ifdef DEBUG 339 #ifdef DEBUG
338 #define RUNTIME_FUNCTION_LIST_DEBUG(F) \ 340 #define RUNTIME_FUNCTION_LIST_DEBUG(F) \
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 int position); 423 int position);
422 424
423 // Helper functions used stubs. 425 // Helper functions used stubs.
424 static void PerformGC(Object* result); 426 static void PerformGC(Object* result);
425 }; 427 };
426 428
427 429
428 } } // namespace v8::internal 430 } } // namespace v8::internal
429 431
430 #endif // V8_RUNTIME_H_ 432 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/liveedit.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698