Parameters 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. !File: lint.h
  2. /*#define LINT 1 /* if defined, 'lint' is produced */
  3. !File: pathlength.h
  4. #define PATHLENGTH 1024 /* max. length of path to file */
  5. !File: errout.h
  6. #define ERROUT STDERR /* file pointer for writing messages */
  7. #define ERR_SHADOW 5 /* a syntax error overshadows error messages
  8. until ERR_SHADOW symbols have been
  9. accepted without syntax error */
  10. !File: idfsize.h
  11. #define IDFSIZE 64 /* maximum significant length of an identifier */
  12. !File: numsize.h
  13. #define NUMSIZE 256 /* maximum length of a numeric constant */
  14. !File: nparams.h
  15. #define NPARAMS 32 /* maximum number of parameters of macros */
  16. !File: ifdepth.h
  17. #define IFDEPTH 256 /* maximum number of nested if-constructions */
  18. !File: density.h
  19. #define DENSITY 3 /* see switch.[ch] for an explanation */
  20. !File: lapbuf.h
  21. #define LAPBUF 4096 /* size of macro actual parameter buffer */
  22. !File: strsize.h
  23. #define ISTRSIZE 32 /* minimum number of bytes allocated for
  24. storing a string */
  25. #define RSTRSIZE 16 /* step size in enlarging the memory for
  26. the storage of a string */
  27. !File: target_sizes.h
  28. #define MAXSIZE 8 /* the maximum of the SZ_* constants */
  29. /* target machine sizes */
  30. #define SZ_CHAR (arith)1
  31. #define SZ_SHORT (arith)2
  32. #define SZ_WORD (arith)4
  33. #define SZ_INT (arith)4
  34. #define SZ_LONG (arith)4
  35. #define SZ_FLOAT (arith)4
  36. #define SZ_DOUBLE (arith)8
  37. #define SZ_POINTER (arith)4
  38. /* target machine alignment requirements */
  39. #define AL_CHAR 1
  40. #define AL_SHORT SZ_SHORT
  41. #define AL_WORD SZ_WORD
  42. #define AL_INT SZ_WORD
  43. #define AL_LONG SZ_WORD
  44. #define AL_FLOAT SZ_WORD
  45. #define AL_DOUBLE SZ_WORD
  46. #define AL_POINTER SZ_WORD
  47. #define AL_STRUCT 1
  48. #define AL_UNION 1
  49. !File: botch_free.h
  50. /*#define BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
  51. !File: dataflow.h
  52. /*#define DATAFLOW 1 /* produce some compile-time xref */
  53. !File: debug.h
  54. /*#define DEBUG 1 /* perform various self-tests */
  55. #define NDEBUG 1 /* disable assertions */
  56. !File: use_tmp.h
  57. #define PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands
  58. and if USE_TMP is defined let them
  59. precede the rest of the generated
  60. compact code */
  61. /*#define USE_TMP 1 /* use C_insertpart, C_endpart mechanism
  62. to generate EM-code in the order needed
  63. for the code-generators. If not defined,
  64. the old-style peephole optimizer is
  65. needed. */
  66. !File: parbufsize.h
  67. #define PARBUFSIZE 1024
  68. !File: textsize.h
  69. #define ITEXTSIZE 32 /* 1st piece of memory for repl. text */
  70. #define RTEXTSIZE 16 /* stepsize for enlarging repl.text */
  71. !File: inputtype.h
  72. #define INP_READ_IN_ONE 1 /* read input file in one */
  73. !File: nopp.h
  74. /*#define NOPP 1 /* if NOT defined, use built-int preprocessor */
  75. !File: nobitfield.h
  76. /*#define NOBITFIELD 1 /* if NOT defined, implement bitfields */
  77. !File: spec_arith.h
  78. /* describes internal compiler arithmetics */
  79. /*#define SPECIAL_ARITHMETICS /* something different from native long */
  80. !File: static.h
  81. #define GSTATIC /* for large global "static" arrays */
  82. !File: nofloat.h
  83. /*#define NOFLOAT 1 /* if NOT defined, floats are implemented */
  84. !File: noRoption.h
  85. /*#define NOROPTION 1 /* if NOT defined, R option is implemented */
  86. !File: nocross.h
  87. #define NOCROSS 1 /* if NOT defined, cross compiler */
  88. !File: regcount.h
  89. /*#define REGCOUNT 1 /* count occurrences for register messages */
  90. !File: dbsymtab.h
  91. #define DBSYMTAB 1 /* ability to produce symbol table for debugger
  92. */