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

Side by Side Diff: src/runtime.h

Issue 6017008: Add fine-grained diff implementation to LiveEdit engine. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: update test Created 9 years, 12 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
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 F(FunctionGetInferredName, 1, 1) \ 354 F(FunctionGetInferredName, 1, 1) \
355 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ 355 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \
356 F(LiveEditGatherCompileInfo, 2, 1) \ 356 F(LiveEditGatherCompileInfo, 2, 1) \
357 F(LiveEditReplaceScript, 3, 1) \ 357 F(LiveEditReplaceScript, 3, 1) \
358 F(LiveEditReplaceFunctionCode, 2, 1) \ 358 F(LiveEditReplaceFunctionCode, 2, 1) \
359 F(LiveEditFunctionSourceUpdated, 1, 1) \ 359 F(LiveEditFunctionSourceUpdated, 1, 1) \
360 F(LiveEditFunctionSetScript, 2, 1) \ 360 F(LiveEditFunctionSetScript, 2, 1) \
361 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ 361 F(LiveEditReplaceRefToNestedFunction, 3, 1) \
362 F(LiveEditPatchFunctionPositions, 2, 1) \ 362 F(LiveEditPatchFunctionPositions, 2, 1) \
363 F(LiveEditCheckAndDropActivations, 2, 1) \ 363 F(LiveEditCheckAndDropActivations, 2, 1) \
364 F(LiveEditCompareStringsLinewise, 2, 1) \ 364 F(LiveEditCompareStrings, 2, 1) \
365 F(GetFunctionCodePositionFromSource, 2, 1) \ 365 F(GetFunctionCodePositionFromSource, 2, 1) \
366 F(ExecuteInDebugContext, 2, 1) 366 F(ExecuteInDebugContext, 2, 1)
367 #else 367 #else
368 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) 368 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F)
369 #endif 369 #endif
370 370
371 #ifdef ENABLE_LOGGING_AND_PROFILING 371 #ifdef ENABLE_LOGGING_AND_PROFILING
372 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \ 372 #define RUNTIME_FUNCTION_LIST_PROFILER_SUPPORT(F) \
373 F(ProfilerResume, 2, 1) \ 373 F(ProfilerResume, 2, 1) \
374 F(ProfilerPause, 2, 1) 374 F(ProfilerPause, 2, 1)
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 int position); 544 int position);
545 545
546 // Helper functions used stubs. 546 // Helper functions used stubs.
547 static void PerformGC(Object* result); 547 static void PerformGC(Object* result);
548 }; 548 };
549 549
550 550
551 } } // namespace v8::internal 551 } } // namespace v8::internal
552 552
553 #endif // V8_RUNTIME_H_ 553 #endif // V8_RUNTIME_H_
OLDNEW
« src/liveedit.cc ('K') | « src/liveedit-debugger.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698