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

Side by Side Diff: src/debug.h

Issue 9297019: Fix and adapt debugger for new call target caches. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Yang Guo. Created 8 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/code-stubs.h ('k') | src/debug.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 395
396 // Garbage collection notifications. 396 // Garbage collection notifications.
397 void AfterGarbageCollection(); 397 void AfterGarbageCollection();
398 398
399 // Code generator routines. 399 // Code generator routines.
400 static void GenerateSlot(MacroAssembler* masm); 400 static void GenerateSlot(MacroAssembler* masm);
401 static void GenerateLoadICDebugBreak(MacroAssembler* masm); 401 static void GenerateLoadICDebugBreak(MacroAssembler* masm);
402 static void GenerateStoreICDebugBreak(MacroAssembler* masm); 402 static void GenerateStoreICDebugBreak(MacroAssembler* masm);
403 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm); 403 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm);
404 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm); 404 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm);
405 static void GenerateConstructCallDebugBreak(MacroAssembler* masm);
406 static void GenerateReturnDebugBreak(MacroAssembler* masm); 405 static void GenerateReturnDebugBreak(MacroAssembler* masm);
407 static void GenerateCallFunctionStubDebugBreak(MacroAssembler* masm); 406 static void GenerateCallFunctionStubDebugBreak(MacroAssembler* masm);
407 static void GenerateCallFunctionStubRecordDebugBreak(MacroAssembler* masm);
408 static void GenerateCallConstructStubDebugBreak(MacroAssembler* masm);
409 static void GenerateCallConstructStubRecordDebugBreak(MacroAssembler* masm);
408 static void GenerateSlotDebugBreak(MacroAssembler* masm); 410 static void GenerateSlotDebugBreak(MacroAssembler* masm);
409 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm); 411 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm);
410 412
411 // FrameDropper is a code replacement for a JavaScript frame with possibly 413 // FrameDropper is a code replacement for a JavaScript frame with possibly
412 // several frames above. 414 // several frames above.
413 // There is no calling conventions here, because it never actually gets 415 // There is no calling conventions here, because it never actually gets
414 // called, it only gets returned to. 416 // called, it only gets returned to.
415 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); 417 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm);
416 418
417 // Called from stub-cache.cc. 419 // Called from stub-cache.cc.
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
981 983
982 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); 984 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
983 }; 985 };
984 986
985 987
986 } } // namespace v8::internal 988 } } // namespace v8::internal
987 989
988 #endif // ENABLE_DEBUGGER_SUPPORT 990 #endif // ENABLE_DEBUGGER_SUPPORT
989 991
990 #endif // V8_DEBUG_H_ 992 #endif // V8_DEBUG_H_
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698