| OLD | NEW |
| 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 Loading... |
| 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 // Temporary disabled for failing test investigation. | 1790 restarter_frame_function_pointer; |
| 1791 // restarter_frame_function_pointer; | |
| 1792 NULL; | |
| 1793 } | 1791 } |
| 1794 | 1792 |
| 1795 | 1793 |
| 1796 bool Debug::IsDebugGlobal(GlobalObject* global) { | 1794 bool Debug::IsDebugGlobal(GlobalObject* global) { |
| 1797 return IsLoaded() && global == Debug::debug_context()->global(); | 1795 return IsLoaded() && global == Debug::debug_context()->global(); |
| 1798 } | 1796 } |
| 1799 | 1797 |
| 1800 | 1798 |
| 1801 void Debug::ClearMirrorCache() { | 1799 void Debug::ClearMirrorCache() { |
| 1802 HandleScope scope; | 1800 HandleScope scope; |
| (...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3016 { | 3014 { |
| 3017 Locker locker; | 3015 Locker locker; |
| 3018 Debugger::CallMessageDispatchHandler(); | 3016 Debugger::CallMessageDispatchHandler(); |
| 3019 } | 3017 } |
| 3020 } | 3018 } |
| 3021 } | 3019 } |
| 3022 | 3020 |
| 3023 #endif // ENABLE_DEBUGGER_SUPPORT | 3021 #endif // ENABLE_DEBUGGER_SUPPORT |
| 3024 | 3022 |
| 3025 } } // namespace v8::internal | 3023 } } // namespace v8::internal |
| OLD | NEW |