Parameters 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. !File: pathlength.h
  2. #define PATHLENGTH 1024 /* max. length of path to file */
  3. !File: idepth.h
  4. #define IDEPTH 100 /* maximum nr of stacked input buffers */
  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: maxincl.h
  18. #define MAXINCL 12 /* maximum number of #include directories */
  19. !File: density.h
  20. #define DENSITY 2 /* see switch.[ch] for an explanation */
  21. !File: lapbuf.h
  22. #define LAPBUF 4096 /* size of macro actual parameter buffer */
  23. !File: strsize.h
  24. #define ISTRSIZE 32 /* minimum number of bytes allocated for
  25. storing a string */
  26. #define RSTRSIZE 8 /* step size in enlarging the memory for
  27. the storage of a string */
  28. !File: target_sizes.h
  29. #define MAXSIZE 8 /* the maximum of the SZ_* constants */
  30. /* target machine sizes */
  31. #define SZ_CHAR (arith)1
  32. #define SZ_SHORT (arith)2
  33. #define SZ_WORD (arith)4
  34. #define SZ_INT (arith)4
  35. #define SZ_LONG (arith)4
  36. #ifndef NOFLOAT
  37. #define SZ_FLOAT (arith)4
  38. #define SZ_DOUBLE (arith)8
  39. #endif NOFLOAT
  40. #define SZ_POINTER (arith)4
  41. /* target machine alignment requirements */
  42. #define AL_CHAR 1
  43. #define AL_SHORT SZ_SHORT
  44. #define AL_WORD SZ_WORD
  45. #define AL_INT SZ_WORD
  46. #define AL_LONG SZ_WORD
  47. #ifndef NOFLOAT
  48. #define AL_FLOAT SZ_WORD
  49. #define AL_DOUBLE SZ_WORD
  50. #endif NOFLOAT
  51. #define AL_POINTER SZ_WORD
  52. #define AL_STRUCT 1
  53. #define AL_UNION 1
  54. !File: botch_free.h
  55. #undef BOTCH_FREE 1 /* botch freed memory, as a check */
  56. !File: dataflow.h
  57. #define DATAFLOW 1 /* produce some compile-time xref */
  58. !File: debug.h
  59. #undef DEBUG 1 /* perform various self-tests */
  60. !File: use_tmp.h
  61. #define USE_TMP 1 /* collect exa, exp, ina and inp commands
  62. and let them precede the rest of
  63. the generated compact code */
  64. !File: parbufsize.h
  65. #define PARBUFSIZE 1024
  66. !File: textsize.h
  67. #define ITEXTSIZE 8 /* 1st piece of memory for repl. text */
  68. #define RTEXTSIZE 8 /* stepsize for enlarging repl.text */
  69. !File: inputtype.h
  70. #undef INP_READ_IN_ONE 1 /* read input file in one */
  71. !File: nopp.h
  72. #undef NOPP 1 /* use built-int preprocessor */
  73. !File: nobitfield.h
  74. #undef NOBITFIELD 1 /* implement bitfields */
  75. !File: spec_arith.h
  76. /* describes internal compiler arithmetics */
  77. #undef SPECIAL_ARITHMETICS /* something different from native long */
  78. !File: static.h
  79. #define GSTATIC /* for large global "static" arrays */
  80. !File: nofloat.h
  81. #undef NOFLOAT /* floats implemented by default */