-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexception_handler.cpp
61 lines (54 loc) · 1.3 KB
/
exception_handler.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "Exception.h"
/**
exception hadler
stage: compiler | link
level:
fmt: output format
ap: arguement list
*/
void handle_exception(int stage,int level,char * fmt,va_list ap){
char buf[1024];
vsprintf(buf,fmt,ap);
if(STAGE_COMPILE == stage){
if(LEVEL_WARNING == level)
printf("%s(in %d lines):compile warning:%s!\n",filename,line_num,buf);
else{
printf("%s(in %d lines):compile error:%s!\n",filename,line_num,buf);
exit(-1);
}
}else{
printf("linking error %s!\n",buf);
exit(-1);
}
}
void warning(char * fmt,...){
va_list ap;
va_start(ap,fmt);
handle_exception(STAGE_COMPILE,LEVEL_WARNING,fmt,ap);
}
void error(char * fmt,...){
va_list ap;
va_start(ap,fmt);
handle_exception(STAGE_COMPILE,LEVEL_ERROR,fmt,ap);
}
void expect(char *msg){
error("lack %s",msg);
}
char * get_tkstr(int v){
if(v > tktable.count)
return NULL;
else if(v >= TK_CINT && v <= TK_CSTR)
return sourcestr.data;
else
return ((TkWord *)tktable.data[v])->spelling;
}
void skip(int c){
if(token != c)
error("lack '%s'",get_tkstr(c));
}
void link_error(char * fmt,...){
va_list ap;
va_start(ap,fmt);
handle_exception(STAGE_LINK,LEVEL_ERROR,fmt,ap);
va_end(ap);
}