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

Side by Side Diff: src/frames-inl.h

Issue 1407513003: [Interpreter]: Basic support for iterating interpreter stack frames for GC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
« src/frames.cc ('K') | « src/frames.cc ('k') | src/objects.h » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_FRAMES_INL_H_ 5 #ifndef V8_FRAMES_INL_H_
6 #define V8_FRAMES_INL_H_ 6 #define V8_FRAMES_INL_H_
7 7
8 #include "src/frames.h" 8 #include "src/frames.h"
9 #include "src/isolate.h" 9 #include "src/isolate.h"
10 #include "src/objects-inl.h" 10 #include "src/objects-inl.h"
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 inline StubFrame::StubFrame(StackFrameIteratorBase* iterator) 227 inline StubFrame::StubFrame(StackFrameIteratorBase* iterator)
228 : StandardFrame(iterator) { 228 : StandardFrame(iterator) {
229 } 229 }
230 230
231 231
232 inline OptimizedFrame::OptimizedFrame(StackFrameIteratorBase* iterator) 232 inline OptimizedFrame::OptimizedFrame(StackFrameIteratorBase* iterator)
233 : JavaScriptFrame(iterator) { 233 : JavaScriptFrame(iterator) {
234 } 234 }
235 235
236 236
237 inline InterpretedFrame::InterpretedFrame(StackFrameIteratorBase* iterator)
238 : JavaScriptFrame(iterator) {}
239
240
237 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame( 241 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
238 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) { 242 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) {
239 } 243 }
240 244
241 245
242 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator) 246 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator)
243 : StandardFrame(iterator) { 247 : StandardFrame(iterator) {
244 } 248 }
245 249
246 250
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 DCHECK(!done()); 287 DCHECK(!done());
284 DCHECK(frame_->is_java_script() || frame_->is_exit()); 288 DCHECK(frame_->is_java_script() || frame_->is_exit());
285 return frame_; 289 return frame_;
286 } 290 }
287 291
288 292
289 } // namespace internal 293 } // namespace internal
290 } // namespace v8 294 } // namespace v8
291 295
292 #endif // V8_FRAMES_INL_H_ 296 #endif // V8_FRAMES_INL_H_
OLDNEW
« src/frames.cc ('K') | « src/frames.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698