From e63bd7e38c6bc75b9a34ab820ee53422cdcf8e63 Mon Sep 17 00:00:00 2001 From: RSDuck Date: Thu, 23 Jul 2020 17:43:25 +0200 Subject: for some reason tabs and spaces were mixed --- src/ARMJIT_RegisterCache.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/ARMJIT_RegisterCache.h') diff --git a/src/ARMJIT_RegisterCache.h b/src/ARMJIT_RegisterCache.h index 0547c84..feb2d35 100644 --- a/src/ARMJIT_RegisterCache.h +++ b/src/ARMJIT_RegisterCache.h @@ -18,8 +18,8 @@ public: RegisterCache() {} - RegisterCache(T* compiler, FetchedInstr instrs[], int instrsCount, bool pcAllocatableAsSrc = false) - : Compiler(compiler), Instrs(instrs), InstrsCount(instrsCount) + RegisterCache(T* compiler, FetchedInstr instrs[], int instrsCount, bool pcAllocatableAsSrc = false) + : Compiler(compiler), Instrs(instrs), InstrsCount(instrsCount) { for (int i = 0; i < 16; i++) Mapping[i] = (Reg)-1; @@ -95,7 +95,7 @@ public: LiteralsLoaded = 0; } - void Prepare(bool thumb, int i) + void Prepare(bool thumb, int i) { FetchedInstr instr = Instrs[i]; @@ -175,23 +175,23 @@ public: DirtyRegs |= (LoadedRegs & instr.Info.DstRegs) & ~(1 << 15); } - static const Reg NativeRegAllocOrder[]; - static const int NativeRegsAvailable; + static const Reg NativeRegAllocOrder[]; + static const int NativeRegsAvailable; - Reg Mapping[16]; + Reg Mapping[16]; u32 LiteralValues[16]; u16 LiteralsLoaded = 0; - u32 NativeRegsUsed = 0; - u16 LoadedRegs = 0; - u16 DirtyRegs = 0; + u32 NativeRegsUsed = 0; + u16 LoadedRegs = 0; + u16 DirtyRegs = 0; u16 PCAllocatableAsSrc = 0; - T* Compiler; + T* Compiler; - FetchedInstr* Instrs; - int InstrsCount; + FetchedInstr* Instrs; + int InstrsCount; }; } -- cgit v1.2.3