| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 kNativeCall | 100 kNativeCall |
| 101 }; | 101 }; |
| 102 static uword RedirectExternalReference(uword function, | 102 static uword RedirectExternalReference(uword function, |
| 103 CallKind call_kind, | 103 CallKind call_kind, |
| 104 int argument_count); | 104 int argument_count); |
| 105 | 105 |
| 106 void Longjmp(uword pc, | 106 void Longjmp(uword pc, |
| 107 uword sp, | 107 uword sp, |
| 108 uword fp, | 108 uword fp, |
| 109 RawObject* raw_exception, | 109 RawObject* raw_exception, |
| 110 RawObject* raw_stacktrace, | 110 RawObject* raw_stacktrace); |
| 111 Isolate* isolate); | |
| 112 | 111 |
| 113 private: | 112 private: |
| 114 // Known bad pc value to ensure that the simulator does not execute | 113 // Known bad pc value to ensure that the simulator does not execute |
| 115 // without being properly setup. | 114 // without being properly setup. |
| 116 static const uword kBadLR = -1; | 115 static const uword kBadLR = -1; |
| 117 // A pc value used to signal the simulator to stop execution. Generally | 116 // A pc value used to signal the simulator to stop execution. Generally |
| 118 // the lr is set to this value on transition from native C code to | 117 // the lr is set to this value on transition from native C code to |
| 119 // simulated execution, so that the simulator can "return" to the native | 118 // simulated execution, so that the simulator can "return" to the native |
| 120 // C code. | 119 // C code. |
| 121 static const uword kEndSimulatingPC = -2; | 120 static const uword kEndSimulatingPC = -2; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 } | 223 } |
| 225 | 224 |
| 226 friend class SimulatorDebugger; | 225 friend class SimulatorDebugger; |
| 227 friend class SimulatorSetjmpBuffer; | 226 friend class SimulatorSetjmpBuffer; |
| 228 DISALLOW_COPY_AND_ASSIGN(Simulator); | 227 DISALLOW_COPY_AND_ASSIGN(Simulator); |
| 229 }; | 228 }; |
| 230 | 229 |
| 231 } // namespace dart | 230 } // namespace dart |
| 232 | 231 |
| 233 #endif // VM_SIMULATOR_ARM64_H_ | 232 #endif // VM_SIMULATOR_ARM64_H_ |
| OLD | NEW |