mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
Run gdb/contrib/spellcheck.sh on directory sim. Fix auto-corrected typos: ... accessable -> accessible accidently -> accidentally accomodate -> accommodate adress -> address afair -> affair agains -> against agressively -> aggressively annuled -> annulled arbitary -> arbitrary arround -> around auxillary -> auxiliary availablity -> availability clasic -> classic comming -> coming controled -> controlled controling -> controlling destory -> destroy existance -> existence explictly -> explicitly faciliate -> facilitate fouth -> fourth fullfilled -> fulfilled guarentee -> guarantee hinderance -> hindrance independant -> independent inital -> initial loosing -> losing occurance -> occurrence occured -> occurred occuring -> occurring omited -> omitted oportunity -> opportunity parallely -> parallelly permissable -> permissible postive -> positive powerfull -> powerful preceed -> precede preceeding -> preceding preceeds -> precedes primative -> primitive probaly -> probably programable -> programmable propogate -> propagate propper -> proper recieve -> receive reconized -> recognized refered -> referred refering -> referring relevent -> relevant responisble -> responsible retreive -> retrieve safty -> safety specifiying -> specifying spontanous -> spontaneous sqaure -> square successfull -> successful supress -> suppress sytem -> system thru -> through transfered -> transferred trigered -> triggered unfortunatly -> unfortunately upto -> up to usefull -> useful wierd -> weird writen -> written doesnt -> doesn't isnt -> isn't ... Manually undid the "andd -> and" transformation in sim/testsuite/cr16/andd.cgs and sim/cr16/simops.c. Tested by rebuilding on x86_64-linux. Approved-By: Tom Tromey <tom@tromey.com>
110 lines
2.1 KiB
C
110 lines
2.1 KiB
C
/* The common simulator framework for GDB, the GNU Debugger.
|
|
|
|
Copyright 2002-2024 Free Software Foundation, Inc.
|
|
|
|
Contributed by Andrew Cagney and Red Hat.
|
|
|
|
This file is part of GDB.
|
|
|
|
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
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
#ifndef HW_BASE
|
|
#define HW_BASE
|
|
|
|
/* Create a primitive device */
|
|
|
|
struct hw *hw_create
|
|
(struct sim_state *sd,
|
|
struct hw *parent,
|
|
const char *family,
|
|
const char *name,
|
|
const char *unit,
|
|
const char *args);
|
|
|
|
|
|
/* Complete the creation of that device (finish overrides methods
|
|
using the set_hw_* operations below) */
|
|
|
|
void hw_finish
|
|
(struct hw *me);
|
|
|
|
int hw_finished_p
|
|
(struct hw *me);
|
|
|
|
|
|
/* Delete the entire device */
|
|
|
|
void hw_delete
|
|
(struct hw *me);
|
|
|
|
|
|
/* Override device methods */
|
|
|
|
typedef void (hw_delete_callback)
|
|
(struct hw *me);
|
|
|
|
extern void set_hw_delete(struct hw* hw, hw_delete_callback method);
|
|
|
|
|
|
/* ALLOC */
|
|
|
|
extern void create_hw_alloc_data
|
|
(struct hw *hw);
|
|
extern void delete_hw_alloc_data
|
|
(struct hw *hw);
|
|
|
|
|
|
/* PORTS */
|
|
|
|
extern void create_hw_port_data
|
|
(struct hw *hw);
|
|
extern void delete_hw_port_data
|
|
(struct hw *hw);
|
|
|
|
|
|
/* PROPERTIES */
|
|
|
|
extern void create_hw_property_data
|
|
(struct hw *hw);
|
|
extern void delete_hw_property_data
|
|
(struct hw *hw);
|
|
|
|
|
|
/* EVENTS */
|
|
|
|
extern void create_hw_event_data
|
|
(struct hw *hw);
|
|
extern void delete_hw_event_data
|
|
(struct hw *hw);
|
|
|
|
|
|
/* HANDLES */
|
|
|
|
extern void create_hw_handle_data
|
|
(struct hw *hw);
|
|
extern void delete_hw_handle_data
|
|
(struct hw *hw);
|
|
|
|
|
|
/* INSTANCES */
|
|
|
|
extern void create_hw_instance_data
|
|
(struct hw *hw);
|
|
extern void delete_hw_instance_data
|
|
(struct hw *hw);
|
|
|
|
|
|
#endif
|