亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? m68k.c

?? gcc-2.95.3 Linux下最常用的C編譯器
?? C
?? 第 1 頁 / 共 5 頁
字號:
	  middlehalf[1] = operands[1];	  latehalf[1] = operands[1];	}    }  else    /* size is not 12: */    {      if (optype0 == REGOP)	latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);      else if (optype0 == OFFSOP)	latehalf[0] = adj_offsettable_operand (operands[0], size - 4);      else	latehalf[0] = operands[0];      if (optype1 == REGOP)	latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);      else if (optype1 == OFFSOP)	latehalf[1] = adj_offsettable_operand (operands[1], size - 4);      else if (optype1 == CNSTOP)	split_double (operands[1], &operands[1], &latehalf[1]);      else	latehalf[1] = operands[1];    }  /* If insn is effectively movd N(sp),-(sp) then we will do the     high word first.  We should use the adjusted operand 1 (which is N+4(sp))     for the low word as well, to compensate for the first decrement of sp.  */  if (optype0 == PUSHOP      && REGNO (XEXP (XEXP (operands[0], 0), 0)) == STACK_POINTER_REGNUM      && reg_overlap_mentioned_p (stack_pointer_rtx, operands[1]))    operands[1] = middlehalf[1] = latehalf[1];  /* For (set (reg:DI N) (mem:DI ... (reg:SI N) ...)),     if the upper part of reg N does not appear in the MEM, arrange to     emit the move late-half first.  Otherwise, compute the MEM address     into the upper part of N and use that as a pointer to the memory     operand.  */  if (optype0 == REGOP      && (optype1 == OFFSOP || optype1 == MEMOP))    {      rtx testlow = gen_rtx_REG (SImode, REGNO (operands[0]));      if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))	  && reg_overlap_mentioned_p (latehalf[0], XEXP (operands[1], 0)))	{	  /* If both halves of dest are used in the src memory address,	     compute the address into latehalf of dest.	     Note that this can't happen if the dest is two data regs.  */compadr:	  xops[0] = latehalf[0];	  xops[1] = XEXP (operands[1], 0);	  output_asm_insn ("lea %a1,%0", xops);	  if( GET_MODE (operands[1]) == XFmode )	    {	      operands[1] = gen_rtx_MEM (XFmode, latehalf[0]);	      middlehalf[1] = adj_offsettable_operand (operands[1], size-8);	      latehalf[1] = adj_offsettable_operand (operands[1], size-4);	    }	  else	    {	      operands[1] = gen_rtx_MEM (DImode, latehalf[0]);	      latehalf[1] = adj_offsettable_operand (operands[1], size-4);	    }	}      else if (size == 12	       && reg_overlap_mentioned_p (middlehalf[0],					   XEXP (operands[1], 0)))	{	  /* Check for two regs used by both source and dest.	     Note that this can't happen if the dest is all data regs.	     It can happen if the dest is d6, d7, a0.	     But in that case, latehalf is an addr reg, so	     the code at compadr does ok.  */	  if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))	      || reg_overlap_mentioned_p (latehalf[0], XEXP (operands[1], 0)))	    goto compadr;	  /* JRV says this can't happen: */	  if (addreg0 || addreg1)	    abort ();	  /* Only the middle reg conflicts; simply put it last. */	  output_asm_insn (singlemove_string (operands), operands);	  output_asm_insn (singlemove_string (latehalf), latehalf);	  output_asm_insn (singlemove_string (middlehalf), middlehalf);	  return "";	}      else if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0)))	/* If the low half of dest is mentioned in the source memory	   address, the arrange to emit the move late half first.  */	dest_overlapped_low = 1;    }  /* If one or both operands autodecrementing,     do the two words, high-numbered first.  */  /* Likewise,  the first move would clobber the source of the second one,     do them in the other order.  This happens only for registers;     such overlap can't happen in memory unless the user explicitly     sets it up, and that is an undefined circumstance.  */  if (optype0 == PUSHOP || optype1 == PUSHOP      || (optype0 == REGOP && optype1 == REGOP	  && ((middlehalf[1] && REGNO (operands[0]) == REGNO (middlehalf[1]))	      || REGNO (operands[0]) == REGNO (latehalf[1])))      || dest_overlapped_low)    {      /* Make any unoffsettable addresses point at high-numbered word.  */      if (addreg0)	{	  if (size == 12)	    output_asm_insn ("addq%.l %#8,%0", &addreg0);	  else	    output_asm_insn ("addq%.l %#4,%0", &addreg0);	}      if (addreg1)	{	  if (size == 12)	    output_asm_insn ("addq%.l %#8,%0", &addreg1);	  else	    output_asm_insn ("addq%.l %#4,%0", &addreg1);	}      /* Do that word.  */      output_asm_insn (singlemove_string (latehalf), latehalf);      /* Undo the adds we just did.  */      if (addreg0)	output_asm_insn ("subq%.l %#4,%0", &addreg0);      if (addreg1)	output_asm_insn ("subq%.l %#4,%0", &addreg1);      if (size == 12)	{	  output_asm_insn (singlemove_string (middlehalf), middlehalf);	  if (addreg0)	    output_asm_insn ("subq%.l %#4,%0", &addreg0);	  if (addreg1)	    output_asm_insn ("subq%.l %#4,%0", &addreg1);	}      /* Do low-numbered word.  */      return singlemove_string (operands);    }  /* Normal case: do the two words, low-numbered first.  */  output_asm_insn (singlemove_string (operands), operands);  /* Do the middle one of the three words for long double */  if (size == 12)    {      if (addreg0)	output_asm_insn ("addq%.l %#4,%0", &addreg0);      if (addreg1)	output_asm_insn ("addq%.l %#4,%0", &addreg1);      output_asm_insn (singlemove_string (middlehalf), middlehalf);    }  /* Make any unoffsettable addresses point at high-numbered word.  */  if (addreg0)    output_asm_insn ("addq%.l %#4,%0", &addreg0);  if (addreg1)    output_asm_insn ("addq%.l %#4,%0", &addreg1);  /* Do that word.  */  output_asm_insn (singlemove_string (latehalf), latehalf);  /* Undo the adds we just did.  */  if (addreg0)    {      if (size == 12)        output_asm_insn ("subq%.l %#8,%0", &addreg0);      else        output_asm_insn ("subq%.l %#4,%0", &addreg0);    }  if (addreg1)    {      if (size == 12)        output_asm_insn ("subq%.l %#8,%0", &addreg1);      else        output_asm_insn ("subq%.l %#4,%0", &addreg1);    }  return "";}/* Return a REG that occurs in ADDR with coefficient 1.   ADDR can be effectively incremented by incrementing REG.  */static rtxfind_addr_reg (addr)     rtx addr;{  while (GET_CODE (addr) == PLUS)    {      if (GET_CODE (XEXP (addr, 0)) == REG)	addr = XEXP (addr, 0);      else if (GET_CODE (XEXP (addr, 1)) == REG)	addr = XEXP (addr, 1);      else if (CONSTANT_P (XEXP (addr, 0)))	addr = XEXP (addr, 1);      else if (CONSTANT_P (XEXP (addr, 1)))	addr = XEXP (addr, 0);      else	abort ();    }  if (GET_CODE (addr) == REG)    return addr;  abort ();}/* Output assembler code to perform a 32 bit 3 operand add.  */char *output_addsi3 (operands)     rtx *operands;{  if (! operands_match_p (operands[0], operands[1]))    {      if (!ADDRESS_REG_P (operands[1]))	{	  rtx tmp = operands[1];	  operands[1] = operands[2];	  operands[2] = tmp;	}      /* These insns can result from reloads to access	 stack slots over 64k from the frame pointer.  */      if (GET_CODE (operands[2]) == CONST_INT	  && INTVAL (operands[2]) + 0x8000 >= (unsigned) 0x10000)        return "move%.l %2,%0\n\tadd%.l %1,%0";#ifdef SGS      if (GET_CODE (operands[2]) == REG)	return "lea 0(%1,%2.l),%0";      else	return "lea %c2(%1),%0";#else /* not SGS */#ifdef MOTOROLA      if (GET_CODE (operands[2]) == REG)	return "lea (%1,%2.l),%0";      else	return "lea (%c2,%1),%0";#else /* not MOTOROLA (MIT syntax) */      if (GET_CODE (operands[2]) == REG)	return "lea %1@(0,%2:l),%0";      else	return "lea %1@(%c2),%0";#endif /* not MOTOROLA */#endif /* not SGS */    }  if (GET_CODE (operands[2]) == CONST_INT)    {#ifndef NO_ADDSUB_Q      if (INTVAL (operands[2]) > 0	  && INTVAL (operands[2]) <= 8)	return "addq%.l %2,%0";      if (INTVAL (operands[2]) < 0	  && INTVAL (operands[2]) >= -8)        {	  operands[2] = GEN_INT (-INTVAL (operands[2]));	  return "subq%.l %2,%0";	}      /* On the CPU32 it is faster to use two addql instructions to	 add a small integer (8 < N <= 16) to a register.	 Likewise for subql. */      if (TARGET_CPU32 && REG_P (operands[0]))	{	  if (INTVAL (operands[2]) > 8	      && INTVAL (operands[2]) <= 16)	    {	      operands[2] = GEN_INT (INTVAL (operands[2]) - 8);	      return "addq%.l %#8,%0\n\taddq%.l %2,%0";	    }	  if (INTVAL (operands[2]) < -8	      && INTVAL (operands[2]) >= -16)	    {	      operands[2] = GEN_INT (-INTVAL (operands[2]) - 8);	      return "subq%.l %#8,%0\n\tsubq%.l %2,%0";	    }	}#endif      if (ADDRESS_REG_P (operands[0])	  && INTVAL (operands[2]) >= -0x8000	  && INTVAL (operands[2]) < 0x8000)	{	  if (TARGET_68040)	    return "add%.w %2,%0";	  else#ifdef MOTOROLA  	    return "lea (%c2,%0),%0";#else	    return "lea %0@(%c2),%0";#endif	}    }  return "add%.l %2,%0";}/* Store in cc_status the expressions that the condition codes will   describe after execution of an instruction whose pattern is EXP.   Do not alter them if the instruction would not alter the cc's.  *//* On the 68000, all the insns to store in an address register fail to   set the cc's.  However, in some cases these instructions can make it   possibly invalid to use the saved cc's.  In those cases we clear out   some or all of the saved cc's so they won't be used.  */voidnotice_update_cc (exp, insn)     rtx exp;     rtx insn;{  /* If the cc is being set from the fpa and the expression is not an     explicit floating point test instruction (which has code to deal with     this), reinit the CC.  */  if (((cc_status.value1 && FPA_REG_P (cc_status.value1))       || (cc_status.value2 && FPA_REG_P (cc_status.value2)))      && !(GET_CODE (exp) == PARALLEL	   && GET_CODE (XVECEXP (exp, 0, 0)) == SET	   && XEXP (XVECEXP (exp, 0, 0), 0) == cc0_rtx))    {      CC_STATUS_INIT;     }  else if (GET_CODE (exp) == SET)    {      if (GET_CODE (SET_SRC (exp)) == CALL)	{	  CC_STATUS_INIT; 	}      else if (ADDRESS_REG_P (SET_DEST (exp)))	{	  if (cc_status.value1 && modified_in_p (cc_status.value1, insn))	    cc_status.value1 = 0;	  if (cc_status.value2 && modified_in_p (cc_status.value2, insn))	    cc_status.value2 = 0; 	}      else if (!FP_REG_P (SET_DEST (exp))	       && SET_DEST (exp) != cc0_rtx	       && (FP_REG_P (SET_SRC (exp))		   || GET_CODE (SET_SRC (exp)) == FIX		   || GET_CODE (SET_SRC (exp)) == FLOAT_TRUNCATE		   || GET_CODE (SET_SRC (exp)) == FLOAT_EXTEND))	{	  CC_STATUS_INIT; 	}      /* A pair of move insns doesn't produce a useful overall cc.  */      else if (!FP_REG_P (SET_DEST (exp))	       && !FP_REG_P (SET_SRC (exp))	       && GET_MODE_SIZE (GET_MODE (SET_SRC (exp))) > 4	       && (GET_CODE (SET_SRC (exp)) == REG		   || GET_CODE (SET_SRC (exp)) == MEM		   || GET_CODE (SET_SRC (exp)) == CONST_DOUBLE))	{	  CC_STATUS_INIT; 	}      else if (GET_CODE (SET_SRC (exp)) == CALL)	{	  CC_STATUS_INIT; 	}      else if (XEXP (exp, 0) != pc_rtx)	{	  cc_status.flags = 0;	  cc_status.value1 = XEXP (exp, 0);	  cc_status.value2 = XEXP (exp, 1);	}    }  else if (GET_CODE (exp) == PARALLEL	   && GET_CODE (XVECEXP (exp, 0, 0)) == SET)    {      if (ADDRESS_REG_P (XEXP (XVECEXP (exp, 0, 0), 0)))	CC_STATUS_INIT;      else if (XEXP (XVECEXP (exp, 0, 0), 0) != pc_rtx)	{	  cc_status.flags = 0;	  cc_status.value1 = XEXP (XVECEXP (exp, 0, 0), 0);	  cc_status.value2 = XEXP (XVECEXP (exp, 0, 0), 1);	}    }  else    CC_STATUS_INIT;  if (cc_status.value2 != 0      && ADDRESS_REG_P (cc_status.value2)      && GET_MODE (cc_status.value2) == QImode)    CC_STATUS_INIT;  if (cc_status.value2 != 0      && !(cc_status.value1 && FPA_REG_P (cc_status.value1)))    switch (GET_CODE (cc_status.value2))      {      case PLUS: case MINUS: case MULT:      case DIV: case UDIV: case MOD: case UMOD: case NEG:#if 0 /* These instructions always clear the overflow bit */      case ASHIFT: case ASHIFTRT: case LSHIFTRT:      case ROTATE: case ROTATERT:#endif	if (GET_MODE (cc_status.value2) != VOIDmode)	  cc_status.flags |= CC_NO_OVERFLOW;	break;      case ZERO_EXTEND:	/* (SET r1 (ZERO_EXTEND r2)) on this machine	   ends with a move insn moving r2 in r2's mode.	   Thus, the cc's are set for r2.	   This can set N bit spuriously. */	cc_status.flags |= CC_NOT_NEGATIVE;       default:	break;      }  if (cc_status.value1 && GET_CODE (cc_status.value1) == REG      && cc_status.value2      && reg_overlap_mentioned_p (cc_status.value1, cc_status.value2))    cc_status.value2 = 0;  if (((cc_status.value1 && FP_REG_P (cc_status.value1))       || (cc_status.value2 && FP_REG_P (cc_status.value2)))      && !((cc_status.value1 && FPA_REG_P (cc_status.value1))	   || (cc_status.value2 && FPA_REG_P (cc_status.value2))))    cc_status.flags = CC_IN_68881;}char *output_move_const_double (operands)     rtx *operands;{#ifdef SUPPORT_SUN_FPA  if (TARGET_FPA && FPA_REG_P (operands[0]))    {      int code = standard_sun_fpa_constant_p (operands[1]);      if (code != 0)	{	  static char buf[40];	  sprintf (buf, "fpmove%%.d %%%%%d,%%0", code & 0x1ff);	  return buf;	}      return "fpmove%.d %1,%0";    }  else#endif    {      int code = standard_68881_constant_p (operands[1]);      if (code != 0)	{	  static char buf[40];	  sprintf (buf, "fmovecr %%#0x%x,%%0", code & 0xff);	  return buf;	}      return "fmove%.d %1,%0";    }}char *output_move_const_single (operands)     rtx *operands;{#ifdef SUPPORT_SUN_FPA  if (TARGET_FPA)    {      int code = standard_sun_fpa_constant_p (operands[1]);      if (code != 0)	{	  static char buf[40];	  sprintf (buf, "fp

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美一级在线播放| 五月激情六月综合| 亚洲成人av一区二区三区| 国产一区二区导航在线播放| 一本久道久久综合中文字幕| 精品国产99国产精品| 亚洲国产精品视频| heyzo一本久久综合| 久久伊人中文字幕| 日日摸夜夜添夜夜添亚洲女人| 91在线一区二区三区| 久久久不卡网国产精品二区 | 色欧美乱欧美15图片| 久久一区二区三区国产精品| 亚洲成人7777| 一本到不卡精品视频在线观看| 国产午夜一区二区三区| 久久精品国产精品青草| 欧美一区二区三区四区五区| 亚洲国产日韩一级| 欧洲色大大久久| 亚洲日本一区二区| 91浏览器在线视频| 国产精品国模大尺度视频| 成人精品免费看| 国产午夜精品一区二区三区视频| 久久99国产精品成人| 欧美色图片你懂的| 亚洲韩国一区二区三区| 欧美三级电影在线观看| 午夜精品久久久久久| 欧美乱妇15p| 美女脱光内衣内裤视频久久网站 | 精品久久久久久久久久久久久久久久久| 依依成人综合视频| kk眼镜猥琐国模调教系列一区二区| 欧美激情资源网| 波多野结衣91| 亚洲欧美激情视频在线观看一区二区三区 | 国产精品水嫩水嫩| 这里只有精品免费| 午夜欧美在线一二页| 在线播放中文字幕一区| 久久精品99久久久| 久久久亚洲午夜电影| 成人激情开心网| 一区二区在线观看免费视频播放| 在线国产亚洲欧美| 免费看日韩a级影片| 久久午夜色播影院免费高清 | 国产亚洲综合在线| 成人激情电影免费在线观看| 一区二区三区四区激情| 欧美浪妇xxxx高跟鞋交| 国产一区二区三区在线观看精品| 中文字幕av免费专区久久| 欧美吻胸吃奶大尺度电影 | 亚洲制服丝袜在线| 欧美一区二区性放荡片| 国产91丝袜在线观看| 亚洲一二三区在线观看| 亚洲精品一区二区精华| 91看片淫黄大片一级| 青青草国产成人av片免费| 欧美激情在线一区二区三区| 欧美亚洲国产bt| 国产精华液一区二区三区| 一区二区三区不卡视频在线观看| 欧美一区二区精品在线| www.日韩精品| 蜜臀久久99精品久久久久久9| 国产日韩欧美一区二区三区乱码| 欧美这里有精品| 丰满少妇久久久久久久| 天天综合网天天综合色| 中文字幕一区二| 精品国产一区二区三区四区四| 91啦中文在线观看| 国产一区二区三区精品欧美日韩一区二区三区 | 久久福利资源站| 亚洲精品自拍动漫在线| 久久精品日产第一区二区三区高清版| 本田岬高潮一区二区三区| 日本不卡不码高清免费观看| 国产精品视频免费看| 日韩你懂的在线播放| 在线视频欧美区| 成人福利视频网站| 韩国精品主播一区二区在线观看| 一二三区精品福利视频| 国产精品女同互慰在线看 | 欧美日韩国产免费一区二区| 国产成人一区二区精品非洲| 日韩av电影一区| 亚洲午夜免费福利视频| 国产精品视频一二三区| 久久婷婷国产综合国色天香| 欧美日韩日日骚| 色8久久精品久久久久久蜜| jlzzjlzz亚洲日本少妇| 国产高清精品网站| 国内精品伊人久久久久av一坑| 亚洲电影激情视频网站| 亚洲一区二区三区四区的| 自拍偷拍亚洲欧美日韩| 国产精品乱码一区二区三区软件| 精品国产一区二区三区四区四| 欧美肥妇bbw| 欧美日韩一区视频| 在线播放中文一区| 欧美一区二区视频观看视频| 欧美精品免费视频| 欧美福利视频一区| 欧美精选一区二区| 91精品国产91热久久久做人人| 欧美高清性hdvideosex| 欧美高清视频一二三区| 欧美一区二区三区影视| 精品久久久久一区二区国产| 精品欧美一区二区三区精品久久| 日韩精品一区二区三区中文精品| 日韩一级片网址| 久久久蜜桃精品| 国产精品麻豆一区二区 | 欧美怡红院视频| 欧美视频在线观看一区| 在线观看91av| 久久综合国产精品| 中文字幕一区视频| 午夜视频在线观看一区| 午夜一区二区三区在线观看| 秋霞影院一区二区| 国产黄色精品视频| 在线日韩一区二区| 日韩欧美123| 中文字幕视频一区| 偷拍日韩校园综合在线| 捆绑紧缚一区二区三区视频| 国产精一区二区三区| av成人动漫在线观看| 欧美日韩国产另类一区| 久久青草欧美一区二区三区| 综合亚洲深深色噜噜狠狠网站| 亚洲一区二区三区在线| 国内精品在线播放| 欧美在线一二三四区| 精品国产91洋老外米糕| 亚洲丝袜精品丝袜在线| 老司机免费视频一区二区三区| av成人免费在线观看| 91精品国产麻豆国产自产在线 | 精品福利一区二区三区免费视频| 久久精品视频一区二区三区| 亚洲专区一二三| 国产成人免费视频网站| 欧美日韩国产欧美日美国产精品| 国产欧美日韩在线视频| 天天综合网 天天综合色| 99在线精品免费| 日韩欧美国产电影| 亚洲成人中文在线| 91在线观看视频| 久久综合色一综合色88| 亚洲国产成人91porn| 成人高清视频免费观看| 精品乱人伦小说| 午夜不卡av免费| 色婷婷久久久综合中文字幕| 久久久亚洲精品石原莉奈 | 成人a免费在线看| 日韩三区在线观看| 亚洲精品免费在线| 成人av集中营| 久久免费国产精品| 日本va欧美va精品| 欧美性猛交xxxxxx富婆| 国产精品乱码一区二区三区软件 | 亚洲高清一区二区三区| www.欧美色图| 2021国产精品久久精品| 欧美aaaaaa午夜精品| 欧美日韩三级在线| 亚洲精选一二三| 99综合电影在线视频| 国产喂奶挤奶一区二区三区| 久久激情综合网| 日韩视频一区二区三区在线播放 | 国产精品一级片在线观看| 日韩欧美一级片| 男男gaygay亚洲| 欧美一区二区三区视频在线观看| 亚洲一二三区不卡| 欧美猛男gaygay网站| 亚洲综合激情网| 欧美色图免费看| 免费欧美在线视频| 欧美变态口味重另类| 久久99在线观看| 26uuuu精品一区二区| 懂色av一区二区夜夜嗨|