OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 ARM instructions if we are not generating a native | 5 // Declares a Simulator for ARM instructions if we are not generating a native |
6 // ARM binary. This Simulator allows us to run and debug ARM code generation on | 6 // ARM binary. This Simulator allows us to run and debug ARM code generation on |
7 // regular desktop machines. | 7 // 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 ARM HW platform. | 10 // on a ARM HW platform. |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 static uword CompareExchange(uword* address, | 77 static uword CompareExchange(uword* address, |
78 uword compare_value, | 78 uword compare_value, |
79 uword new_value); | 79 uword new_value); |
80 | 80 |
81 // Runtime and native call support. | 81 // Runtime and native call support. |
82 enum CallKind { | 82 enum CallKind { |
83 kRuntimeCall, | 83 kRuntimeCall, |
84 kLeafRuntimeCall, | 84 kLeafRuntimeCall, |
85 kNativeCall | 85 kNativeCall |
86 }; | 86 }; |
| 87 // TODO(regis): In order to simulate leaf runtime calls taking floating point |
| 88 // arguments, we need to add a 'kLeafFloatRuntimeCall' CallKind and pass the |
| 89 // number of arguments. |
87 static uword RedirectExternalReference(uword function, CallKind call_kind); | 90 static uword RedirectExternalReference(uword function, CallKind call_kind); |
88 | 91 |
89 void Longjmp(uword pc, | 92 void Longjmp(uword pc, |
90 uword sp, | 93 uword sp, |
91 uword fp, | 94 uword fp, |
92 RawObject* raw_exception, | 95 RawObject* raw_exception, |
93 RawObject* raw_stacktrace); | 96 RawObject* raw_stacktrace); |
94 | 97 |
95 private: | 98 private: |
96 // Known bad pc value to ensure that the simulator does not execute | 99 // Known bad pc value to ensure that the simulator does not execute |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 } | 241 } |
239 | 242 |
240 friend class SimulatorDebugger; | 243 friend class SimulatorDebugger; |
241 friend class SimulatorSetjmpBuffer; | 244 friend class SimulatorSetjmpBuffer; |
242 DISALLOW_COPY_AND_ASSIGN(Simulator); | 245 DISALLOW_COPY_AND_ASSIGN(Simulator); |
243 }; | 246 }; |
244 | 247 |
245 } // namespace dart | 248 } // namespace dart |
246 | 249 |
247 #endif // VM_SIMULATOR_ARM_H_ | 250 #endif // VM_SIMULATOR_ARM_H_ |
OLD | NEW |