2013-04-17 22:43:11 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#ifndef _GPFIFO_H
|
|
|
|
#define _GPFIFO_H
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
class PointerWrap;
|
|
|
|
|
|
|
|
namespace GPFifo
|
|
|
|
{
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
GATHER_PIPE_SIZE = 32
|
|
|
|
};
|
|
|
|
|
2009-02-07 16:40:19 +00:00
|
|
|
extern u8 GC_ALIGNED32(m_gatherPipe[GATHER_PIPE_SIZE*16]); //more room, for the fastmodes
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// pipe counter
|
|
|
|
extern u32 m_gatherPipeCount;
|
|
|
|
|
|
|
|
// Init
|
|
|
|
void Init();
|
|
|
|
void DoState(PointerWrap &p);
|
|
|
|
|
|
|
|
// ResetGatherPipe
|
|
|
|
void ResetGatherPipe();
|
|
|
|
void CheckGatherPipe();
|
|
|
|
|
|
|
|
bool IsEmpty();
|
|
|
|
|
|
|
|
// Write
|
2009-02-28 01:26:56 +00:00
|
|
|
void Write8(const u8 _iValue, const u32 _iAddress);
|
|
|
|
void Write16(const u16 _iValue, const u32 _iAddress);
|
|
|
|
void Write32(const u32 _iValue, const u32 _iAddress);
|
|
|
|
void Write64(const u64 _iValue, const u32 _iAddress);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// These expect pre-byteswapped values
|
|
|
|
// Also there's an upper limit of about 512 per batch
|
|
|
|
// Most likely these should be inlined into JIT instead
|
2009-02-28 01:26:56 +00:00
|
|
|
void FastWrite8(const u8 _iValue);
|
|
|
|
void FastWrite16(const u16 _iValue);
|
|
|
|
void FastWrite32(const u32 _iValue);
|
|
|
|
void FastWrite64(const u64 _iValue);
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|