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

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

Issue 1839843002: wasm: implemente WasmFrame::cast, fix inheritance (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix leftover bad change Created 4 years, 8 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
« no previous file with comments | « src/frames.h ('k') | no next file » | 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 241
242 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame( 242 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
243 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) { 243 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) {
244 } 244 }
245 245
246 inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator) 246 inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator)
247 : StandardFrame(iterator) {} 247 : StandardFrame(iterator) {}
248 248
249 inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator) 249 inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator)
250 : WasmFrame(iterator) {} 250 : StubFrame(iterator) {}
251 251
252 inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator) 252 inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator)
253 : WasmFrame(iterator) {} 253 : StubFrame(iterator) {}
254 254
255 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator) 255 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator)
256 : StandardFrame(iterator) { 256 : StandardFrame(iterator) {
257 } 257 }
258 258
259 259
260 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame( 260 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame(
261 StackFrameIteratorBase* iterator) : StandardFrame(iterator) { 261 StackFrameIteratorBase* iterator) : StandardFrame(iterator) {
262 } 262 }
263 263
(...skipping 29 matching lines...) Expand all
293 DCHECK(!done()); 293 DCHECK(!done());
294 DCHECK(frame_->is_java_script() || frame_->is_exit()); 294 DCHECK(frame_->is_java_script() || frame_->is_exit());
295 return frame_; 295 return frame_;
296 } 296 }
297 297
298 298
299 } // namespace internal 299 } // namespace internal
300 } // namespace v8 300 } // namespace v8
301 301
302 #endif // V8_FRAMES_INL_H_ 302 #endif // V8_FRAMES_INL_H_
OLDNEW
« no previous file with comments | « src/frames.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698