blob: 91de93a9a733e13bae4f777b6cd97f7842afc2af (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
signature TOKENIZER = sig
structure S: STREAM
datatype intType = ItDec | ItOct | ItHex
datatype intSfx = IsNone | IsU | IsL | IsUL | IsLL | IsULL
datatype floatSfx = FsNone | FsF | FsL
datatype numConst =
IntConst of intType * string * intSfx |
FloatConst of string * floatSfx
datatype token =
Invalid |
EOS |
NewLine |
MacroEnd of string |
Num of numConst |
Id of string |
CharConst of string * int |
StringConst of string |
kwBreak |
kwCase |
kwChar |
kwConst |
kwContinue |
kwDefault |
kwDo |
kwDouble |
kwElse |
kwEnum |
kwExtern |
kwFloat |
kwFor |
kwGoto |
kwIf |
kwInt |
kwLong |
kwRegister |
kwReturn |
kwShort |
kwSigned |
kwSizeof |
kwStatic |
kwStruct |
kwSwitch |
kwTypedef |
kwUnion |
kwUnsigned |
kwVoid |
kwVolatile |
kwWhile |
LParen |
RParen |
LBracket |
RBracket |
LBrace |
RBrace |
QuestionMark |
Colon |
Coma |
Semicolon |
Arrow |
Plus |
DoublePlus|
Minus |
DoubleMinus |
Ampersand |
Asterisk |
Slash |
Tilde |
ExclMark |
Percent |
DoubleGreater |
DoubleLess |
Greater |
Less |
EqualSign |
LessEqualSign |
GreaterEqualSign |
DoubleEqualSign |
ExclMarkEqualSign |
Cap |
VerticalBar |
DoubleAmpersand |
DoubleVerticalBar |
AsteriskEqualSign |
SlashEqualSign |
PercentEqualSign |
PlusEqualSign |
MinusEqualSign |
DoubleLessEqualSign |
DoubleGreaterEqualSign |
AmpersandEqualSign |
CapEqualSign |
VerticalBarEqualSign |
Hash |
DoubleHash |
Dot |
DoubleDot |
TripleDot |
CommentStart |
PpcInclude of string * string |
PpcDefine |
PpcUndef |
PpcIf |
PpcIfdef |
PpcIfndef |
PpcElse |
PpcElif |
PpcEndif |
PpcWarning |
PpcError |
PpcPragma
(* Fatal. both may be thrown by tokenize *)
exception FsmTableIsTooSmall
exception TkErrorAug of S.pos * string
val getToken: S.t -> token * S.pos * S.t
val Ptk: (token, 'a, 'b) a1printer
val isPpcDir: token -> bool
val debugPrint: string -> unit
end
|