-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathciloptions.ml
379 lines (313 loc) · 12.6 KB
/
ciloptions.ml
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
(*
*
* Copyright (c) 2001-2003,
* George C. Necula <[email protected]>
* Scott McPeak <[email protected]>
* Wes Weimer <[email protected]>
* Ben Liblit <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. The names of the contributors may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*)
module E = Errormsg
let setDebugFlag v name =
E.debugFlag := v;
if v then Pretty.flushOften := true
type outfile =
{ fname: string;
fchan: out_channel }
(* Processign of output file arguments *)
let openFile (what: string) (takeit: outfile -> unit) (fl: string) =
if !E.verboseFlag then
ignore (Printf.printf "Setting %s to %s\n" what fl);
(try takeit { fname = fl;
fchan = open_out fl }
with _ ->
raise (Arg.Bad ("Cannot open " ^ what ^ " file " ^ fl)))
let fileNames : string list ref = ref []
let recordFile fname =
fileNames := fname :: (!fileNames)
(* Parsing of files with additional names *)
let parseExtraFile (s: string) =
try
let sfile = open_in s in
while true do
let line = try input_line sfile with e -> (close_in sfile; raise e) in
let linelen = String.length line in
let rec scan (pos: int) (* next char to look at *)
(start: int) : unit (* start of the word,
or -1 if none *) =
if pos >= linelen then
if start >= 0 then
recordFile (String.sub line start (pos - start))
else
() (* Just move on to the next line *)
else
let c = String.get line pos in
match c with
' ' | '\n' | '\r' | '\t' ->
(* whitespace *)
if start >= 0 then begin
recordFile (String.sub line start (pos - start));
end;
scan (pos + 1) (-1)
| _ -> (* non-whitespace *)
if start >= 0 then
scan (pos + 1) start
else
scan (pos + 1) pos
in
scan 0 (-1)
done
with Sys_error _ -> E.s (E.error "Cannot find extra file: %s" s)
| End_of_file -> ()
let options : (string * Arg.spec * string) list =
let is_default = function
true -> " (default)"
| false -> "" in
[
(* General Options *)
"", Arg.Unit (fun () -> ()), " \n\t\tGeneral Options\n";
"--version",
Arg.Unit (fun _ ->
print_endline ("CIL version " ^ Cil.cilVersion ^
"\nMore information at http://cil.sourceforge.net/\n");
exit 0),
" Output version information and exit";
"--verbose",
Arg.Set E.verboseFlag,
(" Print lots of random stuff; this is passed on from cilly" ^
is_default !E.verboseFlag);
"--noverbose",
Arg.Clear E.verboseFlag,
(" Undo effect of verbose flag" ^ is_default (not !E.verboseFlag));
"--warnall",
Arg.Set E.warnFlag,
(" Show optional warnings" ^ is_default !E.warnFlag);
"--nowarnall",
Arg.Clear E.warnFlag,
(" Disable optional warnings" ^ is_default (not !E.warnFlag));
"--noTruncateWarning",
Arg.Clear Cil.warnTruncate,
" Suppress warning about truncating integer constants";
"--debug",
Arg.String (setDebugFlag true),
"<xxx> Turn on debugging flag xxx";
"--nodebug",
Arg.String (setDebugFlag false),
"<xxx> Turn off debugging flag xxx";
"--flush",
Arg.Set Pretty.flushOften,
(" Flush the output streams often; aids debugging" ^
is_default !Pretty.flushOften);
"--noflush",
Arg.Clear Pretty.flushOften,
(" Only flush output streams when inevitable" ^
is_default (not !Pretty.flushOften));
"--check",
Arg.Set Cilutil.doCheck,
(" Run a consistency check over the CIL after every operation" ^
is_default !Cilutil.doCheck);
"--nocheck",
Arg.Clear Cilutil.doCheck,
(" Turn off consistency checking of CIL" ^
is_default (not !Cilutil.doCheck));
"--strictcheck", Arg.Unit (fun _ -> Cilutil.doCheck := true;
Cilutil.strictChecking := true),
" Same as --check, but treats problems as errors not warnings.";
"", Arg.Unit (fun _ -> ()), "";
"--noPrintLn",
Arg.Unit (fun _ ->
Cil.lineDirectiveStyle := None;
Cprint.printLn := false),
" Do not output #line directives in the output";
"--commPrintLn",
Arg.Unit (fun _ ->
Cil.lineDirectiveStyle := Some Cil.LineComment;
Cprint.printLnComment := true),
" Print #line directives in the output, but put them in comments";
"--commPrintLnSparse",
Arg.Unit (fun _ ->
Cil.lineDirectiveStyle := Some Cil.LineCommentSparse;
Cprint.printLnComment := true),
" Print commented #line directives in the output only when\n\t\t\t\tthe line number changes.";
"--stats",
Arg.Set Cilutil.printStats,
(" Print statistics about running times and memory usage" ^
is_default !Cilutil.printStats);
"--nostats",
Arg.Clear Cilutil.printStats,
(" Do not print statistics" ^
is_default (not !Cilutil.printStats));
"--log",
Arg.String (openFile "log" (fun oc -> E.logChannel := oc.fchan)),
"<filename> Set the name of the log file; by default use stderr";
"--MSVC",
Arg.Unit (fun _ ->
Cil.msvcMode := true;
Frontc.setMSVCMode ();
if not Machdep.hasMSVC then
ignore (E.warn "Will work in MSVC mode but will be using machine-dependent parameters for GCC since you do not have the MSVC compiler installed")),
" Enable MSVC compatibility; default is GNU";
"--envmachine",
Arg.Unit (fun _ ->
try
let machineModel = Sys.getenv "CIL_MACHINE" in
Cil.envMachine := Some (Machdepenv.modelParse machineModel);
with
Not_found ->
ignore (E.error "CIL_MACHINE environment variable is not set")
| Failure msg ->
ignore (E.error "CIL_MACHINE machine model is invalid: %s" msg)),
" Use machine model specified in CIL_MACHINE environment variable";
"--ignore-merge-conflicts",
Arg.Set Mergecil.ignore_merge_conflicts,
(" Ignore merging conflicts" ^
is_default !Mergecil.ignore_merge_conflicts);
(* Little-used: *)
(* "--noignore-merge-conflicts", *)
(* Arg.Clear Mergecil.ignore_merge_conflicts, *)
(* (" Do not ignore merging conflicts" ^ *)
(* is_default (not !Mergecil.ignore_merge_conflicts)); *)
"--sliceGlobal",
Arg.Set Cilutil.sliceGlobal,
" Output is the slice of #pragma cilnoremove(sym) symbols";
(* sm: some more debugging options *)
"--tr",
Arg.String Trace.traceAddMulti,
"<sys> Subsystem to show debug printfs for";
"--extrafiles",
Arg.String parseExtraFile,
"<filename> File that contains a list of additional files to process,\n\t\t\t\tseparated by newlines";
(* Lowering Options *)
"", Arg.Unit (fun () -> ()), " \n\t\tLowering Options\n";
"--lowerConstants",
Arg.Set Cil.lowerConstants,
(" Lower constant expressions" ^ is_default !Cil.lowerConstants);
"--noLowerConstants",
Arg.Clear Cil.lowerConstants,
(" Do not lower constant expressions" ^
is_default (not !Cil.lowerConstants));
"--insertImplicitCasts",
Arg.Set Cil.insertImplicitCasts,
(" Insert implicit casts" ^ is_default !Cil.insertImplicitCasts);
"--noInsertImplicitCasts",
Arg.Clear Cil.insertImplicitCasts,
(" Do not insert implicit casts" ^
is_default (not !Cil.insertImplicitCasts));
"--forceRLArgEval",
Arg.Set Cabs2cil.forceRLArgEval,
(" Forces right to left evaluation of function arguments" ^
is_default !Cabs2cil.forceRLArgEval);
"--noForceRLArgEval",
Arg.Clear Cabs2cil.forceRLArgEval,
(" Evaluate function arguments in unspecified order" ^
is_default (not !Cabs2cil.forceRLArgEval));
"--nocil",
Arg.Int (fun n -> Cabs2cil.nocil := n),
"<index> Do not compile to CIL the global with the given index";
"--noDisallowDuplication",
Arg.Set Cabs2cil.allowDuplication,
(" Duplicate small chunks of code if necessary" ^
is_default !Cabs2cil.allowDuplication);
"--disallowDuplication",
Arg.Clear Cabs2cil.allowDuplication,
(" Prevent small chunks of code from being duplicated" ^
is_default (not !Cabs2cil.allowDuplication));
"--makeStaticGlobal",
Arg.Set Cil.makeStaticGlobal,
(" Convert local static variables into global variables" ^
is_default !Cil.makeStaticGlobal);
"--noMakeStaticGlobal",
Arg.Clear Cil.makeStaticGlobal,
(" Use initializers for local static variables" ^
is_default (not !Cil.makeStaticGlobal));
"--useLogicalOperators",
Arg.Set Cil.useLogicalOperators,
(" Where possible (that is, if there are no side-effects),\n\t\t\t\t" ^
"retain &&, || and ?: (instead of transforming them to If statements)" ^
is_default !Cil.useLogicalOperators);
"--noUseLogicalOperators",
Arg.Clear Cil.useLogicalOperators,
("Transform &&, || and ?: to If statements" ^
is_default (not !Cil.useLogicalOperators));
"--useComputedGoto",
Arg.Set Cil.useComputedGoto,
(" Retain GCC's computed goto" ^
is_default !Cil.useComputedGoto);
"--noUseComputedGoto",
Arg.Clear Cil.useComputedGoto,
(" Transform computed goto to Switch statements" ^
is_default (not !Cil.useComputedGoto));
"--useCaseRange",
Arg.Set Cil.useCaseRange,
(" Retain ranges of values in case labels" ^
is_default !Cil.useCaseRange);
"--noUseCaseRange",
Arg.Clear Cil.useCaseRange,
(" Transform case ranges to sequence of cases" ^
is_default (not !Cil.useCaseRange));
"--keepunused",
Arg.Set Rmtmps.keepUnused,
(" Do not remove the unused variables and types" ^
is_default !Rmtmps.keepUnused);
"--nokeepunused",
Arg.Clear Rmtmps.keepUnused,
(" Remove unused variables and types" ^
is_default (not !Rmtmps.keepUnused));
"--rmUnusedInlines",
Arg.Set Rmtmps.rmUnusedInlines,
(" Delete any unused inline functions; this is the default in MSVC mode" ^
is_default !Rmtmps.rmUnusedInlines);
"--noRmUnusedInlines",
Arg.Clear Rmtmps.rmUnusedInlines,
(" Do not delete any unused inline functions" ^
is_default (not !Rmtmps.rmUnusedInlines));
(* Output Options *)
"", Arg.Unit (fun () -> ()), " \n\t\tOutput Options\n";
"--printCilAsIs",
Arg.Set Cil.printCilAsIs,
(" Do not try to simplify the CIL when printing." ^
is_default !Cil.printCilAsIs);
"--noPrintCilAsIs",
Arg.Clear Cil.printCilAsIs,
(" Simplify the CIL when printing. This produces prettier output\n\t\t\t\tby e.g. changing while(1) into more meaningful loops " ^ is_default (not !Cil.printCilAsIs));
"--noWrap",
Arg.Unit (fun _ -> Cil.lineLength := 100_000),
" Do not wrap long lines when printing";
"--pdepth",
Arg.Int (fun n -> Pretty.printDepth := n),
("<n> Set max print depth (default: " ^
string_of_int !Pretty.printDepth ^ ")");
"--decil",
Arg.Clear Cil.print_CIL_Input,
" Don't print CIL specific-features like __blockattribute__";
(* Don't just add new flags at the end ... place options
in the correct category *)
]