compinnr.inc 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library and compiler.
  4. Copyright (c) 1998-2002 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_x = 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. in_new_x = 46;
  54. in_dispose_x = 47;
  55. in_exit = 48;
  56. in_copy_x = 49;
  57. in_initialize_x = 50;
  58. in_leave = 51; {macpas}
  59. in_cycle = 52; {macpas}
  60. { Internal constant functions }
  61. in_const_sqr = 100;
  62. in_const_abs = 101;
  63. in_const_odd = 102;
  64. in_const_ptr = 103;
  65. in_const_swap_word = 104;
  66. in_const_swap_long = 105;
  67. in_lo_qword = 106;
  68. in_hi_qword = 107;
  69. in_const_swap_qword = 108;
  70. in_prefetch_var = 109;
  71. { FPU functions }
  72. in_trunc_real = 120;
  73. in_round_real = 121;
  74. in_frac_real = 122;
  75. in_int_real = 123;
  76. in_exp_real = 124;
  77. in_cos_real = 125;
  78. in_pi_real = 126;
  79. in_abs_real = 127;
  80. in_sqr_real = 128;
  81. in_sqrt_real = 129;
  82. in_arctan_real = 130;
  83. in_ln_real = 131;
  84. in_sin_real = 132;
  85. { MMX functions }
  86. { these contants are used by the mmx unit }
  87. { MMX }
  88. in_mmx_pcmpeqb = 200;
  89. in_mmx_pcmpeqw = 201;
  90. in_mmx_pcmpeqd = 202;
  91. in_mmx_pcmpgtb = 203;
  92. in_mmx_pcmpgtw = 204;
  93. in_mmx_pcmpgtd = 205;
  94. { 3DNow }
  95. { SSE }
  96. {
  97. $Log$
  98. Revision 1.15 2004-11-21 15:35:23 peter
  99. * float routines all use internproc and compilerproc helpers
  100. Revision 1.14 2004/07/05 21:49:43 olle
  101. + macpas style: exit, cycle, leave
  102. + macpas compiler directive: PUSH POP
  103. Revision 1.13 2004/06/20 08:55:29 florian
  104. * logs truncated
  105. Revision 1.12 2004/02/02 20:41:59 florian
  106. + added prefetch(const mem) support
  107. }