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

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

Issue 2106113002: Revert of [builtins] New frame type for exits to C++ builtins (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 inline EntryConstructFrame::EntryConstructFrame( 91 inline EntryConstructFrame::EntryConstructFrame(
92 StackFrameIteratorBase* iterator) 92 StackFrameIteratorBase* iterator)
93 : EntryFrame(iterator) { 93 : EntryFrame(iterator) {
94 } 94 }
95 95
96 96
97 inline ExitFrame::ExitFrame(StackFrameIteratorBase* iterator) 97 inline ExitFrame::ExitFrame(StackFrameIteratorBase* iterator)
98 : StackFrame(iterator) { 98 : StackFrame(iterator) {
99 } 99 }
100 100
101 inline BuiltinExitFrame::BuiltinExitFrame(StackFrameIteratorBase* iterator)
102 : ExitFrame(iterator) {}
103
104 inline Object* BuiltinExitFrame::function_slot_object() const {
105 return Memory::Object_at(fp() + BuiltinExitFrameConstants::kTargetOffset);
106 }
107 101
108 inline StandardFrame::StandardFrame(StackFrameIteratorBase* iterator) 102 inline StandardFrame::StandardFrame(StackFrameIteratorBase* iterator)
109 : StackFrame(iterator) { 103 : StackFrame(iterator) {
110 } 104 }
111 105
112 106
113 inline Object* StandardFrame::GetExpression(int index) const { 107 inline Object* StandardFrame::GetExpression(int index) const {
114 return Memory::Object_at(GetExpressionAddress(index)); 108 return Memory::Object_at(GetExpressionAddress(index));
115 } 109 }
116 110
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 DCHECK(!done()); 308 DCHECK(!done());
315 DCHECK(frame_->is_java_script() || frame_->is_exit()); 309 DCHECK(frame_->is_java_script() || frame_->is_exit());
316 return frame_; 310 return frame_;
317 } 311 }
318 312
319 313
320 } // namespace internal 314 } // namespace internal
321 } // namespace v8 315 } // namespace v8
322 316
323 #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