compinnr.inc 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library and compiler.
  4. Copyright (c) 1998-2000 by the Free Pascal development team
  5. Internal Function/Constant Evaluator numbers
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. const
  13. { Internal functions }
  14. in_lo_word = 1;
  15. in_hi_word = 2;
  16. in_lo_long = 3;
  17. in_hi_long = 4;
  18. in_ord_x = 5;
  19. in_length_string = 6;
  20. in_chr_byte = 7;
  21. in_write_x = 14;
  22. in_writeln_x = 15;
  23. in_read_x = 16;
  24. in_readln_x = 17;
  25. in_concat_x = 18;
  26. in_assigned_x = 19;
  27. in_str_x_string = 20;
  28. in_ofs_x = 21;
  29. in_sizeof_x = 22;
  30. in_typeof_x = 23;
  31. in_val_x = 24;
  32. in_reset_x = 25;
  33. in_rewrite_x = 26;
  34. in_low_x = 27;
  35. in_high_x = 28;
  36. in_seg_x = 29;
  37. in_pred_x = 30;
  38. in_succ_x = 31;
  39. in_reset_typedfile = 32;
  40. in_rewrite_typedfile = 33;
  41. in_settextbuf_file_x = 34;
  42. in_inc_x = 35;
  43. in_dec_x = 36;
  44. in_include_x_y = 37;
  45. in_exclude_x_y = 38;
  46. in_break = 39;
  47. in_continue = 40;
  48. in_assert_x_y = 41;
  49. in_addr_x = 42;
  50. in_typeinfo_x = 43;
  51. in_setlength_x = 44;
  52. in_finalize_x = 45;
  53. { Internal constant functions }
  54. in_const_trunc = 100;
  55. in_const_round = 101;
  56. in_const_frac = 102;
  57. in_const_abs = 103;
  58. in_const_int = 104;
  59. in_const_sqr = 105;
  60. in_const_odd = 106;
  61. in_const_ptr = 107;
  62. in_const_swap_word = 108;
  63. in_const_swap_long = 109;
  64. in_const_pi = 110;
  65. in_const_sqrt = 111;
  66. in_const_arctan = 112;
  67. in_const_cos = 113;
  68. in_const_exp = 114;
  69. in_const_ln = 115;
  70. in_const_sin = 116;
  71. in_lo_qword = 117;
  72. in_hi_qword = 118;
  73. in_cos_extended = 119;
  74. in_pi = 121;
  75. in_abs_extended = 122;
  76. in_sqr_extended = 123;
  77. in_sqrt_extended = 124;
  78. in_arctan_extended = 125;
  79. in_ln_extended = 126;
  80. in_sin_extended = 127;
  81. { MMX functions }
  82. { these contants are used by the mmx unit }
  83. { MMX }
  84. in_mmx_pcmpeqb = 200;
  85. in_mmx_pcmpeqw = 201;
  86. in_mmx_pcmpeqd = 202;
  87. in_mmx_pcmpgtb = 203;
  88. in_mmx_pcmpgtw = 204;
  89. in_mmx_pcmpgtd = 205;
  90. { 3DNow }
  91. { SSE }
  92. {
  93. $Log$
  94. Revision 1.2 2000-11-09 17:46:54 florian
  95. * System.TypeInfo fixed
  96. + System.Finalize implemented
  97. + some new keywords for interface support added
  98. Revision 1.1 2000/11/04 16:48:32 florian
  99. * innr.inc renamed to make compiler compilation easier because the rtl contains
  100. a file of the same name
  101. Revision 1.4 2000/10/21 18:16:11 florian
  102. * a lot of changes:
  103. - basic dyn. array support
  104. - basic C++ support
  105. - some work for interfaces done
  106. ....
  107. Revision 1.3 2000/08/16 13:06:06 florian
  108. + support of 64 bit integer constants
  109. Revision 1.2 2000/07/13 11:32:43 michael
  110. + removed logs
  111. }