mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 09:31:04 +00:00
Renamed DataProcessing to MovShift, reducing its scope
This commit is contained in:
parent
8d21d9c6a8
commit
3151d6a99b
@ -9,7 +9,7 @@ set(SRCS
|
||||
ARMFuncs.cpp
|
||||
|
||||
Instructions/Instruction.cpp
|
||||
Instructions/DataProcessing.cpp
|
||||
Instructions/MovShift.cpp
|
||||
Instructions/Branch.cpp
|
||||
)
|
||||
set(HEADERS
|
||||
@ -24,7 +24,7 @@ set(HEADERS
|
||||
|
||||
Instructions/Types.h
|
||||
Instructions/Instruction.h
|
||||
Instructions/DataProcessing.h
|
||||
Instructions/MovShift.h
|
||||
Instructions/Branch.h
|
||||
)
|
||||
|
||||
@ -35,4 +35,4 @@ add_executable(binary_translate ${SRCS} ${HEADERS})
|
||||
target_link_libraries(binary_translate ${llvm_libs})
|
||||
target_link_libraries(binary_translate core common video_core)
|
||||
target_link_libraries(binary_translate ${GLFW_LIBRARIES} ${OPENGL_gl_LIBRARY} inih)
|
||||
target_link_libraries(binary_translate ${PLATFORM_LIBRARIES})
|
||||
target_link_libraries(binary_translate ${PLATFORM_LIBRARIES})
|
||||
|
@ -1,15 +1,15 @@
|
||||
#include "DataProcessing.h"
|
||||
#include "MovShift.h"
|
||||
#include "Disassembler.h"
|
||||
#include "InstructionBlock.h"
|
||||
#include "ModuleGen.h"
|
||||
#include "ARMFuncs.h"
|
||||
|
||||
static RegisterInstruction<DataProcessing> register_instruction;
|
||||
static RegisterInstruction<MovShift> register_instruction;
|
||||
|
||||
bool DataProcessing::Decode()
|
||||
bool MovShift::Decode()
|
||||
{
|
||||
// Mov and shifts must have zeroes at some operands of different data processing instructions
|
||||
if (ReadFields({ CondDef(), FieldDef<3>(0), FieldDef<4>((u32)ShortOpType::MoveAndShifts), FieldDef<1>(&s), FieldDef<4>(0),
|
||||
if (ReadFields({ CondDef(), FieldDef<3>(0), FieldDef<4>(13), FieldDef<1>(&s), FieldDef<4>(0),
|
||||
FieldDef<4>(&rd), FieldDef<5>(&imm5), FieldDef<2>(&op2), FieldDef<1>(0), FieldDef<4>(&rm) }))
|
||||
{
|
||||
form = Form::Register;
|
||||
@ -17,17 +17,10 @@ bool DataProcessing::Decode()
|
||||
if (rd == Register::PC && s) return false; // SEE SUBS PC, LR and related instructions;
|
||||
return true;
|
||||
}
|
||||
if (ReadFields({ CondDef(), FieldDef<3>(1), FieldDef<4>(&short_op), FieldDef<1>(&s), FieldDef<4>(&rn),
|
||||
FieldDef<4>(&rd), FieldDef<12>(&imm12) }))
|
||||
{
|
||||
// TODO: not implemented
|
||||
form = Form::Immediate;
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void DataProcessing::GenerateInstructionCode(InstructionBlock* instruction_block)
|
||||
void MovShift::GenerateInstructionCode(InstructionBlock* instruction_block)
|
||||
{
|
||||
auto ir_builder = instruction_block->IrBuilder();
|
||||
|
@ -6,18 +6,9 @@
|
||||
* ARMv7-A 5.2.1 (register), 5.2.2 (register-shifted register, 5.2.3 (immediate)
|
||||
*/
|
||||
|
||||
class DataProcessing : public Instruction
|
||||
class MovShift : public Instruction
|
||||
{
|
||||
public:
|
||||
/*
|
||||
* The 4 bit op types (1 = 0001x: BitwiseXor, etc...)
|
||||
*/
|
||||
enum class ShortOpType
|
||||
{
|
||||
BitwiseAnd = 0, BitwiseXor, Subtract, RevSubtract, Add, AddWithCarry, SubtractWithCarry, ReverseSubtractWithCarry,
|
||||
// Compare, Test, Misc
|
||||
BitwiseOr = 12, MoveAndShifts, BitwiseBitClear, BitwiseNot
|
||||
};
|
||||
enum class Op2Type
|
||||
{
|
||||
MoveAndLSL, LSR, ASR, RRXAndROR
|
||||
@ -32,7 +23,6 @@ public:
|
||||
void GenerateInstructionCode(InstructionBlock* instruction_block) override;
|
||||
private:
|
||||
Form form;
|
||||
ShortOpType short_op;
|
||||
bool s;
|
||||
Register rn;
|
||||
Register rd;
|
Loading…
Reference in New Issue
Block a user