OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/debug/debug-frames.h" | 5 #include "src/debug/debug-frames.h" |
6 | 6 |
7 #include "src/frames-inl.h" | 7 #include "src/frames-inl.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 | 199 |
200 | 200 |
201 int DebugFrameHelper::FindIndexedNonNativeFrame(JavaScriptFrameIterator* it, | 201 int DebugFrameHelper::FindIndexedNonNativeFrame(JavaScriptFrameIterator* it, |
202 int index) { | 202 int index) { |
203 int count = -1; | 203 int count = -1; |
204 for (; !it->done(); it->Advance()) { | 204 for (; !it->done(); it->Advance()) { |
205 List<FrameSummary> frames(FLAG_max_inlining_levels + 1); | 205 List<FrameSummary> frames(FLAG_max_inlining_levels + 1); |
206 it->frame()->Summarize(&frames); | 206 it->frame()->Summarize(&frames); |
207 for (int i = frames.length() - 1; i >= 0; i--) { | 207 for (int i = frames.length() - 1; i >= 0; i--) { |
208 // Omit functions from native and extension scripts. | 208 // Omit functions from native and extension scripts. |
209 if (!frames[i].function()->IsSubjectToDebugging()) continue; | 209 if (!frames[i].function()->shared()->IsSubjectToDebugging()) continue; |
210 if (++count == index) return i; | 210 if (++count == index) return i; |
211 } | 211 } |
212 } | 212 } |
213 return -1; | 213 return -1; |
214 } | 214 } |
215 | 215 |
216 | 216 |
217 } // namespace internal | 217 } // namespace internal |
218 } // namespace v8 | 218 } // namespace v8 |
OLD | NEW |