arm_types: Move into arm folder (#25)
This commit is contained in:
parent
b40d19c3b7
commit
5bc9ce544f
9 changed files with 9 additions and 9 deletions
|
@ -7,7 +7,7 @@ set(SRCS
|
|||
backend_x64/jitstate.cpp
|
||||
backend_x64/reg_alloc.cpp
|
||||
common/memory_pool.cpp
|
||||
frontend/arm_types.cpp
|
||||
frontend/arm/types.cpp
|
||||
frontend/disassembler/disassembler_arm.cpp
|
||||
frontend/disassembler/disassembler_thumb.cpp
|
||||
frontend/ir/basic_block.cpp
|
||||
|
@ -56,7 +56,7 @@ set(HEADERS
|
|||
common/string_util.h
|
||||
frontend/arm/FPSCR.h
|
||||
frontend/arm/PSR.h
|
||||
frontend/arm_types.h
|
||||
frontend/arm/types.h
|
||||
frontend/decoder/arm.h
|
||||
frontend/decoder/decoder_detail.h
|
||||
frontend/decoder/thumb16.h
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "backend_x64/abi.h"
|
||||
#include "backend_x64/emit_x64.h"
|
||||
#include "backend_x64/jitstate.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
#include "frontend/ir/basic_block.h"
|
||||
#include "frontend/ir/location_descriptor.h"
|
||||
#include "frontend/ir/microinstruction.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <array>
|
||||
|
||||
#include "common/bit_util.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
|
||||
namespace Dynarmic {
|
||||
namespace Arm {
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include "common/bit_util.h"
|
||||
#include "common/string_util.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
#include "frontend/decoder/arm.h"
|
||||
#include "frontend/decoder/vfp2.h"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#include "common/bit_util.h"
|
||||
#include "common/string_util.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
#include "frontend/decoder/thumb16.h"
|
||||
|
||||
namespace Dynarmic {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "common/common_types.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
|
||||
namespace Dynarmic {
|
||||
namespace IR {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <algorithm>
|
||||
|
||||
#include "common/assert.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
#include "frontend/decoder/arm.h"
|
||||
#include "frontend/decoder/vfp2.h"
|
||||
#include "frontend/ir/basic_block.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "common/assert.h"
|
||||
#include "common/bit_util.h"
|
||||
#include "frontend/arm_types.h"
|
||||
#include "frontend/arm/types.h"
|
||||
#include "frontend/decoder/thumb16.h"
|
||||
#include "frontend/decoder/thumb32.h"
|
||||
#include "frontend/ir/ir_emitter.h"
|
||||
|
|
Loading…
Reference in a new issue