OLD | NEW |
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 1817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1828 Handle<JSArray> m_shared_info_array; | 1828 Handle<JSArray> m_shared_info_array; |
1829 Handle<JSArray> m_result; | 1829 Handle<JSArray> m_result; |
1830 }; | 1830 }; |
1831 | 1831 |
1832 // Drops all call frame matched by target and all frames above them. | 1832 // Drops all call frame matched by target and all frames above them. |
1833 template<typename TARGET> | 1833 template<typename TARGET> |
1834 static const char* DropActivationsInActiveThreadImpl( | 1834 static const char* DropActivationsInActiveThreadImpl( |
1835 TARGET& target, bool do_drop, Zone* zone) { | 1835 TARGET& target, bool do_drop, Zone* zone) { |
1836 Isolate* isolate = Isolate::Current(); | 1836 Isolate* isolate = Isolate::Current(); |
1837 Debug* debug = isolate->debug(); | 1837 Debug* debug = isolate->debug(); |
1838 ZoneScope scope(zone, DELETE_ON_EXIT); | 1838 ZoneScope scope(zone); |
1839 Vector<StackFrame*> frames = CreateStackMap(isolate, zone); | 1839 Vector<StackFrame*> frames = CreateStackMap(isolate, zone); |
1840 | 1840 |
1841 | 1841 |
1842 int top_frame_index = -1; | 1842 int top_frame_index = -1; |
1843 int frame_index = 0; | 1843 int frame_index = 0; |
1844 for (; frame_index < frames.length(); frame_index++) { | 1844 for (; frame_index < frames.length(); frame_index++) { |
1845 StackFrame* frame = frames[frame_index]; | 1845 StackFrame* frame = frames[frame_index]; |
1846 if (frame->id() == debug->break_frame_id()) { | 1846 if (frame->id() == debug->break_frame_id()) { |
1847 top_frame_index = frame_index; | 1847 top_frame_index = frame_index; |
1848 break; | 1848 break; |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2122 | 2122 |
2123 bool LiveEditFunctionTracker::IsActive(Isolate* isolate) { | 2123 bool LiveEditFunctionTracker::IsActive(Isolate* isolate) { |
2124 return false; | 2124 return false; |
2125 } | 2125 } |
2126 | 2126 |
2127 #endif // ENABLE_DEBUGGER_SUPPORT | 2127 #endif // ENABLE_DEBUGGER_SUPPORT |
2128 | 2128 |
2129 | 2129 |
2130 | 2130 |
2131 } } // namespace v8::internal | 2131 } } // namespace v8::internal |
OLD | NEW |