⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 m68k.md

📁 这是完整的gcc源代码
💻 MD
📖 第 1 页 / 共 5 页
字号:
	  && (TARGET_68020	      || !(GET_CODE (operands[0]) == MEM		   && MEM_VOLATILE_P (operands[0]))))	return \"clr%.w %0\";    }  return \"move%.w %1,%0\";}")(define_insn "movqi"  [(set (match_operand:QI 0 "general_operand" "=d,*a,m,m,?*a")	(match_operand:QI 1 "general_operand" "dmi*a,d*a,dmi,?*a,m"))]  ""  "*{  rtx xoperands[4];  if (ADDRESS_REG_P (operands[0]) && GET_CODE (operands[1]) == MEM)    {      xoperands[1] = operands[1];      xoperands[2]        = gen_rtx (MEM, QImode,		   gen_rtx (PLUS, VOIDmode, stack_pointer_rtx, const1_rtx));      xoperands[3] = stack_pointer_rtx;      /* Just pushing a byte puts it in the high byte of the halfword.  */      /* We must put it in the low half, the second byte.  */      output_asm_insn (\"subq%.w %#2,%3\;move%.b %1,%2\", xoperands);      return \"move%.w %+,%0\";    }  if (ADDRESS_REG_P (operands[1]) && GET_CODE (operands[0]) == MEM)    {      xoperands[0] = operands[0];      xoperands[1] = operands[1];      xoperands[2]        = gen_rtx (MEM, QImode,		   gen_rtx (PLUS, VOIDmode, stack_pointer_rtx, const1_rtx));      xoperands[3] = stack_pointer_rtx;      output_asm_insn (\"move%.w %1,%-\;move%.b %2,%0\;addq%.w %#2,%3\", xoperands);      return \"\";    }  /* clr and st insns on 68000 read before writing.     This isn't so on the 68010, but we have no alternative for it.  */  if (TARGET_68020      || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0])))    {      if (operands[1] == const0_rtx)	return \"clr%.b %0\";      if (GET_CODE (operands[1]) == CONST_INT	  && INTVAL (operands[1]) == -1)	{	  CC_STATUS_INIT;	  return \"st %0\";	}    }  if (GET_CODE (operands[1]) != CONST_INT && CONSTANT_P (operands[1]))    return \"move%.l %1,%0\";  if (ADDRESS_REG_P (operands[0]) || ADDRESS_REG_P (operands[1]))    return \"move%.w %1,%0\";  return \"move%.b %1,%0\";}")(define_insn "movstrictqi"  [(set (strict_low_part (match_operand:QI 0 "general_operand" "+dm"))	(match_operand:QI 1 "general_operand" "dmn"))]  ""  "*{  if (operands[1] == const0_rtx      /* clr insns on 68000 read before writing.         This isn't so on the 68010, but we have no alternative for it.  */      && (TARGET_68020          || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))    return \"clr%.b %0\";  return \"move%.b %1,%0\";}")(define_insn "movsf"  [(set (match_operand:SF 0 "general_operand" "=rmf,x,y,rm,!x,!rm")	(match_operand:SF 1 "general_operand" "rmfF,xH,rmF,y,rm,x"))];  [(set (match_operand:SF 0 "general_operand" "=rmf");	(match_operand:SF 1 "general_operand" "rmfF"))]  ""  "*{  if (which_alternative >= 4)    return \"fpmove%.s %1,fpa0\;fpmove%.s fpa0,%0\";  if (FPA_REG_P (operands[0]))    {      if (FPA_REG_P (operands[1]))	return \"fpmove%.s %x1,%x0\";      else if (GET_CODE (operands[1]) == CONST_DOUBLE)	return output_move_const_single (operands);      else if (FP_REG_P (operands[1]))        return \"fmove%.s %1,sp@-\;fpmove%.d sp@+, %0\";      return \"fpmove%.s %x1,%x0\";    }  if (FPA_REG_P (operands[1]))    {      if (FP_REG_P (operands[0]))	return \"fpmove%.s %x1,sp@-\;fmove%.s sp@+,%0\";      else	return \"fpmove%.s %x1,%x0\";    }  if (FP_REG_P (operands[0]))    {      if (FP_REG_P (operands[1]))	return \"fmove%.x %1,%0\";      else if (ADDRESS_REG_P (operands[1]))	return \"move%.l %1,%-\;fmove%.s %+,%0\";      else if (GET_CODE (operands[1]) == CONST_DOUBLE)	return output_move_const_single (operands);      return \"fmove%.s %f1,%0\";    }  if (FP_REG_P (operands[1]))    {      if (ADDRESS_REG_P (operands[0]))	return \"fmove%.s %1,%-\;move%.l %+,%0\";      return \"fmove%.s %f1,%0\";    }  return \"move%.l %1,%0\";}")(define_insn "movdf"  [(set (match_operand:DF 0 "general_operand" "=rm,&rf,&rof<>,y,rm,x,!x,!rm")	(match_operand:DF 1 "general_operand" "rf,m,rofF<>,rmF,y,xH,rm,x"))];  [(set (match_operand:DF 0 "general_operand" "=rm,&rf,&rof<>");	(match_operand:DF 1 "general_operand" "rf,m,rofF<>"))]  ""  "*{  if (which_alternative == 6)    return \"fpmove%.d %x1,fpa0\;fpmove%.d fpa0,%x0\";  if (FPA_REG_P (operands[0]))    {      if (GET_CODE (operands[1]) == CONST_DOUBLE)	return output_move_const_double (operands);      if (FP_REG_P (operands[1]))        return \"fmove%.d %1,sp@-\;fpmove%.d sp@+,%x0\";      return \"fpmove%.d %x1,%x0\";    }  else if (FPA_REG_P (operands[1]))    {      if (FP_REG_P(operands[0]))        return \"fpmove%.d %x1,sp@-\;fmoved sp@+,%0\";      else        return \"fpmove%.d %x1,%x0\";    }  if (FP_REG_P (operands[0]))    {      if (FP_REG_P (operands[1]))	return \"fmove%.x %1,%0\";      if (REG_P (operands[1]))	{	  rtx xoperands[2];	  xoperands[1] = gen_rtx (REG, SImode, REGNO (operands[1]) + 1);	  output_asm_insn (\"move%.l %1,%-\", xoperands);	  output_asm_insn (\"move%.l %1,%-\", operands);	  return \"fmove%.d %+,%0\";	}      if (GET_CODE (operands[1]) == CONST_DOUBLE)	return output_move_const_double (operands);      return \"fmove%.d %f1,%0\";    }  else if (FP_REG_P (operands[1]))    {      if (REG_P (operands[0]))	{	  output_asm_insn (\"fmove%.d %f1,%-\;move%.l %+,%0\", operands);	  operands[0] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);	  return \"move%.l %+,%0\";	}      else        return \"fmove%.d %f1,%0\";    }  return output_move_double (operands);}");; movdi can apply to fp regs in some cases(define_insn "movdi"  ;; Let's see if it really still needs to handle fp regs, and, if so, why.  [(set (match_operand:DI 0 "general_operand" "=rm,&r,&ro<>,y,rm,!*x,!rm")	(match_operand:DI 1 "general_operand" "rF,m,roi<>F,rmiF,y,rmF,*x"))];  [(set (match_operand:DI 0 "general_operand" "=rm,&r,&ro<>,!&rm,!&f,y,rm,x,!x,!rm");	(match_operand:DI 1 "general_operand" "r,m,roi<>,fF,rfmF,rmi,y,rm,x"))];  [(set (match_operand:DI 0 "general_operand" "=rm,&rf,&ro<>,!&rm,!&f");	(match_operand:DI 1 "general_operand" "r,m,roi<>,fF,rfF"))]  ""  "*{  if (which_alternative == 8)    return \"fpmove%.d %x1,fpa0\;fpmove%.d fpa0,%x0\";  if (FPA_REG_P (operands[0]) || FPA_REG_P (operands[1]))    return \"fpmove%.d %x1,%x0\";  if (FP_REG_P (operands[0]))    {      if (FP_REG_P (operands[1]))	return \"fmove%.x %1,%0\";      if (REG_P (operands[1]))	{	  rtx xoperands[2];	  xoperands[1] = gen_rtx (REG, SImode, REGNO (operands[1]) + 1);	  output_asm_insn (\"move%.l %1,%-\", xoperands);	  output_asm_insn (\"move%.l %1,%-\", operands);	  return \"fmove%.d %+,%0\";	}      if (GET_CODE (operands[1]) == CONST_DOUBLE)	return output_move_const_double (operands);      return \"fmove%.d %f1,%0\";    }  else if (FP_REG_P (operands[1]))    {      if (REG_P (operands[0]))	{	  output_asm_insn (\"fmove%.d %f1,%-\;move%.l %+,%0\", operands);	  operands[0] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);	  return \"move%.l %+,%0\";	}      else        return \"fmove%.d %f1,%0\";    }  return output_move_double (operands);}");; Thus goes after the move instructions;; because the move instructions are better (require no spilling);; when they can apply.  It goes before the add/sub insns;; so we will prefer it to them.(define_insn "pushasi"  [(set (match_operand:SI 0 "push_operand" "=m")	(match_operand:SI 1 "address_operand" "p"))]  ""  "pea %a1");; truncation instructions(define_insn "truncsiqi2"  [(set (match_operand:QI 0 "general_operand" "=dm,d")	(truncate:QI	 (match_operand:SI 1 "general_operand" "doJ,i")))]  ""  "*{  if (GET_CODE (operands[0]) == REG)    {      /* Must clear condition codes, since the mov.l bases them on	 the entire 32 bits, not just the desired 8 bits.  */      CC_STATUS_INIT;      return \"move%.l %1,%0\";    }  if (GET_CODE (operands[1]) == MEM)    operands[1] = adj_offsettable_operand (operands[1], 3);  return \"move%.b %1,%0\";}")(define_insn "trunchiqi2"  [(set (match_operand:QI 0 "general_operand" "=dm,d")	(truncate:QI	 (match_operand:HI 1 "general_operand" "doJ,i")))]  ""  "*{  if (GET_CODE (operands[0]) == REG      && (GET_CODE (operands[1]) == MEM	  || GET_CODE (operands[1]) == CONST_INT))    {      /* Must clear condition codes, since the mov.w bases them on	 the entire 16 bits, not just the desired 8 bits.  */      CC_STATUS_INIT;      return \"move%.w %1,%0\";    }  if (GET_CODE (operands[0]) == REG)    {      /* Must clear condition codes, since the mov.l bases them on	 the entire 32 bits, not just the desired 8 bits.  */      CC_STATUS_INIT;      return \"move%.l %1,%0\";    }  if (GET_CODE (operands[1]) == MEM)    operands[1] = adj_offsettable_operand (operands[1], 1);  return \"move%.b %1,%0\";}")(define_insn "truncsihi2"  [(set (match_operand:HI 0 "general_operand" "=dm,d")	(truncate:HI	 (match_operand:SI 1 "general_operand" "roJ,i")))]  ""  "*{  if (GET_CODE (operands[0]) == REG)    {      /* Must clear condition codes, since the mov.l bases them on	 the entire 32 bits, not just the desired 8 bits.  */      CC_STATUS_INIT;      return \"move%.l %1,%0\";    }  if (GET_CODE (operands[1]) == MEM)    operands[1] = adj_offsettable_operand (operands[1], 2);  return \"move%.w %1,%0\";}");; zero extension instructions(define_expand "zero_extendhisi2"  [(set (match_operand:SI 0 "register_operand" "")	(const_int 0))   (set (strict_low_part (subreg:HI (match_dup 0) 0))	(match_operand:HI 1 "general_operand" ""))]  ""  "operands[1] = make_safe_from (operands[1], operands[0]);")(define_expand "zero_extendqihi2"  [(set (match_operand:HI 0 "register_operand" "")	(const_int 0))   (set (strict_low_part (subreg:QI (match_dup 0) 0))	(match_operand:QI 1 "general_operand" ""))]  ""  "operands[1] = make_safe_from (operands[1], operands[0]);")(define_expand "zero_extendqisi2"  [(set (match_operand:SI 0 "register_operand" "")	(const_int 0))   (set (strict_low_part (subreg:QI (match_dup 0) 0))	(match_operand:QI 1 "general_operand" ""))]  ""  " operands[1] = make_safe_from (operands[1], operands[0]); ");; Patterns to recognize zero-extend insns produced by the combiner.;; Note that the one starting from HImode comes before those for QImode;; so that a constant operand will match HImode, not QImode.(define_insn ""  [(set (match_operand:SI 0 "general_operand" "=do<>")	(zero_extend:SI	 (match_operand:HI 1 "general_operand" "rmn")))]  ""  "*{  if (DATA_REG_P (operands[0]))    {      if (GET_CODE (operands[1]) == REG	  && REGNO (operands[0]) == REGNO (operands[1]))	return \"and%.l %#0xFFFF,%0\";      if (reg_mentioned_p (operands[0], operands[1]))        return \"move%.w %1,%0\;and%.l %#0xFFFF,%0\";      return \"clr%.l %0\;move%.w %1,%0\";    }  else if (GET_CODE (operands[0]) == MEM	   && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)    return \"move%.w %1,%0\;clr%.w %0\";  else if (GET_CODE (operands[0]) == MEM	   && GET_CODE (XEXP (operands[0], 0)) == POST_INC)    return \"clr%.w %0\;move%.w %1,%0\";  else    {      output_asm_insn (\"clr%.w %0\", operands);      operands[0] = adj_offsettable_operand (operands[0], 2);      return \"move%.w %1,%0\";    }}")(define_insn ""  [(set (match_operand:HI 0 "general_operand" "=do<>")	(zero_extend:HI	 (match_operand:QI 1 "general_operand" "dmn")))]  ""  "*{  if (DATA_REG_P (operands[0]))    {      if (GET_CODE (operands[1]) == REG	  && REGNO (operands[0]) == REGNO (operands[1]))	return \"and%.w %#0xFF,%0\";      if (reg_mentioned_p (operands[0], operands[1]))        return \"move%.b %1,%0\;and%.w %#0xFF,%0\";      return \"clr%.w %0\;move%.b %1,%0\";    }  else if (GET_CODE (operands[0]) == MEM	   && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)    {      if (REGNO (XEXP (XEXP (operands[0], 0), 0)) == STACK_POINTER_REGNUM)	{	  output_asm_insn (\"clr%.w %-\", operands);	  operands[0] = gen_rtx (MEM, GET_MODE (operands[0]),				 plus_constant (stack_pointer_rtx, 1));	  return \"move%.b %1,%0\";	}      else	return \"move%.b %1,%0\;clr%.b %0\";    }  else if (GET_CODE (operands[0]) == MEM	   && GET_CODE (XEXP (operands[0], 0)) == POST_INC)    return \"clr%.b %0\;move%.b %1,%0\";  else    {      output_asm_insn (\"clr%.b %0\", operands);      operands[0] = adj_offsettable_operand (operands[0], 1);      return \"move%.b %1,%0\";    }}")(define_insn ""  [(set (match_operand:SI 0 "general_operand" "=do<>")	(zero_extend:SI	 (match_operand:QI 1 "general_operand" "dmn")))]  ""  "*{  if (DATA_REG_P (operands[0]))    {      if (GET_CODE (operands[1]) == REG	  && REGNO (operands[0]) == REGNO (operands[1]))	return \"and%.l %#0xFF,%0\";      if (reg_mentioned_p (operands[0], operands[1]))        return \"move%.b %1,%0\;and%.l %#0xFF,%0\";      return \"clr%.l %0\;move%.b %1,%0\";    }  else if (GET_CODE (operands[0]) == MEM	   && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)    {      operands[0] = XEXP (XEXP (operands[0], 0), 0);#ifdef MOTOROLA#ifdef SGS      return \"clr.l -(%0)\;move%.b %1,3(%0)\";#else      return \"clr.l -(%0)\;move%.b %1,(3,%0)\";#endif#else      return \"clrl %0@-\;moveb %1,%0@(3)\";#endif    }  else if (GET_CODE (operands[0]) == MEM	   && GET_CODE (XEXP (operands[0], 0)) == POST_INC)    {      operands[0] = XEXP (XEXP (operands[0], 0), 0);#ifdef MOTOROLA#ifdef SGS

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -