Parameters 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. !File: lint.h
  2. #undef 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 MAXERR_LINE 5 /* maximum number of error messages given
  8. on the same input line. */
  9. !File: idfsize.h
  10. #define IDFSIZE 64 /* maximum significant length of an identifier */
  11. !File: numsize.h
  12. #define NUMSIZE 256 /* maximum length of a numeric constant */
  13. !File: nparams.h
  14. #define NPARAMS 32 /* maximum number of parameters of macros */
  15. !File: ifdepth.h
  16. #define IFDEPTH 256 /* maximum number of nested if-constructions */
  17. !File: density.h
  18. #define DENSITY 2 /* see switch.[ch] for an explanation */
  19. !File: lapbuf.h
  20. #define LAPBUF 4096 /* size of macro actual parameter buffer */
  21. !File: strsize.h
  22. #define ISTRSIZE 32 /* minimum number of bytes allocated for
  23. storing a string */
  24. #define RSTRSIZE 8 /* step size in enlarging the memory for
  25. the storage of a string */
  26. !File: target_sizes.h
  27. #define MAXSIZE 8 /* the maximum of the SZ_* constants */
  28. /* target machine sizes */
  29. #define SZ_CHAR (arith)1
  30. #define SZ_SHORT (arith)2
  31. #define SZ_WORD (arith)4
  32. #define SZ_INT (arith)4
  33. #define SZ_LONG (arith)4
  34. #ifndef NOFLOAT
  35. #define SZ_FLOAT (arith)4
  36. #define SZ_DOUBLE (arith)8
  37. #endif NOFLOAT
  38. #define SZ_POINTER (arith)4
  39. /* target machine alignment requirements */
  40. #define AL_CHAR 1
  41. #define AL_SHORT SZ_SHORT
  42. #define AL_WORD SZ_WORD
  43. #define AL_INT SZ_WORD
  44. #define AL_LONG SZ_WORD
  45. #ifndef NOFLOAT
  46. #define AL_FLOAT SZ_WORD
  47. #define AL_DOUBLE SZ_WORD
  48. #endif NOFLOAT
  49. #define AL_POINTER SZ_WORD
  50. #define AL_STRUCT 1
  51. #define AL_UNION 1
  52. !File: botch_free.h
  53. #undef BOTCH_FREE 1 /* when defined, botch freed memory, as a check */
  54. !File: dataflow.h
  55. #define DATAFLOW 1 /* produce some compile-time xref */
  56. !File: debug.h
  57. #undef DEBUG 1 /* perform various self-tests */
  58. !File: use_tmp.h
  59. #define USE_TMP 1 /* collect exa, exp, ina and inp commands
  60. and let them precede the rest of
  61. the generated compact code */
  62. !File: parbufsize.h
  63. #define PARBUFSIZE 1024
  64. !File: textsize.h
  65. #define ITEXTSIZE 8 /* 1st piece of memory for repl. text */
  66. #define RTEXTSIZE 8 /* stepsize for enlarging repl.text */
  67. !File: inputtype.h
  68. #define INP_READ_IN_ONE 1 /* read input file in one */
  69. !File: nopp.h
  70. #undef NOPP 1 /* if NOT defined, use built-int preprocessor */
  71. !File: nobitfield.h
  72. #undef NOBITFIELD 1 /* if NOT defined, implement bitfields */
  73. !File: spec_arith.h
  74. /* describes internal compiler arithmetics */
  75. #undef SPECIAL_ARITHMETICS /* something different from native long */
  76. !File: static.h
  77. #define GSTATIC /* for large global "static" arrays */
  78. !File: nofloat.h
  79. #undef NOFLOAT 1 /* if NOT defined, floats are implemented */
  80. !File: noRoption.h
  81. #undef NOROPTION 1 /* if NOT defined, R option is implemented */
  82. !File: nocross.h
  83. #undef NOCROSS 1 /* if NOT defined, cross compiler */
  84. !File: regcount.h
  85. #undef REGCOUNT 1 /* count occurrences for register messages */