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

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

Issue 1764603003: Handle stack frames differently inside and on the boundary of wasm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 9 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.cc ('k') | src/log.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 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 : JavaScriptFrame(iterator) {} 235 : JavaScriptFrame(iterator) {}
236 236
237 237
238 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame( 238 inline ArgumentsAdaptorFrame::ArgumentsAdaptorFrame(
239 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) { 239 StackFrameIteratorBase* iterator) : JavaScriptFrame(iterator) {
240 } 240 }
241 241
242 inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator) 242 inline WasmFrame::WasmFrame(StackFrameIteratorBase* iterator)
243 : StandardFrame(iterator) {} 243 : StandardFrame(iterator) {}
244 244
245 inline WasmToJsFrame::WasmToJsFrame(StackFrameIteratorBase* iterator)
246 : WasmFrame(iterator) {}
247
248 inline JsToWasmFrame::JsToWasmFrame(StackFrameIteratorBase* iterator)
249 : WasmFrame(iterator) {}
250
245 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator) 251 inline InternalFrame::InternalFrame(StackFrameIteratorBase* iterator)
246 : StandardFrame(iterator) { 252 : StandardFrame(iterator) {
247 } 253 }
248 254
249 255
250 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame( 256 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame(
251 StackFrameIteratorBase* iterator) : StandardFrame(iterator) { 257 StackFrameIteratorBase* iterator) : StandardFrame(iterator) {
252 } 258 }
253 259
254 260
(...skipping 28 matching lines...) Expand all
283 DCHECK(!done()); 289 DCHECK(!done());
284 DCHECK(frame_->is_java_script() || frame_->is_exit()); 290 DCHECK(frame_->is_java_script() || frame_->is_exit());
285 return frame_; 291 return frame_;
286 } 292 }
287 293
288 294
289 } // namespace internal 295 } // namespace internal
290 } // namespace v8 296 } // namespace v8
291 297
292 #endif // V8_FRAMES_INL_H_ 298 #endif // V8_FRAMES_INL_H_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698