aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/settings.h
blob: ee1048fcff1c60274ccb0167798c4ff9a293e545 (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
51
/*
	Compiler setttings
	Note that changes are of influence for project.c !!
*/

extern Bool DoCode;					/* not generated in abc file */
extern Bool DoDebug;
extern Bool DoParallel;
extern Bool DoStackLayout;
extern Bool DoStrictnessAnalysis;
extern Bool DoVerbose;
extern Bool DoWarning;	
extern Bool DoListTypes;			/* not generated in abc file */
extern Bool DoListAllTypes;			/* not generated in abc file */
extern Bool DoShowAttributes;		/* not generated in abc file */
extern Bool DoListStrictTypes;		/* not generated in abc file */
extern Bool DoStrictWarning;		/* not generated in abc file */
extern Bool DoStrictAllWarning;		/* not generated in abc file */
extern Bool DoStrictCheck;			/* not generated in abc file */
extern Bool DoDescriptors;			/* not generated in abc file */
extern Bool ListOptimizations;

extern Bool ExportLocalLabels;

extern Bool DoProfiling;
extern Bool DoTimeProfiling;

extern Bool DoReuseUniqueNodes;
extern Bool OptimizeLazyTupleRecursion;
extern Bool OptimizeTailCallModuloCons;
extern Bool WriteModificationTimes;

#define NR_BLOCKS 100
#define BLOCK_SIZE (unsigned long) (16 * KBYTE)
#define	StrictDoRelated	False

extern unsigned StrictDepth;
extern Bool StrictDoLists;
extern Bool StrictDoPaths;
extern Bool StrictDoAllPaths;
extern Bool StrictDoExtEq;
extern Bool StrictDoLessEqual;
extern Bool StrictDoEager;
extern Bool StrictDoVerbose;
extern Bool StrictDoAnnots;
extern unsigned long StrictMemUse;

extern Bool VERBOSE;

extern Bool FunctionMayFailIsError,NotUsedIsError,FunctionNotUsedIsError;