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

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: merge Created 9 years, 11 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/liveedit-debugger.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 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 \ 367 \
368 F(SetFlags, 1, 1) \ 368 F(SetFlags, 1, 1) \
369 F(CollectGarbage, 1, 1) \ 369 F(CollectGarbage, 1, 1) \
370 F(GetHeapUsage, 0, 1) 370 F(GetHeapUsage, 0, 1)
371 371
372 #else 372 #else
373 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) 373 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F)
374 #endif 374 #endif
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 int position); 549 int position);
550 550
551 // Helper functions used stubs. 551 // Helper functions used stubs.
552 static void PerformGC(Object* result); 552 static void PerformGC(Object* result);
553 }; 553 };
554 554
555 555
556 } } // namespace v8::internal 556 } } // namespace v8::internal
557 557
558 #endif // V8_RUNTIME_H_ 558 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/liveedit-debugger.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698