Fixed recompiler's file naming convention to match citra file naming convention.

Fixed unnecessary double public block.
This commit is contained in:
Patrick Martin 2015-12-20 13:12:44 -08:00
parent 4e7234a1c4
commit 80027cc54f
36 changed files with 101 additions and 103 deletions

View file

@ -1,5 +1,5 @@
#include "ARMFuncs.h" #include "ARM_funcs.h"
#include "InstructionBlock.h" #include "instruction_block.h"
#include <functional> #include <functional>
ARMFuncs::ShiftTN ARMFuncs::DecodeImmShift(InstructionBlock* instruction, u32 type, u32 imm5) ARMFuncs::ShiftTN ARMFuncs::DecodeImmShift(InstructionBlock* instruction, u32 type, u32 imm5)

View file

@ -1,40 +1,39 @@
set(SRCS set(SRCS
main.cpp main.cpp
CodeGen.cpp code_gen.cpp
ModuleGen.cpp module_gen.cpp
Disassembler.cpp disassembler.cpp
InstructionBlock.cpp instruction_block.cpp
MachineState.cpp machine_state.cpp
TBAA.cpp tbaa.cpp
ARMFuncs.cpp ARM_funcs.cpp
BlockColors.cpp block_colors.cpp
Instructions/Instruction.cpp instructions/instruction.cpp
Instructions/MovShift.cpp instructions/mov_shift.cpp
Instructions/Branch.cpp instructions/branch.cpp
Instructions/Arithmetic.cpp instructions/arithmetic.cpp
Instructions/Ldr.cpp instructions/ldr.cpp
Instructions/Str.cpp instructions/str.cpp
) )
set(HEADERS set(HEADERS
CodeGen.h code_gen.h
ModuleGen.h module_gen.h
Disassembler.h disassembler.h
InstructionBlock.h instruction_block.h
MachineState.h machine_state.h
TBAA.h tbaa.h
BinarySearch.h binary_search.h
ARMFuncs.h ARM_funcs.h
BlockColors.h block_colors.h
Instructions/Types.h instructions/types.h
Instructions/Types.h instructions/instruction.h
Instructions/Instruction.h instructions/mov_shift.h
Instructions/MovShift.h instructions/branch.h
Instructions/Branch.h instructions/arithmetic.h
Instructions/Arithmetic.h instructions/ldr.h
Instructions/Ldr.h instructions/str.h
Instructions/Str.h
) )
create_directory_groups(${SRCS} ${HEADERS}) create_directory_groups(${SRCS} ${HEADERS})

View file

@ -1,7 +1,7 @@
#include "Branch.h" #include "branch.h"
#include "Disassembler.h" #include "disassembler.h"
#include "InstructionBlock.h" #include "instruction_block.h"
#include "ModuleGen.h" #include "module_gen.h"
static RegisterInstruction<Branch> register_instruction; static RegisterInstruction<Branch> register_instruction;

View file

