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

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

?? out-m68k.c

?? 這是完整的gcc源代碼
?? C
字號:
/* Subroutines for insn-output.c for Motorola 68000 family.   Copyright (C) 1987 Free Software Foundation, Inc.This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 1, or (at your option)any later version.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING.  If not, write tothe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  *//* Some output-actions in m68k.md need these.  */#include <stdio.h>extern FILE *asm_out_file;/* Index into this array by (register number >> 3) to find the   smallest class which contains that register.  */enum reg_class regno_reg_class[]  = { DATA_REGS, ADDR_REGS, FP_REGS,      LO_FPA_REGS, LO_FPA_REGS, FPA_REGS, FPA_REGS };static rtx find_addr_reg ();char *output_btst (operands, countop, dataop, insn, signpos)     rtx *operands;     rtx countop, dataop;     rtx insn;     int signpos;{  operands[0] = countop;  operands[1] = dataop;  if (GET_CODE (countop) == CONST_INT)    {      register int count = INTVAL (countop);      /* If COUNT is bigger than size of storage unit in use,	 advance to the containing unit of same size.  */      if (count > signpos)	{	  int offset = (count & ~signpos) / 8;	  count = count & signpos;	  operands[1] = dataop = adj_offsettable_operand (dataop, offset);	}      if (count == signpos)	cc_status.flags = CC_NOT_POSITIVE | CC_Z_IN_NOT_N;      else	cc_status.flags = CC_NOT_NEGATIVE | CC_Z_IN_NOT_N;      if (count == 31	  && next_insns_test_no_inequality (insn))	return "tst%.l %1";      if (count == 15	  && next_insns_test_no_inequality (insn))	return "tst%.w %1";      if (count == 7	  && next_insns_test_no_inequality (insn))	return "tst%.b %1";      cc_status.flags = CC_NOT_NEGATIVE;    }  return "btst %0,%1";}/* Return the best assembler insn template   for moving operands[1] into operands[0] as a fullword.  */static char *singlemove_string (operands)     rtx *operands;{  if (FPA_REG_P (operands[0]) || FPA_REG_P (operands[1]))    return "fpmoves %1,%0";  if (operands[1] != const0_rtx)    return "move%.l %1,%0";  if (! ADDRESS_REG_P (operands[0]))    return "clr%.l %0";  return "sub%.l %0,%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 addreg0 = 0, addreg1 = 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])	   || GET_CODE (operands[1]) == CONST_DOUBLE)    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);      output_asm_insn ("subq%.l %#8,%0", operands);      operands[0] = gen_rtx (MEM, DImode, operands[0]);      optype0 = OFFSOP;    }  if (optype0 == POPOP && optype1 == PUSHOP)    {      operands[1] = XEXP (XEXP (operands[1], 0), 0);      output_asm_insn ("subq%.l %#8,%1", operands);      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 (optype0 == REGOP)    latehalf[0] = gen_rtx (REG, SImode, REGNO (operands[0]) + 1);  else if (optype0 == OFFSOP)    latehalf[0] = adj_offsettable_operand (operands[0], 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], 4);  else if (optype1 == CNSTOP)    {      if (CONSTANT_P (operands[1]))	latehalf[1] = const0_rtx;      else if (GET_CODE (operands[1]) == CONST_DOUBLE)	{#ifndef HOST_WORDS_BIG_ENDIAN	  latehalf[1] = gen_rtx (CONST_INT, VOIDmode,				 CONST_DOUBLE_LOW (operands[1]));	  operands[1] = gen_rtx (CONST_INT, VOIDmode,				 CONST_DOUBLE_HIGH (operands[1]));#else /* HOST_WORDS_BIG_ENDIAN */	  latehalf[1] = gen_rtx (CONST_INT, VOIDmode,				 CONST_DOUBLE_HIGH (operands[1]));	  operands[1] = gen_rtx (CONST_INT, VOIDmode,				 CONST_DOUBLE_LOW (operands[1]));#endif /* HOST_WORDS_BIG_ENDIAN */	}    }  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] = latehalf[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	  && REGNO (operands[0]) == REGNO (latehalf[1])))    {      /* Make any unoffsettable addresses point at high-numbered word.  */      if (addreg0)	output_asm_insn ("addql %#4,%0", &addreg0);      if (addreg1)	output_asm_insn ("addql %#4,%0", &addreg1);      /* Do that word.  */      output_asm_insn (singlemove_string (latehalf), latehalf);      /* Undo the adds we just did.  */      if (addreg0)	output_asm_insn ("subql %#4,%0", &addreg0);      if (addreg1)	output_asm_insn ("subql %#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);  /* Make any unoffsettable addresses point at high-numbered word.  */  if (addreg0)    output_asm_insn ("addql %#4,%0", &addreg0);  if (addreg1)    output_asm_insn ("addql %#4,%0", &addreg1);  /* Do that word.  */  output_asm_insn (singlemove_string (latehalf), latehalf);  /* Undo the adds we just did.  */  if (addreg0)    output_asm_insn ("subql %#4,%0", &addreg0);  if (addreg1)    output_asm_insn ("subql %#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 ();}/* Test for -0.0.  */intdouble_is_minus_zero (arg)     double arg;{  union { double d; int i[2];} u;  u.d = arg;  return (u.i[1] == 0 && u.i[0] == 0x80000000);}char *output_move_const_double (operands)     rtx *operands;{  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    {      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;{  if (TARGET_FPA)    {      int code = standard_sun_fpa_constant_p (operands[1]);      if (code != 0)	{	  static char buf[40];	  sprintf (buf, "fpmove%%.s %%%%%d,%%0", code & 0x1ff);	  return buf;	}      return "fpmove%.s %1,%0";    }  else    {      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%.s %f1,%0";    }}/* Return nonzero if X, a CONST_DOUBLE, has a value that we can get   from the "fmovecr" instruction.   The value, anded with 0xff, gives the code to use in fmovecr   to get the desired constant.  */intstandard_68881_constant_p (x)     rtx x;{  union {double d; int i[2];} u;  register double d;#ifdef HOST_WORDS_BIG_ENDIAN  u.i[0] = CONST_DOUBLE_LOW (x);  u.i[1] = CONST_DOUBLE_HIGH (x);#else  u.i[0] = CONST_DOUBLE_HIGH (x);  u.i[1] = CONST_DOUBLE_LOW (x);#endif   d = u.d;  if (d == 0)    return 0x0f;  /* Note: there are various other constants available     but it is a nuisance to put in their values here.  */  if (d == 1)    return 0x32;  if (d == 10)    return 0x33;  if (d == 100)    return 0x34;  if (d == 10000)    return 0x35;  if (d == 1e8)    return 0x36;  if (GET_MODE (x) == SFmode)    return 0;  if (d == 1e16)    return 0x37;  /* larger powers of ten in the constants ram are not used     because they are not equal to a `double' C constant.  */  return 0;}/* Return nonzero if X, a CONST_DOUBLE, has a value that we can get   from the Sun FPA's constant RAM.   The value returned, anded with 0x1ff, gives the code to use in fpmove   to get the desired constant. */#define S_E (2.718281745910644531)#define D_E (2.718281828459045091)#define S_PI (3.141592741012573242)#define D_PI (3.141592653589793116)#define S_SQRT2 (1.414213538169860840)#define D_SQRT2 (1.414213562373095145)#define S_LOG2ofE (1.442695021629333496)#define D_LOG2ofE (1.442695040888963387)#define S_LOG2of10 (3.321928024291992188)#define D_LOG2of10 (3.321928024887362182)#define S_LOGEof2 (0.6931471824645996094)#define D_LOGEof2 (0.6931471805599452862)#define S_LOGEof10 (2.302585124969482442)#define D_LOGEof10 (2.302585092994045901)#define S_LOG10of2 (0.3010300099849700928)#define D_LOG10of2 (0.3010299956639811980)#define S_LOG10ofE (0.4342944920063018799)#define D_LOG10ofE (0.4342944819032518167)intstandard_sun_fpa_constant_p (x)     rtx x;{  union {double d; int i[2];} u;  register double d;  u.i[0] = CONST_DOUBLE_LOW (x);  u.i[1] = CONST_DOUBLE_HIGH (x);  d = u.d;  if (d == 0.0)    return 0x200;		/* 0 once 0x1ff is anded with it */  if (d == 1.0)    return 0xe;  if (d == 0.5)    return 0xf;  if (d == -1.0)    return 0x10;  if (d == 2.0)    return 0x11;  if (d == 3.0)    return 0xB1;  if (d == 4.0)    return 0x12;  if (d == 8.0)    return 0x13;  if (d == 0.25)    return 0x15;  if (d == 0.125)    return 0x16;  if (d == 10.0)    return 0x17;  if (d == -(1.0/2.0))    return 0x2E;/* * Stuff that looks different if it's single or double */  if (GET_MODE(x) == SFmode)    {      if (d == S_E)	return 0x8;      if (d == (2*S_PI))	return 0x9;      if (d == S_PI)	return 0xA;      if (d == (S_PI / 2.0))	return 0xB;      if (d == S_SQRT2)	return 0xC;      if (d == (1.0 / S_SQRT2))	return 0xD;      /* Large powers of 10 in the constant 	 ram are not used because they are	 not equal to a C double constant  */      if (d == -(S_PI / 2.0))	return 0x27;      if (d == S_LOG2ofE)	return 0x28;      if (d == S_LOG2of10)	return 0x29;      if (d == S_LOGEof2)	return 0x2A;      if (d == S_LOGEof10)	return 0x2B;      if (d == S_LOG10of2)	return 0x2C;      if (d == S_LOG10ofE)	return 0x2D;    }  else    {      if (d == D_E)	return 0x8;      if (d == (2*D_PI))	return 0x9;      if (d == D_PI)	return 0xA;      if (d == (D_PI / 2.0))	return 0xB;      if (d == D_SQRT2)	return 0xC;      if (d == (1.0 / D_SQRT2))	return 0xD;      /* Large powers of 10 in the constant 	 ram are not used because they are	 not equal to a C double constant  */      if (d == -(D_PI / 2.0))	return 0x27;      if (d == D_LOG2ofE)	return 0x28;      if (d == D_LOG2of10)	return 0x29;      if (d == D_LOGEof2)	return 0x2A;      if (d == D_LOGEof10)	return 0x2B;      if (d == D_LOG10of2)	return 0x2C;      if (d == D_LOG10ofE)	return 0x2D;    }  return 0x0;}#undef S_E #undef D_E #undef S_PI #undef D_PI #undef S_SQRT2 #undef D_SQRT2 #undef S_LOG2ofE #undef D_LOG2ofE #undef S_LOG2of10 #undef D_LOG2of10 #undef S_LOGEof2 #undef D_LOGEof2 #undef S_LOGEof10 #undef D_LOGEof10 #undef S_LOG10of2 #undef D_LOG10of2 #undef S_LOG10ofE #undef D_LOG10ofE

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆国产自产在线观看| 欧美精品三级日韩久久| 丝袜美腿亚洲色图| 国产精品久久久久毛片软件| 欧美日韩国产在线播放网站| 国产91精品欧美| 麻豆精品视频在线| 一区二区三区四区中文字幕| 久久久99精品免费观看| 欧美电影一区二区三区| 99久久国产综合精品女不卡| 国产一区二区三区日韩| 日韩黄色小视频| 亚洲精选视频在线| 亚洲国产精品精华液ab| 精品国产一区二区亚洲人成毛片 | 亚洲精品videosex极品| 国产丝袜美腿一区二区三区| 欧美α欧美αv大片| 欧美日韩色综合| 色综合久久久网| 成人av集中营| 国产成人综合自拍| 国产一区福利在线| 激情伊人五月天久久综合| 日韩福利视频网| 日本午夜一区二区| 日韩精品乱码免费| 日韩av一区二区三区| 亚洲第一搞黄网站| 亚洲高清不卡在线| 亚洲第一福利视频在线| 一区二区三区中文字幕电影| 亚洲欧洲在线观看av| 亚洲国产精品99久久久久久久久 | 欧美一区二区三区婷婷月色| 欧美日韩久久一区| 欧美人伦禁忌dvd放荡欲情| 在线观看视频91| 欧美色综合久久| 欧美少妇性性性| 这里只有精品免费| 欧美一区二区三区视频在线| 欧美一区二区三区免费| 日韩色在线观看| 日韩三级高清在线| 久久影视一区二区| 国产精品视频一二| 国产精品久99| 亚洲精品久久7777| 亚洲第一狼人社区| 另类的小说在线视频另类成人小视频在线 | 欧美丰满一区二区免费视频| 欧美一区二视频| 久久网这里都是精品| 中文字幕免费不卡在线| 日韩理论片中文av| 丝袜诱惑制服诱惑色一区在线观看 | 欧美中文字幕不卡| 欧美精品tushy高清| 337p日本欧洲亚洲大胆精品| 国产欧美一区二区精品性色| 中文字幕日韩精品一区 | 奇米777欧美一区二区| 国产最新精品精品你懂的| 国产精品996| 在线观看免费亚洲| 日韩亚洲欧美一区二区三区| 久久久久88色偷偷免费| 亚洲精品国产一区二区三区四区在线 | 91精品国产综合久久福利软件| 日韩一区二区三区观看| 国产精品素人视频| 午夜视频在线观看一区| 韩国三级中文字幕hd久久精品| zzijzzij亚洲日本少妇熟睡| 欧美日韩一卡二卡三卡| 久久久亚洲国产美女国产盗摄 | 日韩三级精品电影久久久| 亚洲国产精品黑人久久久| 亚洲国产视频一区二区| 国产精品996| 欧美人与性动xxxx| 国产精品乱子久久久久| 视频在线观看一区二区三区| 国产黄色精品视频| 欧美美女直播网站| 国产精品久久久久久一区二区三区| 日日摸夜夜添夜夜添亚洲女人| 国产老肥熟一区二区三区| 欧美艳星brazzers| 国产欧美一区二区三区在线看蜜臀| 亚洲va国产va欧美va观看| 国产91对白在线观看九色| 欧美精品三级在线观看| 亚洲欧美日韩一区二区| 国产精品一区一区| 91精品国产麻豆国产自产在线| 国产精品视频一二三| 久久99蜜桃精品| 欧美偷拍一区二区| 成人欧美一区二区三区在线播放| 精品在线视频一区| 欧美精选一区二区| 亚洲一区在线观看网站| 成人亚洲精品久久久久软件| 日韩视频免费观看高清完整版 | 69堂亚洲精品首页| 一区二区在线观看视频| 福利一区二区在线观看| 欧美变态凌虐bdsm| 免费观看在线色综合| 欧美日韩一区二区三区视频| 综合久久久久久| 成人免费视频caoporn| 久久精品一区八戒影视| 黄色资源网久久资源365| 91精品国产综合久久精品 | 热久久免费视频| 欧美日韩在线播放三区四区| 亚洲天堂免费在线观看视频| 懂色av中文一区二区三区| 欧美成人精品福利| 日本强好片久久久久久aaa| 欧洲一区二区av| 一区二区三区四区不卡在线| 97久久精品人人澡人人爽| 中文字幕不卡一区| 成人丝袜18视频在线观看| 久久久精品国产99久久精品芒果 | 亚洲天堂精品在线观看| 99re这里都是精品| 国产精品天天看| 99vv1com这只有精品| 亚洲女同一区二区| 91国在线观看| 一二三区精品视频| 91国偷自产一区二区三区观看| 亚洲免费av在线| 欧美最新大片在线看| 亚洲一区二区三区小说| 欧美日韩免费电影| 日本中文字幕一区二区视频 | 毛片一区二区三区| 欧美大片一区二区三区| 国产一区二区福利| 中文乱码免费一区二区| 91首页免费视频| 亚洲国产欧美在线| 欧美一区二区三区人| 国产伦精品一区二区三区免费迷| 国产人伦精品一区二区| 成人aaaa免费全部观看| 一区二区三区四区av| 欧美年轻男男videosbes| 理论片日本一区| 欧美国产日本视频| 色综合一区二区| 日韩精品久久理论片| 久久亚洲综合av| 色综合天天综合网天天狠天天| 亚洲成人一区二区在线观看| 日韩欧美卡一卡二| 懂色av一区二区三区免费看| 亚洲美女免费在线| 日韩欧美一二三区| 白白色 亚洲乱淫| 日韩精品电影在线观看| 国产日产亚洲精品系列| 在线观看视频一区二区欧美日韩| 美女mm1313爽爽久久久蜜臀| 国产日韩综合av| 欧美视频一区在线| 国产激情精品久久久第一区二区 | 亚洲线精品一区二区三区八戒| 日韩精品一区二区三区在线观看 | 欧美在线影院一区二区| 免费不卡在线视频| 中文字幕中文字幕中文字幕亚洲无线| 欧美视频一区在线| 高清不卡一二三区| 蜜臀精品一区二区三区在线观看| 亚洲国产高清不卡| 日韩午夜在线影院| 色综合久久天天| 国产成人自拍网| 日本aⅴ亚洲精品中文乱码| 亚洲欧美在线另类| 久久综合久久久久88| 欧美视频在线播放| 成人av电影在线观看| 久久99精品久久久久久久久久久久| 综合电影一区二区三区 | 欧美性大战久久久久久久| 国产剧情一区二区| 热久久久久久久| 亚洲午夜久久久久| 亚洲视频资源在线| 亚洲国产精品99久久久久久久久| 日韩亚洲欧美在线|