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

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

?? m68k.c

?? gcc-2.95.3 Linux下最常用的C編譯器
?? C
?? 第 1 頁 / 共 5 頁
字號:
{  switch (const_method (constant))    {      case MOVQ :      /* Constants between -128 and 127 are cheap due to moveq */	return 0;      case NOTB :      case NOTW :      case NEGW :      case SWAP :      /* Constants easily generated by moveq + not.b/not.w/neg.w/swap  */        return 1;      case MOVL :	return 2;      default :        abort ();    }}char *output_move_const_into_data_reg (operands)     rtx *operands;{  int i;  i = INTVAL (operands[1]);  switch (const_method (operands[1]))    {    case MOVQ :#if defined (MOTOROLA) && !defined (CRDS)      return "moveq%.l %1,%0";#else      return "moveq %1,%0";#endif    case NOTB :      operands[1] = GEN_INT (i ^ 0xff);#if defined (MOTOROLA) && !defined (CRDS)      return "moveq%.l %1,%0\n\tnot%.b %0";#else      return "moveq %1,%0\n\tnot%.b %0";#endif	     case NOTW :      operands[1] = GEN_INT (i ^ 0xffff);#if defined (MOTOROLA) && !defined (CRDS)      return "moveq%.l %1,%0\n\tnot%.w %0";#else      return "moveq %1,%0\n\tnot%.w %0";#endif	     case NEGW :#if defined (MOTOROLA) && !defined (CRDS)      return "moveq%.l %#-128,%0\n\tneg%.w %0";#else      return "moveq %#-128,%0\n\tneg%.w %0";#endif	     case SWAP :      {	unsigned u = i;	operands[1] = GEN_INT ((u << 16) | (u >> 16));#if defined (MOTOROLA) && !defined (CRDS)	return "moveq%.l %1,%0\n\tswap %0";#else	return "moveq %1,%0\n\tswap %0";#endif	       }    case MOVL :	return "move%.l %1,%0";    default :	abort ();    }}char *output_move_simode_const (operands)     rtx *operands;{  if (operands[1] == const0_rtx      && (DATA_REG_P (operands[0])	  || GET_CODE (operands[0]) == MEM)      /* clr insns on 68000 read before writing.	 This isn't so on the 68010, but we have no TARGET_68010.  */      && ((TARGET_68020 || TARGET_5200)	  || !(GET_CODE (operands[0]) == MEM	       && MEM_VOLATILE_P (operands[0]))))    return "clr%.l %0";  else if (operands[1] == const0_rtx	   && ADDRESS_REG_P (operands[0]))    return "sub%.l %0,%0";  else if (DATA_REG_P (operands[0]))    return output_move_const_into_data_reg (operands);  else if (ADDRESS_REG_P (operands[0])	   && INTVAL (operands[1]) < 0x8000	   && INTVAL (operands[1]) >= -0x8000)    return "move%.w %1,%0";  else if (GET_CODE (operands[0]) == MEM      && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC      && REGNO (XEXP (XEXP (operands[0], 0), 0)) == STACK_POINTER_REGNUM	   && INTVAL (operands[1]) < 0x8000	   && INTVAL (operands[1]) >= -0x8000)    return "pea %a1";  return "move%.l %1,%0";}char *output_move_simode (operands)     rtx *operands;{  if (GET_CODE (operands[1]) == CONST_INT)    return output_move_simode_const (operands);  else if ((GET_CODE (operands[1]) == SYMBOL_REF	    || GET_CODE (operands[1]) == CONST)	   && push_operand (operands[0], SImode))    return "pea %a1";  else if ((GET_CODE (operands[1]) == SYMBOL_REF	    || GET_CODE (operands[1]) == CONST)	   && ADDRESS_REG_P (operands[0]))    return "lea %a1,%0";  return "move%.l %1,%0";}char *output_move_himode (operands)     rtx *operands;{ if (GET_CODE (operands[1]) == CONST_INT)    {      if (operands[1] == const0_rtx	  && (DATA_REG_P (operands[0])	      || GET_CODE (operands[0]) == MEM)	  /* clr insns on 68000 read before writing.	     This isn't so on the 68010, but we have no TARGET_68010.  */	  && ((TARGET_68020 || TARGET_5200)	      || !(GET_CODE (operands[0]) == MEM		   && MEM_VOLATILE_P (operands[0]))))	return "clr%.w %0";      else if (operands[1] == const0_rtx	       && ADDRESS_REG_P (operands[0]))	return "sub%.l %0,%0";      else if (DATA_REG_P (operands[0])	       && INTVAL (operands[1]) < 128	       && INTVAL (operands[1]) >= -128)	{#if defined(MOTOROLA) && !defined(CRDS)	  return "moveq%.l %1,%0";#else	  return "moveq %1,%0";#endif	}      else if (INTVAL (operands[1]) < 0x8000	       && INTVAL (operands[1]) >= -0x8000)	return "move%.w %1,%0";    }  else if (CONSTANT_P (operands[1]))    return "move%.l %1,%0";#ifndef SGS_NO_LI  /* Recognize the insn before a tablejump, one that refers     to a table of offsets.  Such an insn will need to refer     to a label on the insn.  So output one.  Use the label-number     of the table of offsets to generate this label.  This code,     and similar code below, assumes that there will be at most one     reference to each table.  */  if (GET_CODE (operands[1]) == MEM      && GET_CODE (XEXP (operands[1], 0)) == PLUS      && GET_CODE (XEXP (XEXP (operands[1], 0), 1)) == LABEL_REF      && GET_CODE (XEXP (XEXP (operands[1], 0), 0)) != PLUS)    {      rtx labelref = XEXP (XEXP (operands[1], 0), 1);#if defined (MOTOROLA) && !defined (SGS_SWITCH_TABLES)#ifdef SGS      asm_fprintf (asm_out_file, "\tset %LLI%d,.+2\n",		   CODE_LABEL_NUMBER (XEXP (labelref, 0)));#else /* not SGS */      asm_fprintf (asm_out_file, "\t.set %LLI%d,.+2\n",		   CODE_LABEL_NUMBER (XEXP (labelref, 0)));#endif /* not SGS */#else /* SGS_SWITCH_TABLES or not MOTOROLA */      ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LI",				 CODE_LABEL_NUMBER (XEXP (labelref, 0)));#ifdef SGS_SWITCH_TABLES      /* Set flag saying we need to define the symbol	 LD%n (with value L%n-LI%n) at the end of the switch table.  */      switch_table_difference_label_flag = 1;#endif /* SGS_SWITCH_TABLES */#endif /* SGS_SWITCH_TABLES or not MOTOROLA */    }#endif /* SGS_NO_LI */  return "move%.w %1,%0";}char *output_move_qimode (operands)     rtx *operands;{  rtx xoperands[4];  /* This is probably useless, since it loses for pushing a struct     of several bytes a byte at a time.	 */  /* 68k family always modifies the stack pointer by at least 2, even for     byte pushes.  The 5200 (coldfire) does not do this.  */  if (GET_CODE (operands[0]) == MEM      && GET_CODE (XEXP (operands[0], 0)) == PRE_DEC      && XEXP (XEXP (operands[0], 0), 0) == stack_pointer_rtx      && ! ADDRESS_REG_P (operands[1])      && ! TARGET_5200)    {      xoperands[1] = operands[1];      xoperands[2]	= gen_rtx_MEM (QImode,		       gen_rtx_PLUS (VOIDmode, stack_pointer_rtx, const1_rtx));      /* Just pushing a byte puts it in the high byte of the halfword.	*/      /* We must put it in the low-order, high-numbered byte.  */      if (!reg_mentioned_p (stack_pointer_rtx, operands[1]))	{	  xoperands[3] = stack_pointer_rtx;#ifndef NO_ADDSUB_Q	  output_asm_insn ("subq%.l %#2,%3\n\tmove%.b %1,%2", xoperands);#else	  output_asm_insn ("sub%.l %#2,%3\n\tmove%.b %1,%2", xoperands);#endif	}      else	output_asm_insn ("move%.b %1,%-\n\tmove%.b %@,%2", xoperands);      return "";    }  /* clr and st insns on 68000 read before writing.     This isn't so on the 68010, but we have no TARGET_68010.  */  if (!ADDRESS_REG_P (operands[0])      && ((TARGET_68020 || TARGET_5200)	  || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))    {      if (operands[1] == const0_rtx)	return "clr%.b %0";      if ((!TARGET_5200 || DATA_REG_P (operands[0]))	  && GET_CODE (operands[1]) == CONST_INT	  && (INTVAL (operands[1]) & 255) == 255)	{	  CC_STATUS_INIT;	  return "st %0";	}    }  if (GET_CODE (operands[1]) == CONST_INT      && DATA_REG_P (operands[0])      && INTVAL (operands[1]) < 128      && INTVAL (operands[1]) >= -128)    {#if defined(MOTOROLA) && !defined(CRDS)      return "moveq%.l %1,%0";#else      return "moveq %1,%0";#endif    }  if (operands[1] == const0_rtx && ADDRESS_REG_P (operands[0]))    return "sub%.l %0,%0";  if (GET_CODE (operands[1]) != CONST_INT && CONSTANT_P (operands[1]))    return "move%.l %1,%0";  /* 68k family (including the 5200 coldfire) does not support byte moves to     from address registers.  */  if (ADDRESS_REG_P (operands[0]) || ADDRESS_REG_P (operands[1]))    return "move%.w %1,%0";  return "move%.b %1,%0";}char *output_move_stricthi (operands)     rtx *operands;{  if (operands[1] == const0_rtx      /* clr insns on 68000 read before writing.	 This isn't so on the 68010, but we have no TARGET_68010.  */      && ((TARGET_68020 || TARGET_5200)	  || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))    return "clr%.w %0";  return "move%.w %1,%0";}char *output_move_strictqi (operands)     rtx *operands;{  if (operands[1] == const0_rtx      /* clr insns on 68000 read before writing.         This isn't so on the 68010, but we have no TARGET_68010.  */      && ((TARGET_68020 || TARGET_5200)          || !(GET_CODE (operands[0]) == MEM && MEM_VOLATILE_P (operands[0]))))    return "clr%.b %0";  return "move%.b %1,%0";}/* Return the best assembler insn template   for moving operands[1] into operands[0] as a fullword.  */static char *singlemove_string (operands)     rtx *operands;{#ifdef SUPPORT_SUN_FPA  if (FPA_REG_P (operands[0]) || FPA_REG_P (operands[1]))    return "fpmoves %1,%0";#endif  if (GET_CODE (operands[1]) == CONST_INT)    return output_move_simode_const (operands);  return "move%.l %1,%0";}/* Output assembler code to perform a doubleword move insn   with operands OPERANDS.  */char *output_move_double (operands)     rtx *operands;{  enum    {      REGOP, OFFSOP, MEMOP, PUSHOP, POPOP, CNSTOP, RNDOP    } optype0, optype1;  rtx latehalf[2];  rtx middlehalf[2];  rtx xops[2];  rtx addreg0 = 0, addreg1 = 0;  int dest_overlapped_low = 0;  int size = GET_MODE_SIZE (GET_MODE (operands[0]));  middlehalf[0] = 0;  middlehalf[1] = 0;  /* First classify both operands.  */  if (REG_P (operands[0]))    optype0 = REGOP;  else if (offsettable_memref_p (operands[0]))    optype0 = OFFSOP;  else if (GET_CODE (XEXP (operands[0], 0)) == POST_INC)    optype0 = POPOP;  else if (GET_CODE (XEXP (operands[0], 0)) == PRE_DEC)    optype0 = PUSHOP;  else if (GET_CODE (operands[0]) == MEM)    optype0 = MEMOP;  else    optype0 = RNDOP;  if (REG_P (operands[1]))    optype1 = REGOP;  else if (CONSTANT_P (operands[1]))    optype1 = CNSTOP;  else if (offsettable_memref_p (operands[1]))    optype1 = OFFSOP;  else if (GET_CODE (XEXP (operands[1], 0)) == POST_INC)    optype1 = POPOP;  else if (GET_CODE (XEXP (operands[1], 0)) == PRE_DEC)    optype1 = PUSHOP;  else if (GET_CODE (operands[1]) == MEM)    optype1 = MEMOP;  else    optype1 = RNDOP;  /* Check for the cases that the operand constraints are not     supposed to allow to happen.  Abort if we get one,     because generating code for these cases is painful.  */  if (optype0 == RNDOP || optype1 == RNDOP)    abort ();  /* If one operand is decrementing and one is incrementing     decrement the former register explicitly     and change that operand into ordinary indexing.  */  if (optype0 == PUSHOP && optype1 == POPOP)    {      operands[0] = XEXP (XEXP (operands[0], 0), 0);      if (size == 12)        output_asm_insn ("sub%.l %#12,%0", operands);      else        output_asm_insn ("subq%.l %#8,%0", operands);      if (GET_MODE (operands[1]) == XFmode)	operands[0] = gen_rtx_MEM (XFmode, operands[0]);      else if (GET_MODE (operands[0]) == DFmode)	operands[0] = gen_rtx_MEM (DFmode, operands[0]);      else	operands[0] = gen_rtx_MEM (DImode, operands[0]);      optype0 = OFFSOP;    }  if (optype0 == POPOP && optype1 == PUSHOP)    {      operands[1] = XEXP (XEXP (operands[1], 0), 0);      if (size == 12)        output_asm_insn ("sub%.l %#12,%1", operands);      else        output_asm_insn ("subq%.l %#8,%1", operands);      if (GET_MODE (operands[1]) == XFmode)	operands[1] = gen_rtx_MEM (XFmode, operands[1]);      else if (GET_MODE (operands[1]) == DFmode)	operands[1] = gen_rtx_MEM (DFmode, operands[1]);      else	operands[1] = gen_rtx_MEM (DImode, operands[1]);      optype1 = OFFSOP;    }  /* If an operand is an unoffsettable memory ref, find a register     we can increment temporarily to make it refer to the second word.  */  if (optype0 == MEMOP)    addreg0 = find_addr_reg (XEXP (operands[0], 0));  if (optype1 == MEMOP)    addreg1 = find_addr_reg (XEXP (operands[1], 0));  /* Ok, we can do one word at a time.     Normally we do the low-numbered word first,     but if either operand is autodecrementing then we     do the high-numbered word first.     In either case, set up in LATEHALF the operands to use     for the high-numbered word and in some cases alter the     operands in OPERANDS to be suitable for the low-numbered word.  */  if (size == 12)    {      if (optype0 == REGOP)	{	  latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 2);	  middlehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);	}      else if (optype0 == OFFSOP)	{	  middlehalf[0] = adj_offsettable_operand (operands[0], 4);	  latehalf[0] = adj_offsettable_operand (operands[0], size - 4);	}      else	{	  middlehalf[0] = operands[0];	  latehalf[0] = operands[0];	}      if (optype1 == REGOP)	{	  latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 2);	  middlehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);	}      else if (optype1 == OFFSOP)	{	  middlehalf[1] = adj_offsettable_operand (operands[1], 4);	  latehalf[1] = adj_offsettable_operand (operands[1], size - 4);	}      else if (optype1 == CNSTOP)	{	  if (GET_CODE (operands[1]) == CONST_DOUBLE)	    {	      REAL_VALUE_TYPE r;	      long l[3];	      REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);	      REAL_VALUE_TO_TARGET_LONG_DOUBLE (r, l);	      operands[1] = GEN_INT (l[0]);	      middlehalf[1] = GEN_INT (l[1]);	      latehalf[1] = GEN_INT (l[2]);	    }	  else if (CONSTANT_P (operands[1]))	    {	      /* actually, no non-CONST_DOUBLE constant should ever		 appear here.  */	      abort ();	      if (GET_CODE (operands[1]) == CONST_INT && INTVAL (operands[1]) < 0)		latehalf[1] = constm1_rtx;	      else		latehalf[1] = const0_rtx;	    }	}      else	{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品国产高清久久伦理二区| 免费久久精品视频| 91精品国产美女浴室洗澡无遮挡| av资源网一区| 国产成人自拍网| 国产成人av一区二区| 欧美日韩高清一区| 欧美视频在线播放| 欧美日韩久久一区| 中文字幕中文字幕中文字幕亚洲无线| 久久夜色精品国产欧美乱极品| 欧美一级淫片007| 亚洲成av人综合在线观看| 天堂在线一区二区| 亚洲欧美激情插| 午夜av一区二区| 欧美色电影在线| 国产亚洲欧美激情| 一区二区在线看| 色婷婷狠狠综合| 欧美日韩一级二级三级| 亚洲免费在线视频| 91麻豆国产福利在线观看| 欧美性生活影院| 亚洲美女在线国产| 色噜噜狠狠色综合中国| 欧美一区二区三区婷婷月色| 亚洲国产aⅴ成人精品无吗| 日韩二区三区四区| 国产99久久久精品| 日本韩国欧美在线| 亚洲精品成人悠悠色影视| 99热99精品| 亚洲精品福利视频网站| 91在线观看视频| 亚洲精品少妇30p| 欧美三级三级三级爽爽爽| 天天综合网天天综合色| 日韩欧美一卡二卡| 中文字幕亚洲精品在线观看| 日韩—二三区免费观看av| 91精品国产麻豆| 国产一区二区三区日韩| 在线视频综合导航| 国产欧美精品一区二区色综合| 午夜视频在线观看一区二区| 在线综合亚洲欧美在线视频| 成人欧美一区二区三区1314| 欧洲一区在线观看| 奇米影视一区二区三区| 久久女同性恋中文字幕| 日欧美一区二区| 精品国产凹凸成av人网站| 亚洲成人av中文| 精品国产123| 99久久婷婷国产综合精品| 久久免费美女视频| 91视频在线看| 麻豆精品在线观看| 欧美日韩不卡一区二区| 国产一区在线观看视频| 亚洲婷婷综合色高清在线| 成人久久视频在线观看| 国产日韩亚洲欧美综合| 色婷婷综合久久| 狠狠色丁香九九婷婷综合五月 | 国产精品国产三级国产普通话三级| 成人激情综合网站| 中文字幕在线观看一区二区| 色94色欧美sute亚洲线路一ni| 美腿丝袜亚洲三区| 亚洲欧洲国产日本综合| 欧美一区二区三区思思人| 成人av小说网| 久久电影网站中文字幕| 日韩视频免费直播| 久久国产精品99久久人人澡| 国产精品久久久久久妇女6080 | 91尤物视频在线观看| 日韩高清一区二区| 亚洲欧洲日产国产综合网| 91精品欧美综合在线观看最新 | 韩国v欧美v亚洲v日本v| 亚洲精品久久嫩草网站秘色| 久久色.com| 91精品蜜臀在线一区尤物| 91网站在线播放| 国产在线播精品第三| 日日欢夜夜爽一区| 一区二区欧美视频| 欧美一区二区三区视频在线观看| 91美女片黄在线观看91美女| 国产成人午夜99999| 久久不见久久见免费视频7| 亚洲国产人成综合网站| 亚洲欧美一区二区久久| 欧美激情在线看| 欧美亚洲一区二区在线观看| 99久久777色| 97超碰欧美中文字幕| 国产激情偷乱视频一区二区三区| 久久精品国产澳门| 蜜臀av一级做a爰片久久| 午夜精品福利一区二区蜜股av| 亚洲人成网站在线| 亚洲欧美另类图片小说| 国产精品国产三级国产aⅴ入口| 精品1区2区在线观看| 精品福利在线导航| 久久婷婷国产综合精品青草| 精品裸体舞一区二区三区| av亚洲精华国产精华| 国产成+人+日韩+欧美+亚洲| 国产尤物一区二区| 国产成人自拍在线| 成人免费视频一区二区| 国产91精品免费| 成人激情文学综合网| 99视频一区二区| 色成人在线视频| 欧美性感一区二区三区| 7777精品伊人久久久大香线蕉最新版| 欧美群妇大交群中文字幕| 欧美猛男男办公室激情| 日韩精品一区二区三区视频| 久久综合九色综合欧美98| 久久久精品国产免大香伊| 国产精品三级在线观看| 日韩视频在线你懂得| www一区二区| 国产精品国产自产拍在线| 国产精品亲子乱子伦xxxx裸| 国产精品白丝在线| 亚洲第一主播视频| 久久电影网电视剧免费观看| 成人黄色一级视频| 欧美在线视频全部完| 欧美一区二区三区不卡| 国产亚洲美州欧州综合国| 亚洲免费av在线| 日本不卡高清视频| 国产成人日日夜夜| 欧美丝袜丝交足nylons图片| 日韩欧美一级特黄在线播放| 国产精品色婷婷久久58| 亚洲成年人影院| 国产一区二区三区黄视频| 99re这里都是精品| 在线综合亚洲欧美在线视频| 国产欧美综合色| 日韩一区精品字幕| 白白色 亚洲乱淫| 欧美一区二区三区视频| 国产精品拍天天在线| 琪琪一区二区三区| 99re6这里只有精品视频在线观看| 欧美日韩成人综合天天影院| 中文字幕精品综合| 日本亚洲电影天堂| 91丝袜美腿高跟国产极品老师| 日韩精品一区二区三区四区 | 日韩福利视频导航| 97国产精品videossex| 精品av综合导航| 日日夜夜精品视频免费| aaa亚洲精品一二三区| 精品日韩在线一区| 五月综合激情网| 色综合久久久久综合体| 久久伊99综合婷婷久久伊| 天使萌一区二区三区免费观看| 成人丝袜高跟foot| 日韩一区二区影院| 亚洲一区中文在线| 亚洲一区二区欧美激情| 成人黄色av网站在线| 欧美成人精品二区三区99精品| 亚洲国产精品久久艾草纯爱| 99视频有精品| 中文字幕av不卡| 国产在线精品一区二区不卡了| 欧美日韩高清一区二区三区| 亚洲三级视频在线观看| 成人a级免费电影| 久久久久久久久99精品| 极品少妇xxxx精品少妇| www.欧美.com| 欧美韩国日本不卡| 国产黄色精品网站| 欧美精品一区男女天堂| 久久精工是国产品牌吗| 91精品一区二区三区久久久久久 | 久久不见久久见中文字幕免费| 欧美久久一二区| 久久精品亚洲精品国产欧美kt∨| 毛片av中文字幕一区二区| 91精品国模一区二区三区| 亚洲国产日日夜夜| 欧美精品在线视频| 亚洲一区二区三区美女|