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

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

Issue 2069423002: [builtins] Introduce a proper BUILTIN frame type. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix clobbered reg in mips Created 4 years, 6 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/ia32/builtins-ia32.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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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_
OLDNEW
« no previous file with comments | « src/frames.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698