aboutsummaryrefslogtreecommitdiff
path: root/sim/common/hw-base.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1998-05-25 07:08:48 +0000
committerAndrew Cagney <cagney@redhat.com>1998-05-25 07:08:48 +0000
commit2f06c437e28ea3bfab27cc9b9b11dd235397a938 (patch)
treeb930b8f8afb52ab1b9d775a084a67cb50d10bc71 /sim/common/hw-base.c
parentf67574471894a2e1ebfc9ba7a5b154b9735da2e9 (diff)
downloadbinutils-2f06c437e28ea3bfab27cc9b9b11dd235397a938.zip
binutils-2f06c437e28ea3bfab27cc9b9b11dd235397a938.tar.gz
binutils-2f06c437e28ea3bfab27cc9b9b11dd235397a938.tar.bz2
Clean up create/delete of hw-ports
Diffstat (limited to 'sim/common/hw-base.c')
-rw-r--r--sim/common/hw-base.c57
1 files changed, 19 insertions, 38 deletions
diff --git a/sim/common/hw-base.c b/sim/common/hw-base.c
index 8a5a299..e8c09f0 100644
--- a/sim/common/hw-base.c
+++ b/sim/common/hw-base.c
@@ -23,15 +23,6 @@
#include "hw-base.h"
-/* LATER: #include "hwconfig.h" */
-extern const struct hw_device_descriptor dv_core_descriptor[];
-extern const struct hw_device_descriptor dv_pal_descriptor[];
-const struct hw_device_descriptor *hw_descriptors[] = {
- dv_core_descriptor,
- dv_pal_descriptor,
- NULL,
-};
-
#ifdef HAVE_STRING_H
#include <string.h>
#else
@@ -46,6 +37,8 @@ const struct hw_device_descriptor *hw_descriptors[] = {
#include <ctype.h>
+#include "hw-config.h"
+
struct hw_base_data {
int finished_p;
const struct hw_device_descriptor *descriptor;
@@ -222,9 +215,7 @@ panic_hw_io_read_buffer (struct hw *me,
void *dest,
int space,
unsigned_word addr,
- unsigned nr_bytes,
- sim_cpu *processor,
- sim_cia cia)
+ unsigned nr_bytes)
{
hw_abort (me, "no io-read method");
return 0;
@@ -235,9 +226,7 @@ panic_hw_io_write_buffer (struct hw *me,
const void *source,
int space,
unsigned_word addr,
- unsigned nr_bytes,
- sim_cpu *processor,
- sim_cia cia)
+ unsigned nr_bytes)
{
hw_abort (me, "no io-write method");
return 0;
@@ -272,22 +261,6 @@ passthrough_hw_dma_write_buffer (struct hw *me,
violate_read_only_section);
}
-const struct hw_port_descriptor empty_hw_ports[] = {
- { NULL, },
-};
-
-static void
-panic_hw_port_event (struct hw *me,
- int my_port,
- struct hw *source,
- int source_port,
- int level,
- sim_cpu *processor,
- sim_cia cia)
-{
- hw_abort (me, "no port method");
-}
-
static void
ignore_hw_delete (struct hw *me)
{
@@ -342,12 +315,12 @@ full_name_of_hw (struct hw *leaf,
/* return it usefully */
if (buf == full_name)
- buf = (char *) strdup (full_name);
+ buf = hw_strdup (leaf, full_name);
return buf;
}
struct hw *
-hw_create (SIM_DESC sd,
+hw_create (struct sim_state *sd,
struct hw *parent,
const char *family,
const char *name,
@@ -358,9 +331,9 @@ hw_create (SIM_DESC sd,
struct hw *hw = ZALLOC (struct hw);
/* our identity */
- hw->family_of_hw = family;
- hw->name_of_hw = name;
- hw->args_of_hw = args;
+ hw->family_of_hw = hw_strdup (hw, family);
+ hw->name_of_hw = hw_strdup (hw, name);
+ hw->args_of_hw = hw_strdup (hw, args);
/* a hook into the system */
if (sd != NULL)
@@ -433,6 +406,7 @@ hw_create (SIM_DESC sd,
if (strcmp (family, entry->family) == 0)
{
hw->base_of_hw->descriptor = entry;
+ break;
}
}
}
@@ -443,8 +417,7 @@ hw_create (SIM_DESC sd,
}
/* Attach dummy ports */
- set_hw_ports (hw, empty_hw_ports);
- set_hw_port_event (hw, panic_hw_port_event);
+ create_hw_port_data (hw);
return hw;
}
@@ -477,6 +450,12 @@ hw_finish (struct hw *me)
/* Fill in the (hopefully) defined trace variable */
if (hw_find_property (me, "trace?") != NULL)
me->trace_of_hw_p = hw_find_boolean_property (me, "trace?");
+ /* allow global variable to define default tracing */
+ else if (! hw_trace_p (me)
+ && hw_find_property (hw_root (me), "global-trace?") != NULL
+ && hw_find_boolean_property (hw_root (me), "global-trace?"))
+ me->trace_of_hw_p = 1;
+
/* Allow the real device to override any methods */
me->base_of_hw->descriptor->to_finish (me);
@@ -490,6 +469,8 @@ hw_delete (struct hw *me)
/* give the object a chance to tidy up */
me->base_of_hw->to_delete (me);
+ delete_hw_port_data (me);
+
/* now unlink us from the tree */
if (hw_parent (me))
{