~ppsspp/ppsspp/ppsspp_1.3.0

« back to all changes in this revision

Viewing changes to Core/MIPS/MIPSDis.h

  • Committer: Sérgio Benjamim
  • Date: 2017-01-02 00:12:05 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20170102001205-cxbta9za203nmjwm
1.3.0 source (from ppsspp_1.3.0-r160.p5.l1762.a165.t83~56~ubuntu16.04.1.tar.xz).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2012- PPSSPP Project.
 
2
 
 
3
// This program is free software: you can redistribute it and/or modify
 
4
// it under the terms of the GNU General Public License as published by
 
5
// the Free Software Foundation, version 2.0 or later versions.
 
6
 
 
7
// This program is distributed in the hope that it will be useful,
 
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
// GNU General Public License 2.0 for more details.
 
11
 
 
12
// A copy of the GPL 2.0 should have been included with the program.
 
13
// If not, see http://www.gnu.org/licenses/
 
14
 
 
15
// Official git repository and contact information can be found at
 
16
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
 
17
 
 
18
#pragma once
 
19
 
 
20
#include "Common/CommonTypes.h"
 
21
#include "Core/MIPS/MIPS.h"
 
22
 
 
23
extern u32 disPC;
 
24
 
 
25
namespace MIPSDis
 
26
{
 
27
        void Dis_Unknown(MIPSOpcode op, char *out);
 
28
        void Dis_Unimpl(MIPSOpcode op, char *out);
 
29
        void Dis_Syscall(MIPSOpcode op, char *out);
 
30
 
 
31
        void Dis_mxc1(MIPSOpcode op, char *out);
 
32
        void Dis_addi(MIPSOpcode op, char *out);
 
33
        void Dis_addu(MIPSOpcode op, char *out);
 
34
        void Dis_RelBranch2(MIPSOpcode op, char *out);
 
35
        void Dis_RelBranch(MIPSOpcode op, char *out);
 
36
        void Dis_Generic(MIPSOpcode op, char *out);
 
37
        void Dis_Cache(MIPSOpcode op, char *out);
 
38
        void Dis_IType(MIPSOpcode op, char *out);
 
39
        void Dis_IType1(MIPSOpcode op, char *out);
 
40
        void Dis_ITypeMem(MIPSOpcode op, char *out);
 
41
        void Dis_RType2(MIPSOpcode op, char *out);
 
42
        void Dis_RType3(MIPSOpcode op, char *out);
 
43
        void Dis_MulDivType(MIPSOpcode op, char *out);
 
44
        void Dis_ShiftType(MIPSOpcode op, char *out);
 
45
        void Dis_VarShiftType(MIPSOpcode op, char *out);
 
46
        void Dis_FPU3op(MIPSOpcode op, char *out);
 
47
        void Dis_FPU2op(MIPSOpcode op, char *out);
 
48
        void Dis_FPULS(MIPSOpcode op, char *out);
 
49
        void Dis_FPUComp(MIPSOpcode op, char *out);
 
50
        void Dis_FPUBranch(MIPSOpcode op, char *out);
 
51
        void Dis_ori(MIPSOpcode op, char *out);
 
52
        void Dis_Special3(MIPSOpcode op, char *out);
 
53
 
 
54
        void Dis_ToHiloTransfer(MIPSOpcode op, char *out);
 
55
        void Dis_FromHiloTransfer(MIPSOpcode op, char *out);
 
56
        void Dis_JumpType(MIPSOpcode op, char *out);
 
57
        void Dis_JumpRegType(MIPSOpcode op, char *out);
 
58
 
 
59
        void Dis_Allegrex(MIPSOpcode op, char *out);
 
60
        void Dis_Allegrex2(MIPSOpcode op, char *out);
 
61
 
 
62
        void Dis_Emuhack(MIPSOpcode op, char *out);
 
63
}