DSPJitRegCache: Make class variables conform to the coding style
This commit is contained in:
parent
6aef0630f7
commit
3b4290b5b7
File diff suppressed because it is too large
Load Diff
|
@ -39,7 +39,7 @@ enum DSPJitSignExtend
|
||||||
class DSPJitRegCache
|
class DSPJitRegCache
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DSPJitRegCache(DSPEmitter& _emitter);
|
DSPJitRegCache(DSPEmitter& emitter);
|
||||||
|
|
||||||
// For branching into multiple control flows
|
// For branching into multiple control flows
|
||||||
DSPJitRegCache(const DSPJitRegCache& cache);
|
DSPJitRegCache(const DSPJitRegCache& cache);
|
||||||
|
@ -176,14 +176,14 @@ private:
|
||||||
|
|
||||||
static const std::array<Gen::X64Reg, 15> m_allocation_order;
|
static const std::array<Gen::X64Reg, 15> m_allocation_order;
|
||||||
|
|
||||||
std::array<DynamicReg, 37> regs;
|
std::array<DynamicReg, 37> m_regs;
|
||||||
std::array<X64CachedReg, 16> xregs;
|
std::array<X64CachedReg, 16> m_xregs;
|
||||||
|
|
||||||
DSPEmitter& emitter;
|
DSPEmitter& m_emitter;
|
||||||
bool temporary;
|
bool m_is_temporary;
|
||||||
bool merged;
|
bool m_is_merged;
|
||||||
|
|
||||||
int use_ctr;
|
int m_use_ctr;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace x86
|
} // namespace x86
|
||||||
|
|
Loading…
Reference in New Issue