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

Side by Side Diff: runtime/vm/stack_frame_x64.cc

Issue 8818001: Add 64-bit stubs to call into the runtime and to call native functions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/runtime_entry_x64.cc ('k') | runtime/vm/stub_code.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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" 5 #include "vm/globals.h"
6 #if defined(TARGET_ARCH_X64) 6 #if defined(TARGET_ARCH_X64)
7 7
8 #include "vm/stack_frame.h" 8 #include "vm/stack_frame.h"
9 9
10 namespace dart { 10 namespace dart {
11 11
12 // The constant kExitLinkOffsetInEntryFrame must be kept in sync with the
13 // code in the InvokeDartCode stub.
14 static const int kExitLinkOffsetInEntryFrame = -8 * kWordSize;
15
16
12 intptr_t StackFrame::PcAddressOffsetFromSp() { 17 intptr_t StackFrame::PcAddressOffsetFromSp() {
13 UNIMPLEMENTED(); 18 UNIMPLEMENTED();
14 return 0; 19 return 0;
15 } 20 }
16 21
17 22
18 uword StackFrame::GetCallerFp() const { 23 uword StackFrame::GetCallerFp() const {
19 UNIMPLEMENTED(); 24 UNIMPLEMENTED();
20 return 0; 25 return 0;
21 } 26 }
(...skipping 16 matching lines...) Expand all
38 } 43 }
39 44
40 45
41 void StackFrameIterator::SetupNextExitFrameData() { 46 void StackFrameIterator::SetupNextExitFrameData() {
42 UNIMPLEMENTED(); 47 UNIMPLEMENTED();
43 } 48 }
44 49
45 } // namespace dart 50 } // namespace dart
46 51
47 #endif // defined TARGET_ARCH_X64 52 #endif // defined TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « runtime/vm/runtime_entry_x64.cc ('k') | runtime/vm/stub_code.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698