aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/settings.c
blob: 166b53ef0f5e2634062f7be233d171f2ebdd81fd (plain) (blame)
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
#include "compiledefines.h"
#include "types.t"
#include "system.h"
#include "settings.h"

Bool
	DoCode					= True,
	DoDebug 				= False,
	DoListAllTypes			= False,
	DoListTypes				= False,
	DoShowAttributes		= True,
	DoParallel				= False,
	DoStackLayout			= True,
	DoStrictnessAnalysis	= True,
	DoVerbose 				= False,
	DoWarning 				= True,
	DoStrictWarning			= True,
	DoStrictAllWarning		= False,
	DoStrictCheck			= False,
	DoListStrictTypes		= False;
Bool ListOptimizations		= False;

Bool DoDescriptors			= False;
Bool ExportLocalLabels		= False;
Bool AddStrictnessToExportedFunctionTypes = False;
Bool Dynamics = False;

Bool DoProfiling=False; /* no longer used by memory profiler */
Bool DoTimeProfiling=False;

Bool DoReuseUniqueNodes		= False;
Bool DoFusion				= False;

Bool OptimizeLazyTupleRecursion=False;
Bool OptimizeTailCallModuloCons=True;
Bool WriteModificationTimes	= False;

unsigned StrictDepth		= 10; /* 8; */

Bool StrictDoLists			= False;
Bool StrictDoPaths			= True;
Bool StrictDoAllPaths		= True;
Bool StrictDoExtEq			= True;
Bool StrictDoLessEqual		= True;
Bool StrictDoEager			= True;
Bool StrictDoVerbose		= False;
Bool StrictDoAnnots			= True;

Bool FunctionMayFailIsError	= False;