target: remove unused "bitfield" infrastructure

We have too many different registers, and too many version and
context dependent interpretations, for this type of bitfield
management to be scalable.

(Anyone who really wants bitfield interpretation *can* do that
in Tcl code...)

There are ... quite a few copies of the same ARM dummy registers.
There should eventually be one copy; this many is craziness.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
David Brownell
2009-11-13 16:22:36 -08:00
parent 38e8d60f79
commit 04b514707f
9 changed files with 78 additions and 73 deletions

View File

@@ -27,12 +27,6 @@
struct target;
struct bitfield_desc
{
char *name;
int num_bits;
};
struct reg
{
char *name;
@@ -40,8 +34,6 @@ struct reg
int dirty;
int valid;
uint32_t size;
struct bitfield_desc *bitfield_desc;
int num_bitfields;
void *arch_info;
int arch_type;
};