| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 | 226 |
| 227 | 227 |
| 228 inline InterpretedFrame::InterpretedFrame(StackFrameIteratorBase* iterator) | 228 inline InterpretedFrame::InterpretedFrame(StackFrameIteratorBase* iterator) |
| 229 : JavaScriptFrame(iterator) {} | 229 : JavaScriptFrame(iterator) {} |
| 230 | 230 |
| 231 | 231 |
| 232 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame( | 232 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame( |
| 233 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) { | 233 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) { |
| 234 } | 234 } |
| 235 | 235 |
| 236 inline BuiltinFrame::BuiltinFrame(StackFrameIteratorBase* iterator) |
| 237 : JavaScriptFrame(iterator) {} |
| 238 |
| 236 inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator) | 239 inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator) |
| 237 : StandardFrame(iterator) {} | 240 : StandardFrame(iterator) {} |
| 238 | 241 |
| 239 inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator) | 242 inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator) |
| 240 : StubFrame(iterator) {} | 243 : StubFrame(iterator) {} |
| 241 | 244 |
| 242 inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator) | 245 inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator) |
| 243 : StubFrame(iterator) {} | 246 : StubFrame(iterator) {} |
| 244 | 247 |
| 245 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator) | 248 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator) |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 DCHECK(!done()); | 308 DCHECK(!done()); |
| 306 DCHECK(frame_->is_java_script() || frame_->is_exit()); | 309 DCHECK(frame_->is_java_script() || frame_->is_exit()); |
| 307 return frame_; | 310 return frame_; |
| 308 } | 311 } |
| 309 | 312 |
| 310 | 313 |
| 311 } // namespace internal | 314 } // namespace internal |
| 312 } // namespace v8 | 315 } // namespace v8 |
| 313 | 316 |
| 314 #endif // V8_FRAMES_INL_H_ | 317 #endif // V8_FRAMES_INL_H_ |
| OLD | NEW |