OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |