OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [sim/] [common/] [hw-handles.c] - Diff between revs 24 and 157

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 157
/* The common simulator framework for GDB, the GNU Debugger.
/* The common simulator framework for GDB, the GNU Debugger.
 
 
   Copyright 2002, 2007, 2008 Free Software Foundation, Inc.
   Copyright 2002, 2007, 2008 Free Software Foundation, Inc.
 
 
   Contributed by Andrew Cagney and Red Hat.
   Contributed by Andrew Cagney and Red Hat.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
 
 
#include "hw-main.h"
#include "hw-main.h"
#include "hw-base.h"
#include "hw-base.h"
 
 
 
 
struct hw_handle_mapping {
struct hw_handle_mapping {
  cell_word external;
  cell_word external;
  struct hw *phandle;
  struct hw *phandle;
  struct hw_instance *ihandle;
  struct hw_instance *ihandle;
  struct hw_handle_mapping *next;
  struct hw_handle_mapping *next;
};
};
 
 
 
 
struct hw_handle_data {
struct hw_handle_data {
  int nr_mappings;
  int nr_mappings;
  struct hw_handle_mapping *mappings;
  struct hw_handle_mapping *mappings;
};
};
 
 
void
void
create_hw_handle_data (struct hw *hw)
create_hw_handle_data (struct hw *hw)
{
{
  if (hw_parent (hw) == NULL)
  if (hw_parent (hw) == NULL)
    {
    {
      hw->handles_of_hw = HW_ZALLOC (hw, struct hw_handle_data);
      hw->handles_of_hw = HW_ZALLOC (hw, struct hw_handle_data);
    }
    }
  else
  else
    {
    {
      hw->handles_of_hw = hw_root (hw)->handles_of_hw;
      hw->handles_of_hw = hw_root (hw)->handles_of_hw;
    }
    }
}
}
 
 
void
void
delete_hw_handle_data (struct hw *hw)
delete_hw_handle_data (struct hw *hw)
{
{
  /* NULL */
  /* NULL */
}
}
 
 
 
 
 
 
#if 0
#if 0
void
void
hw_handle_init (struct hw *hw)
hw_handle_init (struct hw *hw)
{
{
  struct hw_handle_mapping *current_map = db->mappings;
  struct hw_handle_mapping *current_map = db->mappings;
  if (current_map != NULL)
  if (current_map != NULL)
    {
    {
      db->nr_mappings = db->mappings->external;
      db->nr_mappings = db->mappings->external;
      /* verify that the mappings that were not removed are in
      /* verify that the mappings that were not removed are in
         sequence down to nr 1 */
         sequence down to nr 1 */
      while (current_map->next != NULL)
      while (current_map->next != NULL)
        {
        {
          if (current_map->external != current_map->next->external + 1)
          if (current_map->external != current_map->next->external + 1)
            error ("hw_handle: hw_handle database possibly corrupt");
            error ("hw_handle: hw_handle database possibly corrupt");
          current_map = current_map->next;
          current_map = current_map->next;
        }
        }
      ASSERT (current_map->next == NULL);
      ASSERT (current_map->next == NULL);
      if (current_map->external != 1)
      if (current_map->external != 1)
        error ("hw_handle: hw_handle database possibly corrupt");
        error ("hw_handle: hw_handle database possibly corrupt");
    }
    }
  else
  else
    {
    {
      db->nr_mappings = 0;
      db->nr_mappings = 0;
    }
    }
}
}
#endif
#endif
 
 
 
 
struct hw_instance *
struct hw_instance *
hw_handle_ihandle2 (struct hw *hw,
hw_handle_ihandle2 (struct hw *hw,
                    cell_word external)
                    cell_word external)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_mapping *current_map = db->mappings;
  struct hw_handle_mapping *current_map = db->mappings;
  while (current_map != NULL)
  while (current_map != NULL)
    {
    {
      if (current_map->external == external)
      if (current_map->external == external)
        return current_map->ihandle;
        return current_map->ihandle;
      current_map = current_map->next;
      current_map = current_map->next;
    }
    }
  return (void*)0;
  return (void*)0;
}
}
 
 
 
 
struct hw *
struct hw *
hw_handle_phandle2 (struct hw *hw,
hw_handle_phandle2 (struct hw *hw,
                    cell_word external)
                    cell_word external)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_mapping *current_map = db->mappings;
  struct hw_handle_mapping *current_map = db->mappings;
  while (current_map != NULL)
  while (current_map != NULL)
    {
    {
      if (current_map->external == external)
      if (current_map->external == external)
        return current_map->phandle;
        return current_map->phandle;
      current_map = current_map->next;
      current_map = current_map->next;
    }
    }
  return (void*)0;
  return (void*)0;
}
}
 
 
 
 
cell_word
cell_word
hw_handle_2ihandle (struct hw *hw,
hw_handle_2ihandle (struct hw *hw,
                    struct hw_instance *internal)
                    struct hw_instance *internal)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_mapping *current_map = db->mappings;
  struct hw_handle_mapping *current_map = db->mappings;
  while (current_map != NULL)
  while (current_map != NULL)
    {
    {
      if (current_map->ihandle == internal)
      if (current_map->ihandle == internal)
        return current_map->external;
        return current_map->external;
      current_map = current_map->next;
      current_map = current_map->next;
    }
    }
  return 0;
  return 0;
}
}
 
 
 
 
cell_word
cell_word
hw_handle_2phandle (struct hw *hw,
hw_handle_2phandle (struct hw *hw,
                    struct hw *internal)
                    struct hw *internal)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_mapping *current_map = db->mappings;
  struct hw_handle_mapping *current_map = db->mappings;
  while (current_map != NULL)
  while (current_map != NULL)
    {
    {
      if (current_map->phandle == internal)
      if (current_map->phandle == internal)
        return current_map->external;
        return current_map->external;
      current_map = current_map->next;
      current_map = current_map->next;
    }
    }
  return 0;
  return 0;
}
}
 
 
 
 
void
void
hw_handle_add_ihandle (struct hw *hw,
hw_handle_add_ihandle (struct hw *hw,
                       struct hw_instance *internal)
                       struct hw_instance *internal)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  if (hw_handle_2ihandle (hw, internal) != 0)
  if (hw_handle_2ihandle (hw, internal) != 0)
    {
    {
      hw_abort (hw, "attempting to add an ihandle already in the data base");
      hw_abort (hw, "attempting to add an ihandle already in the data base");
    }
    }
  else
  else
    {
    {
      /* insert at the front making things in decending order */
      /* insert at the front making things in decending order */
      struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping);
      struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping);
      new_map->next = db->mappings;
      new_map->next = db->mappings;
      new_map->ihandle = internal;
      new_map->ihandle = internal;
      db->nr_mappings += 1;
      db->nr_mappings += 1;
      new_map->external = db->nr_mappings;
      new_map->external = db->nr_mappings;
      db->mappings = new_map;
      db->mappings = new_map;
    }
    }
}
}
 
 
 
 
void
void
hw_handle_add_phandle (struct hw *hw,
hw_handle_add_phandle (struct hw *hw,
                       struct hw *internal)
                       struct hw *internal)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  if (hw_handle_2phandle (hw, internal) != 0)
  if (hw_handle_2phandle (hw, internal) != 0)
    {
    {
      hw_abort (hw, "attempting to add a phandle already in the data base");
      hw_abort (hw, "attempting to add a phandle already in the data base");
    }
    }
  else
  else
    {
    {
      /* insert at the front making things in decending order */
      /* insert at the front making things in decending order */
      struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping);
      struct hw_handle_mapping *new_map = ZALLOC (struct hw_handle_mapping);
      new_map->next = db->mappings;
      new_map->next = db->mappings;
      new_map->phandle = internal;
      new_map->phandle = internal;
      db->nr_mappings += 1;
      db->nr_mappings += 1;
      new_map->external = db->nr_mappings;
      new_map->external = db->nr_mappings;
      db->mappings = new_map;
      db->mappings = new_map;
    }
    }
}
}
 
 
 
 
void
void
hw_handle_remove_ihandle (struct hw *hw,
hw_handle_remove_ihandle (struct hw *hw,
                          struct hw_instance *internal)
                          struct hw_instance *internal)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_mapping **current_map = &db->mappings;
  struct hw_handle_mapping **current_map = &db->mappings;
  while (*current_map != NULL)
  while (*current_map != NULL)
    {
    {
      if ((*current_map)->ihandle == internal)
      if ((*current_map)->ihandle == internal)
        {
        {
          struct hw_handle_mapping *delete = *current_map;
          struct hw_handle_mapping *delete = *current_map;
          *current_map = delete->next;
          *current_map = delete->next;
          zfree (delete);
          zfree (delete);
          return;
          return;
        }
        }
      current_map = &(*current_map)->next;
      current_map = &(*current_map)->next;
    }
    }
  hw_abort (hw, "attempt to remove nonexistant ihandle");
  hw_abort (hw, "attempt to remove nonexistant ihandle");
}
}
 
 
 
 
void
void
hw_handle_remove_phandle (struct hw *hw,
hw_handle_remove_phandle (struct hw *hw,
                          struct hw *internal)
                          struct hw *internal)
{
{
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_data *db = hw->handles_of_hw;
  struct hw_handle_mapping **current_map = &db->mappings;
  struct hw_handle_mapping **current_map = &db->mappings;
  while (*current_map != NULL)
  while (*current_map != NULL)
    {
    {
      if ((*current_map)->phandle == internal)
      if ((*current_map)->phandle == internal)
        {
        {
          struct hw_handle_mapping *delete = *current_map;
          struct hw_handle_mapping *delete = *current_map;
          *current_map = delete->next;
          *current_map = delete->next;
          zfree (delete);
          zfree (delete);
          return;
          return;
        }
        }
      current_map = &(*current_map)->next;
      current_map = &(*current_map)->next;
    }
    }
  hw_abort (hw, "attempt to remove nonexistant phandle");
  hw_abort (hw, "attempt to remove nonexistant phandle");
}
}
 
 
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.