OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // Declares a Simulator for ARM64 instructions if we are not generating a native | 5 // Declares a Simulator for ARM64 instructions if we are not generating a native |
6 // ARM64 binary. This Simulator allows us to run and debug ARM64 code generation | 6 // ARM64 binary. This Simulator allows us to run and debug ARM64 code generation |
7 // on regular desktop machines. | 7 // on regular desktop machines. |
8 // Dart calls into generated code by "calling" the InvokeDartCode stub, | 8 // Dart calls into generated code by "calling" the InvokeDartCode stub, |
9 // which will start execution in the Simulator or forwards to the real entry | 9 // which will start execution in the Simulator or forwards to the real entry |
10 // on a ARM64 HW platform. | 10 // on a ARM64 HW platform. |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 int64_t get_last_pc() const; | 73 int64_t get_last_pc() const; |
74 void set_pc(int64_t pc); | 74 void set_pc(int64_t pc); |
75 | 75 |
76 // Accessors to the internal simulator stack base and top. | 76 // Accessors to the internal simulator stack base and top. |
77 uword StackBase() const { return reinterpret_cast<uword>(stack_); } | 77 uword StackBase() const { return reinterpret_cast<uword>(stack_); } |
78 uword StackTop() const; | 78 uword StackTop() const; |
79 | 79 |
80 // Accessor to the instruction counter. | 80 // Accessor to the instruction counter. |
81 uint64_t get_icount() const { return icount_; } | 81 uint64_t get_icount() const { return icount_; } |
82 | 82 |
83 // The isolate's top_exit_frame_info refers to a Dart frame in the simulator | 83 // The thread's top_exit_frame_info refers to a Dart frame in the simulator |
84 // stack. The simulator's top_exit_frame_info refers to a C++ frame in the | 84 // stack. The simulator's top_exit_frame_info refers to a C++ frame in the |
85 // native stack. | 85 // native stack. |
86 uword top_exit_frame_info() const { return top_exit_frame_info_; } | 86 uword top_exit_frame_info() const { return top_exit_frame_info_; } |
87 void set_top_exit_frame_info(uword value) { top_exit_frame_info_ = value; } | 87 void set_top_exit_frame_info(uword value) { top_exit_frame_info_ = value; } |
88 | 88 |
89 // Call on program start. | 89 // Call on program start. |
90 static void InitOnce(); | 90 static void InitOnce(); |
91 | 91 |
92 // Dart generally calls into generated code with 4 parameters. This is a | 92 // Dart generally calls into generated code with 4 parameters. This is a |
93 // convenience function, which sets up the simulator state and grabs the | 93 // convenience function, which sets up the simulator state and grabs the |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 } | 276 } |
277 | 277 |
278 friend class SimulatorDebugger; | 278 friend class SimulatorDebugger; |
279 friend class SimulatorSetjmpBuffer; | 279 friend class SimulatorSetjmpBuffer; |
280 DISALLOW_COPY_AND_ASSIGN(Simulator); | 280 DISALLOW_COPY_AND_ASSIGN(Simulator); |
281 }; | 281 }; |
282 | 282 |
283 } // namespace dart | 283 } // namespace dart |
284 | 284 |
285 #endif // VM_SIMULATOR_ARM64_H_ | 285 #endif // VM_SIMULATOR_ARM64_H_ |
OLD | NEW |