bug fixes
[fw/sdcc] / sim / ucsim / errorcl.h
1 /*
2  * Simulator of microcontrollers (errorcl.h)
3  *
4  * Copyright (C) 2001,01 Drotos Daniel, Talker Bt.
5  * 
6  * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
7  *
8  */
9
10 /*
11   This file is part of microcontroller simulator: ucsim.
12
13   UCSIM is free software; you can redistribute it and/or modify
14   it under the terms of the GNU General Public License as published by
15   the Free Software Foundation; either version 2 of the License, or
16   (at your option) any later version.
17
18   UCSIM is distributed in the hope that it will be useful,
19   but WITHOUT ANY WARRANTY; without even the implied warranty of
20   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21   GNU General Public License for more details.
22
23   You should have received a copy of the GNU General Public License
24   along with UCSIM; see the file COPYING.  If not, write to the Free
25   Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26   02111-1307, USA.
27 */
28 /*@1@*/
29
30 #ifndef ERRORCL_HEADER
31 #define ERRORCL_HEADER
32
33 // prj
34 #include "pobjcl.h"
35 #include "stypes.h"
36
37 extern struct id_element error_on_off_names[];
38
39 enum error_on_off {
40   ERROR_PARENT,
41   ERROR_ON,
42   ERROR_OFF
43 };
44
45 const int err_stop= (err_unknown|err_error);
46
47 #define ERROR_CLASS_DECL(NAME) \
48 extern class cl_error_class error_##NAME##_class;\
49 class cl_error_##NAME
50
51 #define ERROR_CLASS_DEF_PARENT(TYPE,NAME,CLASS_NAME,PARENT) \
52 class cl_error_class error_##NAME##_class(TYPE, CLASS_NAME, &(PARENT))
53
54 #define ERROR_CLASS_DEF_PARENT_ON(TYPE,NAME,CLASS_NAME,PARENT,ON) \
55 class cl_error_class error_##NAME##_class(TYPE, CLASS_NAME, &(PARENT), ON)
56
57
58 extern class cl_list *registered_errors;
59
60 class cl_error_class: public cl_base
61 {
62 protected:
63   enum error_type type;
64   //char *name;
65   enum error_on_off on;
66 public:
67   cl_error_class(enum error_type typ, char *aname);
68   cl_error_class(enum error_type typ, char *aname,
69                  enum error_on_off be_on);
70   cl_error_class(enum error_type typ, char *aname,
71                  class cl_error_class *parent);
72   cl_error_class(enum error_type typ, char *aname,
73                  class cl_error_class *parent,
74                  enum error_on_off be_on);
75   
76   enum error_on_off get_on(void) { return(on); }
77   void set_on(enum error_on_off val);
78   bool is_on(void);
79   enum error_type get_type(void);
80   char *get_type_name(void);
81   //char *get_name(void);
82 };
83
84 extern class cl_error_class error_class_base;
85
86
87 class cl_commander; //forward
88
89 class cl_error: public cl_base
90 {
91 protected:
92   class cl_error_class *classification;
93 public:
94   bool inst;    // Occured during instruction execution
95   t_addr PC;    // Address of the instruction
96 public:
97   cl_error(void);
98   virtual ~cl_error(void);
99   virtual int init(void);
100  
101 public:
102   virtual enum error_type get_type(void);
103   virtual enum error_on_off get_on(void);
104   virtual bool is_on(void);
105   virtual class cl_error_class *get_class(void) { return(classification); }
106
107   virtual void print(class cl_commander *c);
108   virtual char *get_type_name();
109 };
110
111
112 #endif
113
114 /* End of sim.src/errorcl.h */