GEN386.H
上传用户:hlzzc88
上传日期:2007-01-06
资源大小:220k
文件大小:6k
源码类别:

编译器/解释器

开发平台:

Others

  1. /*
  2.  * 68K/386 32-bit C compiler.
  3.  *
  4.  * copyright (c) 1996, David Lindauer
  5.  * 
  6.  * This compiler is intended for educational use.  It may not be used
  7.  * for profit without the express written consent of the author.
  8.  *
  9.  * It may be freely redistributed, as long as this notice remains intact
  10.  * and sources are distributed along with any executables derived from them.
  11.  *
  12.  * The author is not responsible for damages, either direct or consequential,
  13.  * that may arise from use of this software.
  14.  *
  15.  * v1.5 August 1996
  16.  * David Lindauer, gclind01@starbase.spd.louisville.edu
  17.  *
  18.  * Credits to Mathew Brandt for original K&R C compiler
  19.  *
  20.  */
  21. /*
  22.  *      code generation structures and constants
  23.  */
  24. /* address mode specifications */
  25. #define F_DREG  1       /* data register direct mode allowed */
  26. #define F_AREG  2       /* address register direct mode allowed */
  27. #define F_MEM   4       /* memory alterable modes allowed */
  28. #define F_IMMED 8       /* immediate mode allowed */
  29. #define F_ALT   7       /* alterable modes */
  30. #define F_DALT  5       /* data alterable modes */
  31. #define F_FREG  16   /* FP register */
  32. #define F_INDX  32 /* indexed memory alterable mode allowed */
  33. #define F_ALL   31      /* all modes allowed */
  34. #define F_VOL   64      /* need volitile operand */
  35. #define F_NOVALUE 128    /* dont need result value */
  36. #define F_NOBIT 256 /* Don't get the bit val, get the address */
  37. #define F_DEST 512 /* Is going to be used as a destination */
  38. #define OPE_MATH 1
  39. #define OPE_ARPL 2
  40. #define OPE_BOUND 3
  41. #define OPE_BITSCAN 4
  42. #define OPE_BIT 5
  43. #define OPE_CALL 6
  44. #define OPE_INCDEC 7
  45. #define OPE_RM 8
  46. #define OPE_ENTER 9
  47. #define OPE_IMUL 10
  48. #define OPE_IN 11
  49. #define OPE_IMM8 12
  50. #define OPE_RELBRA 13
  51. #define OPE_RELBR8 14
  52. #define OPE_JMP 15
  53. #define OPE_REGRM 16
  54. #define OPE_LOADSEG 17
  55. #define OPE_LGDT 18
  56. #define OPE_LIDT 19
  57. #define OPE_RM16 20
  58. #define OPE_MOV 21
  59. #define OPE_MOVSX 22
  60. #define OPE_OUT 23
  61. #define OPE_PUSHPOP 24
  62. #define OPE_SHIFT 25
  63. #define OPE_RET 26
  64. #define OPE_SET 27
  65. #define OPE_SHLD 28
  66. #define OPE_TEST 29
  67. #define OPE_XCHG 30
  68. #define OPE_FMATH 31
  69. #define OPE_FMATHP 32
  70. #define OPE_FMATHI 33
  71. #define OPE_FCOM 34
  72. #define OPE_FREG 35
  73. #define OPE_FICOM 36
  74. #define OPE_FILD 37
  75. #define OPE_FIST 38
  76. #define OPE_FLD 39
  77. #define OPE_FST 40
  78. #define OPE_FSTP 41
  79. #define OPE_FUCOM 42
  80. #define OPE_FXCH 43
  81. #define OPE_MN 44
  82. #define OPE_M16 45
  83. #define OPE_CMPS 46
  84. #define OPE_INS 47
  85. #define OPE_LODS 48
  86. #define OPE_MOVS 49
  87. #define OPE_OUTS 50
  88. #define OPE_SCAS 51
  89. #define OPE_STOS 52
  90. #define OPE_XLAT 53
  91. #define OPE_REG32 54
  92. enum e_op { op_reserved, op_line, op_label, op_funclabel, op_seq,
  93. op_genword,op_dd,
  94. op_aaa,op_aad,op_aam,op_aas,op_add,op_adc,
  95. op_and,op_arpl,op_bound,op_bsf,op_bsr,op_bswap,op_btc,
  96. op_bt,op_bts,op_call,op_cbw,op_cwde,op_cwd,
  97. op_cdq,op_clc,op_cld,op_cli,op_clts,op_cmc,
  98. op_cmp,op_cmps,op_cmpsb,op_cmpsw,op_cmpsd,op_daa,
  99. op_das,op_dec,op_div,op_enter,op_hlt,op_idiv,
  100. op_imul,op_in,op_inc,op_ins,op_insb,op_insw,
  101. op_insd,op_int,op_into,op_invd,op_iret,op_iretd,op_ja,
  102. op_jnbe,op_jae,op_jnb,op_jnc,op_jb,op_jc,
  103. op_jnae,op_jbe,op_jna,op_jecxz,op_je,op_jg,
  104. op_jnle,op_jl,op_jnge,op_jge,op_jnl,op_jle,
  105. op_jng,op_jne,op_jo,op_jno,op_jp,op_jpe,
  106. op_jpo,op_js,op_jns,op_jmp,op_lahf,op_lar,
  107. op_lds,op_les,op_lfs,op_lgs,op_lss,op_lea,
  108. op_leave,op_lgdt,op_lidt,op_lldt,op_lmsw,op_lock,
  109. op_lods,op_lodsb,op_lodsw,op_lodsd,op_loop,op_loope,
  110. op_loopz,op_loopne,op_loopnz,op_lsl,op_ltr,op_mov,
  111. op_movs,op_movsb,op_movsw,op_movsd,op_movsx,op_movzx,
  112. op_mul,op_neg,op_not,op_nop,op_or,op_out,
  113. op_outs,op_outsb,op_outsw,op_outsd,op_pop,op_popa,op_popad,
  114. op_popf,op_popfd,op_push,op_pusha,op_pushad,op_pushf,op_pushfd,op_rcl,op_rcr,
  115. op_rol,op_ror,op_rep,op_repne, op_repe, op_repnz, 
  116. op_repz,op_ret,op_sahf,op_sal,op_sar,op_shl,
  117. op_shr,op_sbb,op_scas,op_scasb,op_scasw,op_scasd,
  118. op_seta,op_setnbe,op_setae,op_setnb,op_setnc,op_setb,
  119. op_setc,op_setnae,op_setbe,op_setna,op_sete,op_setg,
  120. op_setnle,op_setl,op_setnge,op_setge,op_setnl,op_setle,
  121. op_setng,op_setne,op_seto,op_setno,op_setp,op_setpe,
  122. op_setpo,op_sets,op_setns,op_sgdt,op_sidt,op_sldt,
  123. op_smsw,op_shld,op_shrd,op_stc,op_std,op_sti,
  124. op_stos,op_stosb,op_stosw,op_stosd,op_str,op_sub,op_test,
  125. op_verr,op_verw,op_wait,op_wbinvd,op_xchg,
  126. op_xlat,op_xlatb,op_xor,op_f2xm1,op_fabs,op_fadd,op_faddp,
  127. op_fiadd,op_fchs,op_fclex,op_fnclex,op_fcom,op_fcomp,
  128. op_fcompp,op_fcos,op_fdecstp,op_fdiv,op_fdivp,op_fidiv,
  129. op_fdivr,op_fdivrp,op_fidivr,op_ffre,op_ficom,op_ficomp,
  130. op_fild,op_fincstp,op_finit,op_fninit,op_fist,op_fistp,
  131. op_fld,op_fldz,op_fldpi,op_fld1,op_fld2t,op_fld2e,op_fldlg2,
  132. op_fldln2,op_fldcw,op_fldsw,op_fldenv,op_fmul,op_fmulp,op_fimul,
  133. op_fpatan,op_fprem,op_fprem1,op_fptan,op_frndint, op_frstor,op_fsave,
  134. op_fnsave,op_fscale,op_fsin,op_fsincos,op_fsqrt,op_fst,
  135. op_fstp,op_fstcw,op_fstsw,op_fnstcw, op_fnstsw,
  136. op_fstenv,op_fsntenv,op_fsub,
  137. op_fsubp,op_fisub,op_fsubr,op_fsubrp,op_fisubr,op_ftst,
  138. op_fucom,op_fucomp,op_fucompp,op_fwait,op_fxam,op_fxch,op_fxtract,
  139. op_fyl2x,op_fyl2xp1
  140. };
  141. enum e_asmw {
  142. akw_byte, akw_word, akw_dword, akw_fword, akw_qword, akw_tbyte,
  143. akw_offset, akw_ptr };
  144. enum e_am {
  145.         am_none, am_dreg, am_freg, am_screg, am_sdreg, am_streg, am_seg,
  146. am_indisp, am_indispscale,
  147.         am_direct, am_immed, am_ext };
  148. /*      addressing mode structure       */
  149. struct amode {
  150.         enum e_am       mode;
  151.         char            preg;
  152.         char            sreg;
  153.         char            tempflag;
  154. char scale;
  155. char  length;
  156. enum { e_default, e_cs,e_ds,e_es,e_fs,e_gs, e_ss } seg;
  157.         struct enode    *offset;
  158.         };
  159. /*      output code structure   */
  160. struct ocode {
  161.         struct ocode    *fwd, *back;
  162.         enum e_op       opcode;
  163.         struct amode    *oper1, *oper2,*oper3;
  164. int addr;
  165. int size;
  166. char diag;
  167. char noopt;
  168.         };
  169. /* Used for fixup gen */
  170. typedef struct dl {
  171. struct dl *next;
  172. char *string;
  173. int offset;
  174. short type;
  175. } DATALINK;
  176. #define AMODE struct amode
  177. #define OCODE struct ocode
  178. #define FLOAT printf("codegen-Floating point not implemented in push/popn");
  179. /* 386 register set */
  180. #define EAX 0
  181. #define ECX 1
  182. #define EDX 2
  183. #define EBX 3
  184. #define ESP 4
  185. #define EBP 5
  186. #define ESI 6
  187. #define EDI 7
  188. #define AL 0
  189. #define CL 1
  190. #define DL 2
  191. #define BL 3
  192. #define ES 0
  193. #define CS 1
  194. #define SS 2
  195. #define DS 3
  196. #include "cc386.p"