LintPars 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 0 /* 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 2 /* 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 8 /* 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. #ifndef NOFLOAT
  36. #define SZ_FLOAT (arith)4
  37. #define SZ_DOUBLE (arith)8
  38. #endif NOFLOAT
  39. #define SZ_POINTER (arith)4
  40. /* target machine alignment requirements */
  41. #define AL_CHAR 1
  42. #define AL_SHORT SZ_SHORT
  43. #define AL_WORD SZ_WORD
  44. #define AL_INT SZ_WORD
  45. #define AL_LONG SZ_WORD
  46. #ifndef NOFLOAT
  47. #define AL_FLOAT SZ_WORD
  48. #define AL_DOUBLE SZ_WORD
  49. #endif NOFLOAT
  50. #define AL_POINTER SZ_WORD
  51. #define AL_STRUCT 1
  52. #define AL_UNION 1
  53. !File: botch_free.h
  54. #undef BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
  55. !File: dataflow.h
  56. #undef DATAFLOW 1 /* produce some compile-time xref */
  57. !File: debug.h
  58. #undef DEBUG 1 /* perform various self-tests */
  59. !File: use_tmp.h
  60. #undef PREPEND_SCOPES 1 /* collect exa, exp, ina and inp commands
  61. and if USE_TMP is defined let them
  62. precede the rest of the generated
  63. compact code */
  64. #undef USE_TMP 1 /* use C_insertpart, C_endpart mechanism
  65. to generate EM-code in the order needed
  66. for the code-generators. If not defined,
  67. the old-style peephole optimizer is
  68. needed. */
  69. !File: parbufsize.h
  70. #define PARBUFSIZE 1024
  71. !File: textsize.h
  72. #define ITEXTSIZE 8 /* 1st piece of memory for repl. text */
  73. #define RTEXTSIZE 8 /* stepsize for enlarging repl.text */
  74. !File: inputtype.h
  75. #define INP_READ_IN_ONE 1 /* read input file in one */
  76. !File: nopp.h
  77. #undef NOPP 1 /* if NOT defined, use built-int preprocessor */
  78. !File: nobitfield.h
  79. #undef NOBITFIELD 1 /* if NOT defined, implement bitfields */
  80. !File: spec_arith.h
  81. /* describes internal compiler arithmetics */
  82. #undef SPECIAL_ARITHMETICS /* something different from native long */
  83. !File: static.h
  84. #define GSTATIC /* for large global "static" arrays */
  85. !File: nofloat.h
  86. #undef NOFLOAT 1 /* if NOT defined, floats are implemented */
  87. !File: noRoption.h
  88. #undef NOROPTION 1 /* if NOT defined, R option is implemented */
  89. !File: nocross.h
  90. #undef NOCROSS 1 /* if NOT defined, cross compiler */
  91. !File: regcount.h
  92. #undef REGCOUNT 1 /* count occurrences for register messages */