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

Side by Side Diff: src/debug.h

Issue 14106011: Allow setting debugger breakpoints on CompareNilICs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 7 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/builtins.cc ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 411
412 // Garbage collection notifications. 412 // Garbage collection notifications.
413 void AfterGarbageCollection(); 413 void AfterGarbageCollection();
414 414
415 // Code generator routines. 415 // Code generator routines.
416 static void GenerateSlot(MacroAssembler* masm); 416 static void GenerateSlot(MacroAssembler* masm);
417 static void GenerateLoadICDebugBreak(MacroAssembler* masm); 417 static void GenerateLoadICDebugBreak(MacroAssembler* masm);
418 static void GenerateStoreICDebugBreak(MacroAssembler* masm); 418 static void GenerateStoreICDebugBreak(MacroAssembler* masm);
419 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm); 419 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm);
420 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm); 420 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm);
421 static void GenerateCompareNilICDebugBreak(MacroAssembler* masm);
421 static void GenerateReturnDebugBreak(MacroAssembler* masm); 422 static void GenerateReturnDebugBreak(MacroAssembler* masm);
422 static void GenerateCallFunctionStubDebugBreak(MacroAssembler* masm); 423 static void GenerateCallFunctionStubDebugBreak(MacroAssembler* masm);
423 static void GenerateCallFunctionStubRecordDebugBreak(MacroAssembler* masm); 424 static void GenerateCallFunctionStubRecordDebugBreak(MacroAssembler* masm);
424 static void GenerateCallConstructStubDebugBreak(MacroAssembler* masm); 425 static void GenerateCallConstructStubDebugBreak(MacroAssembler* masm);
425 static void GenerateCallConstructStubRecordDebugBreak(MacroAssembler* masm); 426 static void GenerateCallConstructStubRecordDebugBreak(MacroAssembler* masm);
426 static void GenerateSlotDebugBreak(MacroAssembler* masm); 427 static void GenerateSlotDebugBreak(MacroAssembler* masm);
427 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm); 428 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm);
428 429
429 // FrameDropper is a code replacement for a JavaScript frame with possibly 430 // FrameDropper is a code replacement for a JavaScript frame with possibly
430 // several frames above. 431 // several frames above.
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 1049
1049 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); 1050 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
1050 }; 1051 };
1051 1052
1052 1053
1053 } } // namespace v8::internal 1054 } } // namespace v8::internal
1054 1055
1055 #endif // ENABLE_DEBUGGER_SUPPORT 1056 #endif // ENABLE_DEBUGGER_SUPPORT
1056 1057
1057 #endif // V8_DEBUG_H_ 1058 #endif // V8_DEBUG_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698