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

Side by Side Diff: src/debug.cc

Issue 3031032: Testing change for failing unit test (Closed)
Patch Set: Created 10 years, 4 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 | « no previous file | src/ia32/debug-ia32.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 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after
1780 return false; 1780 return false;
1781 } 1781 }
1782 1782
1783 1783
1784 void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id, 1784 void Debug::FramesHaveBeenDropped(StackFrame::Id new_break_frame_id,
1785 FrameDropMode mode, 1785 FrameDropMode mode,
1786 Object** restarter_frame_function_pointer) { 1786 Object** restarter_frame_function_pointer) {
1787 thread_local_.frame_drop_mode_ = mode; 1787 thread_local_.frame_drop_mode_ = mode;
1788 thread_local_.break_frame_id_ = new_break_frame_id; 1788 thread_local_.break_frame_id_ = new_break_frame_id;
1789 thread_local_.restarter_frame_function_pointer_ = 1789 thread_local_.restarter_frame_function_pointer_ =
1790 restarter_frame_function_pointer; 1790 // Temporary disabled for failing test investigation.
1791 // restarter_frame_function_pointer;
1792 NULL;
1791 } 1793 }
1792 1794
1793 1795
1794 bool Debug::IsDebugGlobal(GlobalObject* global) { 1796 bool Debug::IsDebugGlobal(GlobalObject* global) {
1795 return IsLoaded() && global == Debug::debug_context()->global(); 1797 return IsLoaded() && global == Debug::debug_context()->global();
1796 } 1798 }
1797 1799
1798 1800
1799 void Debug::ClearMirrorCache() { 1801 void Debug::ClearMirrorCache() {
1800 HandleScope scope; 1802 HandleScope scope;
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after
3014 { 3016 {
3015 Locker locker; 3017 Locker locker;
3016 Debugger::CallMessageDispatchHandler(); 3018 Debugger::CallMessageDispatchHandler();
3017 } 3019 }
3018 } 3020 }
3019 } 3021 }
3020 3022
3021 #endif // ENABLE_DEBUGGER_SUPPORT 3023 #endif // ENABLE_DEBUGGER_SUPPORT
3022 3024
3023 } } // namespace v8::internal 3025 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/ia32/debug-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698