Parameters 2.9 KB

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