c80 simulator fixes.
[external/binutils.git] / sim / common / sim-basics.h
1 /*  This file is part of the program psim.
2
3     Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>
4     Copyright (C) 1997, Free Software Foundation, Inc.
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15  
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  
20     */
21
22
23 #ifndef _SIM_BASICS_H_
24 #define _SIM_BASICS_H_
25
26
27 /* Basic configuration */
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 /* Basic host dependant mess - hopefully <stdio.h> + <stdarg.h> will
34    bring potential conflicts out in the open */
35
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <setjmp.h>
39
40 #ifndef NULL
41 #define NULL 0
42 #endif
43
44
45         
46 /* Some versions of GCC include an attribute operator, define it */
47
48 #if !defined (__attribute__)
49 #if (!defined(__GNUC__) || (__GNUC__ < 2) || (__GNUC__ == 2 && __GNUC_MINOR__ < 6))
50 #define __attribute__(arg)
51 #endif
52 #endif
53
54
55
56 /* Memory management with an allocator that clears memory before use. */
57
58 void *zalloc (unsigned long size);
59
60 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
61
62 void zfree(void*);
63
64
65 /* Turn VALUE into a string with commas.  */
66 char *sim_add_commas (char *, int, unsigned long);
67
68
69 /* Utilities for elapsed time reporting.  */
70
71 /* Opaque type, known only inside sim_elapsed_time_foo fns.  */
72 typedef unsigned long SIM_ELAPSED_TIME;
73
74 /* Get reference point for future call to sim_time_elapsed.  */
75 SIM_ELAPSED_TIME sim_elapsed_time_get (void);
76
77 /* Elapsed time in milliseconds since START.  */
78 unsigned long sim_elapsed_time_since (SIM_ELAPSED_TIME start);
79
80
81 /* Global types that code manipulates */
82
83 typedef struct _device device;
84
85
86 /* Address access attributes */
87 typedef enum _access_type {
88   access_invalid = 0,
89   access_read = 1,
90   access_write = 2,
91   access_read_write = 3,
92   access_exec = 4,
93   access_read_exec = 5,
94   access_write_exec = 6,
95   access_read_write_exec = 7,
96 } access_type;
97
98
99 /* Address attachement types */
100 typedef enum _attach_type {
101   attach_invalid,
102   attach_raw_memory,
103   attach_callback,
104   /* ... */
105 } attach_type;
106
107
108
109 /* Basic definitions - ordered so that nothing calls what comes after
110    it */
111
112 #ifdef HAVE_CONFIG_H
113 #include "tconfig.h"
114 #endif
115 #include "ansidecl.h"
116 #include "callback.h"
117 #include "remote-sim.h"
118
119 #include "sim-config.h"
120
121 #include "sim-inline.h"
122
123 #include "sim-types.h"
124 #include "sim-bits.h"
125 #include "sim-endian.h"
126
127 /* Note: Only the simpler interfaces are defined here.  More heavy
128    weight objects, such as core and events, are defined in the more
129    serious sim-base.h header. */
130
131 #endif /* _SIM_BASICS_H_ */