target: no implicit #includes of "register.h"
Same deal: "register.h" got needlessly included all over the place because of being in a few widely included headers. So take it out of the header files which included it, and put it in files which use it ... reduce needless interdependencies. Also, don't need that extra "types.h" inclusion. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
parent
1186f7efa7
commit
8193f17c3a
|
@ -34,6 +34,7 @@
|
|||
#include "time_support.h"
|
||||
#include "target_type.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
#if 0
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "arm720t.h"
|
||||
#include "time_support.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include "time_support.h"
|
||||
#include "arm_simulator.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
|
||||
#include "arm7tdmi.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include "arm920t.h"
|
||||
#include "time_support.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#include "arm926ejs.h"
|
||||
#include "time_support.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
|
||||
#include "arm9tdmi.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#define ARM_ADI_V5_H
|
||||
|
||||
#include "target.h"
|
||||
#include "register.h"
|
||||
#include "arm_jtag.h"
|
||||
|
||||
#define DAP_IR_DPACC 0xA
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include "arm_disassembler.h"
|
||||
#include "arm_simulator.h"
|
||||
#include "binarybuffer.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
static uint32_t arm_shift(uint8_t shift, uint32_t Rm,
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
#include "arm_disassembler.h"
|
||||
#include "binarybuffer.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
char* armv4_5_core_reg_list[] =
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#ifndef ARMV4_5_H
|
||||
#define ARMV4_5_H
|
||||
|
||||
#include "register.h"
|
||||
#include "target.h"
|
||||
#include "etm.h"
|
||||
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#ifndef ARMV7A_H
|
||||
#define ARMV7A_H
|
||||
|
||||
#include "register.h"
|
||||
#include "target.h"
|
||||
#include "arm_adi_v5.h"
|
||||
#include "armv4_5.h"
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#include "breakpoints.h"
|
||||
#include "armv7m.h"
|
||||
#include "algorithm.h"
|
||||
#include "register.h"
|
||||
|
||||
#define ARRAY_SIZE(x) ((int)(sizeof(x)/sizeof((x)[0])))
|
||||
|
||||
|
|
|
@ -35,9 +35,8 @@
|
|||
|
||||
#include "breakpoints.h"
|
||||
#include "cortex_a8.h"
|
||||
#include "armv7a.h"
|
||||
#include "armv4_5.h"
|
||||
|
||||
#include "register.h"
|
||||
#include "target_request.h"
|
||||
#include "target_type.h"
|
||||
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
#ifndef CORTEX_A8_H
|
||||
#define CORTEX_A8_H
|
||||
|
||||
#include "register.h"
|
||||
#include "target.h"
|
||||
#include "armv7a.h"
|
||||
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
#include "target_request.h"
|
||||
#include "target_type.h"
|
||||
#include "arm_disassembler.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/* NOTE: most of this should work fine for the Cortex-M1 and
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#ifndef CORTEX_M3_H
|
||||
#define CORTEX_M3_H
|
||||
|
||||
#include "register.h"
|
||||
#include "target.h"
|
||||
#include "armv7m.h"
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#endif
|
||||
|
||||
#include "embeddedice.h"
|
||||
#include "register.h"
|
||||
|
||||
#define ARRAY_SIZE(x) ((int)(sizeof(x)/sizeof((x)[0])))
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include "armv4_5.h"
|
||||
#include "etb.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
static char* etb_reg_list[] =
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include "etb.h"
|
||||
#include "image.h"
|
||||
#include "arm_disassembler.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -55,6 +55,8 @@
|
|||
#include "arm926ejs.h"
|
||||
#include "arm966e.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
int feroceon_assert_reset(struct target *target)
|
||||
{
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
#endif
|
||||
|
||||
#include "mips32.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
char* mips32_core_reg_list[] =
|
||||
|
|
|
@ -24,7 +24,6 @@
|
|||
#define MIPS32_H
|
||||
|
||||
#include "target.h"
|
||||
#include "register.h"
|
||||
#include "mips32_pracc.h"
|
||||
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include "mips_m4k.h"
|
||||
#include "mips32_dmaacc.h"
|
||||
#include "target_type.h"
|
||||
#include "register.h"
|
||||
|
||||
|
||||
/* cli handling */
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "types.h"
|
||||
#include "register.h"
|
||||
#include "log.h"
|
||||
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
#ifndef REGISTER_H
|
||||
#define REGISTER_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
struct target;
|
||||
|
||||
struct reg
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
#include "arm_simulator.h"
|
||||
#include "arm_disassembler.h"
|
||||
#include "time_support.h"
|
||||
#include "register.h"
|
||||
#include "image.h"
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue