diff options
Diffstat (limited to 'src/core/arm/arm_interface.h')
| -rw-r--r-- | src/core/arm/arm_interface.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index c40771c97..8e40702cc 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h | |||
| @@ -78,7 +78,7 @@ public: | |||
| 78 | * @param addr Start address of the cache range to clear | 78 | * @param addr Start address of the cache range to clear |
| 79 | * @param size Size of the cache range to clear, starting at addr | 79 | * @param size Size of the cache range to clear, starting at addr |
| 80 | */ | 80 | */ |
| 81 | virtual void InvalidateCacheRange(VAddr addr, std::size_t size) = 0; | 81 | virtual void InvalidateCacheRange(u64 addr, std::size_t size) = 0; |
| 82 | 82 | ||
| 83 | /** | 83 | /** |
| 84 | * Notifies CPU emulation that the current page table has changed. | 84 | * Notifies CPU emulation that the current page table has changed. |
| @@ -149,9 +149,9 @@ public: | |||
| 149 | */ | 149 | */ |
| 150 | virtual void SetPSTATE(u32 pstate) = 0; | 150 | virtual void SetPSTATE(u32 pstate) = 0; |
| 151 | 151 | ||
| 152 | virtual VAddr GetTlsAddress() const = 0; | 152 | virtual u64 GetTlsAddress() const = 0; |
| 153 | 153 | ||
| 154 | virtual void SetTlsAddress(VAddr address) = 0; | 154 | virtual void SetTlsAddress(u64 address) = 0; |
| 155 | 155 | ||
| 156 | /** | 156 | /** |
| 157 | * Gets the value within the TPIDR_EL0 (read/write software thread ID) register. | 157 | * Gets the value within the TPIDR_EL0 (read/write software thread ID) register. |
| @@ -214,7 +214,7 @@ protected: | |||
| 214 | 214 | ||
| 215 | static void SymbolicateBacktrace(Core::System& system, std::vector<BacktraceEntry>& out); | 215 | static void SymbolicateBacktrace(Core::System& system, std::vector<BacktraceEntry>& out); |
| 216 | const Kernel::DebugWatchpoint* MatchingWatchpoint( | 216 | const Kernel::DebugWatchpoint* MatchingWatchpoint( |
| 217 | VAddr addr, u64 size, Kernel::DebugWatchpointType access_type) const; | 217 | u64 addr, u64 size, Kernel::DebugWatchpointType access_type) const; |
| 218 | 218 | ||
| 219 | virtual Dynarmic::HaltReason RunJit() = 0; | 219 | virtual Dynarmic::HaltReason RunJit() = 0; |
| 220 | virtual Dynarmic::HaltReason StepJit() = 0; | 220 | virtual Dynarmic::HaltReason StepJit() = 0; |