2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 02:43:11 +00:00
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2015-05-11 01:16:05 +00:00
|
|
|
#include "Common/Common.h"
|
2015-05-08 21:28:03 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
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();
|
2015-01-30 23:45:51 +00:00
|
|
|
void FastCheckGatherPipe();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
bool IsEmpty();
|
|
|
|
|
|
|
|
// Write
|
2015-04-22 03:01:25 +00:00
|
|
|
void Write8(const u8 _iValue);
|
|
|
|
void Write16(const u16 _iValue);
|
|
|
|
void Write32(const u32 _iValue);
|
|
|
|
void Write64(const u64 _iValue);
|
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);
|
2014-09-11 17:00:40 +00:00
|
|
|
}
|