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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [gdb-6.8/] [sim/] [common/] [cgen-types.h] - Blame information for rev 26

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 26 jlechner
/* Types for Cpu tools GENerated simulators.
2
   Copyright (C) 1996, 1997, 1998, 1999, 2007, 2008
3
   Free Software Foundation, Inc.
4
   Contributed by Cygnus Support.
5
 
6
This file is part of GDB, the GNU debugger.
7
 
8
This program is free software; you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation; either version 3 of the License, or
11
(at your option) any later version.
12
 
13
This program is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
GNU General Public License for more details.
17
 
18
You should have received a copy of the GNU General Public License
19
along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
 
21
/* This file is not included with cgen-sim.h as it defines types
22
   needed by sim-base.h.  */
23
 
24
#ifndef CGEN_TYPES_H
25
#define CGEN_TYPES_H
26
 
27
/* Miscellaneous cgen configury defined here as this file gets
28
   included soon enough.  */
29
 
30
/* Indicate we support --profile-model.  */
31
#undef SIM_HAVE_MODEL
32
#define SIM_HAVE_MODEL
33
 
34
/* Indicate we support --{profile,trace}-{range,function}.  */
35
#undef SIM_HAVE_ADDR_RANGE
36
#define SIM_HAVE_ADDR_RANGE
37
 
38
#ifdef __GNUC__
39
#define HAVE_LONGLONG
40
#undef DI_FN_SUPPORT
41
#else
42
#undef HAVE_LONGLONG
43
#define DI_FN_SUPPORT
44
#endif
45
 
46
/* Mode support.  */
47
 
48
/* Common mode types.  */
49
/* ??? Target specific modes.  */
50
typedef enum mode_type {
51
  MODE_VOID, MODE_BI,
52
  MODE_QI, MODE_HI, MODE_SI, MODE_DI,
53
  MODE_UQI, MODE_UHI, MODE_USI, MODE_UDI,
54
  MODE_SF, MODE_DF, MODE_XF, MODE_TF,
55
  MODE_TARGET_MAX /* = MODE_TF? */,
56
  /* These are host modes.  */
57
  MODE_INT, MODE_UINT, MODE_PTR, /*??? MODE_ADDR, MODE_IADDR,*/
58
  MODE_MAX
59
} MODE_TYPE;
60
 
61
#define MAX_TARGET_MODES ((int) MODE_TARGET_MAX)
62
#define MAX_MODES ((int) MODE_MAX)
63
 
64
extern const char *mode_names[];
65
#define MODE_NAME(m) (mode_names[m])
66
 
67
typedef void VOID;
68
typedef unsigned char BI;
69
typedef signed8 QI;
70
typedef signed16 HI;
71
typedef signed32 SI;
72
typedef unsigned8 UQI;
73
typedef unsigned16 UHI;
74
typedef unsigned32 USI;
75
 
76
#ifdef HAVE_LONGLONG
77
typedef signed64 DI;
78
typedef unsigned64 UDI;
79
#define GETLODI(di) ((SI) (di))
80
#define GETHIDI(di) ((SI) ((UDI) (di) >> 32))
81
#define SETLODI(di, val) ((di) = (((di) & 0xffffffff00000000LL) | (val)))
82
#define SETHIDI(di, val) ((di) = (((di) & 0xffffffffLL) | (((DI) (val)) << 32)))
83
#define SETDI(di, hi, lo) ((di) = MAKEDI (hi, lo))
84
#define MAKEDI(hi, lo) ((((DI) (SI) (hi)) << 32) | ((UDI) (USI) (lo)))
85
#else
86
/* DI mode support if "long long" doesn't exist.
87
   At one point CGEN supported K&R C compilers, and ANSI C compilers without
88
   "long long".  One can argue the various merits of keeping this in or
89
   throwing it out.  I went to the trouble of adding it so for the time being
90
   I'm leaving it in.  */
91
typedef struct { SI hi,lo; } DI;
92
typedef DI UDI;
93
#define GETLODI(di) ((di).lo)
94
#define GETHIDI(di) ((di).hi)
95
#define SETLODI(di, val) ((di).lo = (val))
96
#define SETHIDI(di, val) ((di).hi = (val))
97
#define SETDI(di, hi, lo) ((di) = MAKEDI (hi, lo))
98
extern DI make_struct_di (SI, SI);
99
#define MAKEDI(hi, lo) (make_struct_di ((hi), (lo)))
100
#endif
101
 
102
/* These are used to record extracted raw data from an instruction, among other
103
   things.  It must be a host data type, and not a target one.  */
104
typedef int INT;
105
typedef unsigned int UINT;
106
 
107
typedef unsigned_address ADDR;  /* FIXME: wip*/
108
typedef unsigned_address IADDR; /* FIXME: wip*/
109
 
110
/* fp types are in cgen-fpu.h */
111
 
112
#endif /* CGEN_TYPES_H */

powered by: WebSVN 2.1.0

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