@ -1,5 +1,5 @@
#include "Instruction.h" #include "instruction.h"
#include "Types.h" #include "types.h"
class Branch : public Instruction class Branch : public Instruction
{ {

View file

@ -1,10 +1,10 @@
#include "Instruction.h" #include "instruction.h"
#include "common/logging/log.h" #include "common/logging/log.h"
#include <cassert> #include <cassert>
#include "InstructionBlock.h" #include "instruction_block.h"
#include "ModuleGen.h" #include "module_gen.h"
#include "MachineState.h" #include "machine_state.h"
#include "BinarySearch.h" #include "binary_search.h"
Instruction::Instruction() Instruction::Instruction()
{ {

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "common/common_types.h" #include "common/common_types.h"
#include <initializer_list> #include <initializer_list>
#include "Types.h" #include "types.h"
class InstructionBlock; class InstructionBlock;
@ -77,7 +77,6 @@ class Instruction::FieldDefObject
{ {
public: public:
typedef void(*WriteFunctionType)(u32 value, void *field_address); typedef void(*WriteFunctionType)(u32 value, void *field_address);
public:
// Constant // Constant
FieldDefObject(u32 bit_count, u32 const_value); FieldDefObject(u32 bit_count, u32 const_value);
// Field // Field

View file

@ -1,10 +1,10 @@
#include "Ldr.h" #include "ldr.h"
#include "Disassembler.h" #include "disassembler.h"
#include "InstructionBlock.h" #include "instruction_block.h"
#include <llvm/IR/Value.h> #include <llvm/IR/Value.h>
#include <core/loader/loader.h> #include <core/loader/loader.h>
#include <core/mem_map.h> #include <core/mem_map.h>
#include "MachineState.h" #include "machine_state.h"
static RegisterInstruction<Ldr> register_instruction; static RegisterInstruction<Ldr> register_instruction;

View file

@ -1,5 +1,5 @@
#include "Instruction.h" #include "instruction.h"
#include "Types.h" #include "types.h"
#include <bitset> #include <bitset>
class Ldr : public Instruction class Ldr : public Instruction

View file

@ -1,10 +1,10 @@
#include "Str.h" #include "str.h"
#include "Disassembler.h" #include "disassembler.h"
#include "InstructionBlock.h" #include "instruction_block.h"
#include <llvm/IR/Value.h> #include <llvm/IR/Value.h>
#include <core/loader/loader.h> #include <core/loader/loader.h>
#include <core/mem_map.h> #include <core/mem_map.h>
#include "MachineState.h" #include "machine_state.h"
static RegisterInstruction<Str> register_instruction; static RegisterInstruction<Str> register_instruction;

View file

@ -1,5 +1,5 @@
#include "Instruction.h" #include "instruction.h"
#include "Types.h" #include "types.h"
#include <bitset> #include <bitset>
class Str : public Instruction class Str : public Instruction

View file

@ -1,7 +1,7 @@
#include "Arithmetic.h" #include "arithmetic.h"
#include "Disassembler.h" #include "disassembler.h"
#include <binary_translation/ARMFuncs.h> #include <binary_translation/ARM_funcs.h>
#include <binary_translation/InstructionBlock.h> #include <binary_translation/instruction_block.h>
static RegisterInstruction<Arithmetic> register_instruction; static RegisterInstruction<Arithmetic> register_instruction;

View file

@ -1,5 +1,5 @@
#include "Instruction.h" #include "instruction.h"
#include "Types.h" #include "types.h"
/* /*
* Data processing instructions * Data processing instructions

View file

@ -1,9 +1,9 @@
#include "MovShift.h" #include "mov_shift.h"
#include "Disassembler.h" #include "disassembler.h"
#include "InstructionBlock.h" #include "instruction_block.h"
#include "ModuleGen.h" #include "module_gen.h"
#include "ARMFuncs.h" #include "ARM_funcs.h"
#include <binary_translation/BinarySearch.h> #include <binary_translation/binary_search.h>
static RegisterInstruction<MovShift> register_instruction; static RegisterInstruction<MovShift> register_instruction;

View file

@ -1,5 +1,5 @@
#include "Instruction.h" #include "instruction.h"
#include "Types.h" #include "types.h"
/* /*
* Data processing instructions * Data processing instructions

View file

@ -1,6 +1,6 @@
#include "BlockColors.h" #include "block_colors.h"
#include <stack> #include <stack>
#include "InstructionBlock.h" #include "instruction_block.h"
#include <llvm/IR/Function.h> #include <llvm/IR/Function.h>
#include "common/logging/log.h" #include "common/logging/log.h"

View file

@ -1,5 +1,5 @@
#include "CodeGen.h" #include "code_gen.h"
#include "ModuleGen.h" #include "module_gen.h"
#include "core/loader/loader.h" #include "core/loader/loader.h"
#include "common/logging/log.h" #include "common/logging/log.h"

View file

@ -1,5 +1,5 @@
#include "Disassembler.h" #include "disassembler.h"
#include "Instructions/Instruction.h" #include "instructions/instruction.h"
#include <vector> #include <vector>
std::vector<RegisterInstructionBase::CreateFunctionType> g_read_functions; std::vector<RegisterInstructionBase::CreateFunctionType> g_read_functions;

View file

@ -1,9 +1,9 @@
#include "InstructionBlock.h" #include "instruction_block.h"
#include "ModuleGen.h" #include "module_gen.h"
#include "Instructions/Instruction.h" #include "instructions/instruction.h"
#include <sstream> #include <sstream>
#include <iomanip> #include <iomanip>
#include "MachineState.h" #include "machine_state.h"
InstructionBlock::InstructionBlock(ModuleGen* module, Instruction* instruction) InstructionBlock::InstructionBlock(ModuleGen* module, Instruction* instruction)
: module(module), : module(module),

View file

@ -2,7 +2,7 @@
#include <string> #include <string>
#include <common/common_types.h> #include <common/common_types.h>
#include <llvm/IR/IRBuilder.h> #include <llvm/IR/IRBuilder.h>
#include "ModuleGen.h" #include "module_gen.h"
namespace llvm namespace llvm
{ {

View file

@ -1,11 +1,11 @@
#include "MachineState.h" #include "machine_state.h"
#include "ModuleGen.h" #include "module_gen.h"
#include "Instructions/Types.h" #include "instructions/types.h"
#include <llvm/IR/GlobalValue.h> #include <llvm/IR/GlobalValue.h>
#include <llvm/IR/Constants.h> #include <llvm/IR/Constants.h>
#include <llvm/IR/LLVMContext.h> #include <llvm/IR/LLVMContext.h>
#include <llvm/IR/GlobalVariable.h> #include <llvm/IR/GlobalVariable.h>
#include "TBAA.h" #include "tbaa.h"
using namespace llvm; using namespace llvm;

View file

@ -5,7 +5,7 @@
#include "core/mem_map.h" #include "core/mem_map.h"
#include "core/hle/kernel/memory.h" #include "core/hle/kernel/memory.h"
#include "core/loader/loader.h" #include "core/loader/loader.h"
#include "codegen.h" #include "code_gen.h"
#include <llvm/Support/CommandLine.h> #include <llvm/Support/CommandLine.h>
namespace cl = llvm::cl; namespace cl = llvm::cl;

View file

@ -1,18 +1,18 @@
#include "ModuleGen.h" #include "module_gen.h"
#include "Disassembler.h" #include "disassembler.h"
#include "core/loader/loader.h" #include "core/loader/loader.h"
#include "core/mem_map.h" #include "core/mem_map.h"
#include "Instructions/Instruction.h" #include "instructions/instruction.h"
#include "Instructions/Types.h" #include "instructions/types.h"
#include "InstructionBlock.h" #include "instruction_block.h"
#include "common/logging/log.h" #include "common/logging/log.h"
#include <llvm/IR/Function.h> #include <llvm/IR/Function.h>
#include <llvm/IR/GlobalVariable.h> #include <llvm/IR/GlobalVariable.h>
#include <llvm/ADT/STLExtras.h> #include <llvm/ADT/STLExtras.h>
#include <stack> #include <stack>
#include "MachineState.h" #include "machine_state.h"
#include "TBAA.h" #include "tbaa.h"
#include "BlockColors.h" #include "block_colors.h"
using namespace llvm; using namespace llvm;

View file

@ -1,4 +1,4 @@
#include "TBAA.h" #include "tbaa.h"
#include <llvm/IR/MDBuilder.h> #include <llvm/IR/MDBuilder.h>
#include <llvm/IR/LLVMContext.h> #include <llvm/IR/LLVMContext.h>
#include <llvm/IR/Metadata.h> #include <llvm/IR/Metadata.h>

View file

@ -1,5 +1,5 @@
#pragma once #pragma once
#include "Instructions/Types.h" #include "instructions/types.h"
#include <llvm/IR/Instructions.h> #include <llvm/IR/Instructions.h>
namespace llvm namespace llvm

View file

@ -256,12 +256,12 @@ set(HEADERS
if(ENABLE_BINARY_TRANSLATION) if(ENABLE_BINARY_TRANSLATION)
set(SRCS set(SRCS
${SRCS} ${SRCS}
binary_translation/BinaryTranslationLoader.cpp binary_translation/binary_translation_loader.cpp
) )
set(HEADERS set(HEADERS
${HEADERS} ${HEADERS}
mem_map.h mem_map.h
binary_translation/BinaryTranslationLoader.h binary_translation/binary_translation_loader.h
) )
endif() endif()
create_directory_groups(${SRCS} ${HEADERS}) create_directory_groups(${SRCS} ${HEADERS})

View file

@ -24,7 +24,7 @@
#include "core/arm/skyeye_common/vfp/vfp.h" #include "core/arm/skyeye_common/vfp/vfp.h"
#if ENABLE_BINARY_TRANSLATION #if ENABLE_BINARY_TRANSLATION
#include "core/binary_translation/BinaryTranslationLoader.h" #include "core/binary_translation/binary_translation_loader.h"
#endif #endif
#include "core/gdbstub/gdbstub.h" #include "core/gdbstub/gdbstub.h"

View file

@ -1,4 +1,4 @@
#include "BinaryTranslationLoader.h" #include "binary_translation_loader.h"
#include "core/arm/skyeye_common/armstate.h" #include "core/arm/skyeye_common/armstate.h"
#include "core/arm/skyeye_common/arm_regformat.h" #include "core/arm/skyeye_common/arm_regformat.h"
#include "common/logging/log.h" #include "common/logging/log.h"

View file

@ -16,7 +16,7 @@
#include "core/loader/elf.h" #include "core/loader/elf.h"
#include "core/loader/ncch.h" #include "core/loader/ncch.h"
#if ENABLE_BINARY_TRANSLATION #if ENABLE_BINARY_TRANSLATION
#include "core/binary_translation/BinaryTranslationLoader.h" #include "core/binary_translation/binary_translation_loader.h"
#endif #endif
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////