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

Side by Side Diff: src/debug/debug-frames.cc

Issue 1417213005: Remove several JSFunction delegator functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | « src/debug/debug.cc ('k') | src/debug/debug-scopes.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 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
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
OLDNEW
« no previous file with comments | « src/debug/debug.cc ('k') | src/debug/debug-scopes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698