OLD | NEW |
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 Loading... |
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 |
OLD | NEW |