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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? out-i386.c

?? 這是完整的gcc源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號(hào):
/* Subroutines for insn-output.c for Intel 80386.   Copyright (C) 1988 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.  */#ifndef FILE#include <stdio.h>#endif#define FP_TOP (gen_rtx(REG, DFmode, FIRST_FLOAT_REG))#define AT_SP(mode) (gen_rtx (MEM, (mode), stack_pointer_rtx))#define AT_BP(mode) (gen_rtx (MEM, (mode), frame_pointer_rtx))#define RET return ""/* #define RETCOM(X) fprintf (asm_out_file, "%sX fp_pop_level=%d\n", \			   COMMENT_BEGIN, fp_pop_level); RET */#define RETCOM(X) return ""#define POP_ONE_FP	\  { /* fp_pop_level--; */	\    fprintf (asm_out_file, "\tfstp %sst (0)\n", RP); }extern FILE *asm_out_file;static char *singlemove_string ();static void output_movf ();static void replace_float_constant ();static int mentions_fp_top ();static int call_top_dead_p ();static int fp_top_dead_p1 ();static rtx via_memory ();static void output_asm_insn_double_reg_op ();/* All output functions must increment or decrement this to indicate   the net number of pops or pushes which they perform.  Note that it won't   necessarily balance with the optimize running, since we might have   two different calls with the same pop shared by cross jumping.   However on optimize the reg dead heuristic seems to work.  */int fp_pop_level = 0;static char *hi_reg_name[] = HI_REGISTER_NAMES;static char *qi_reg_name[] = QI_REGISTER_NAMES;/* for fabs, fch, .. where the argument operand[1] must first be moved to  constraints  "=fm" "0" */#define FP_CALL1(op)  \  { if (FP_REG_P (operands[0]))		\      return op;			\    output_movf (FP_TOP, operands[1]);	\    output_asm_insn (op, operands);	\    /* fp_pop_level--; */		\    return "fstp%z0 %0"; }/* handle case of call where op0/op1 is "=mf" and opn is "mrf"   eg. fadd */#define FP_CALL(op, rev, n)  \  return fp_call_internal (op, rev, n, operands, insn);static char *fp_call_internal (op, rev, n, operands, insn)     char *op;     char *rev;     int n;     rtx *operands;     rtx insn;{  if (!FP_REG_P (operands[0]))    {      /* Here destination is in memory	 and source is in the fp stack.  */      output_movf (FP_TOP, operands[0]);      output_asm_insn_double_reg_op (op, rev, insn);      return "fstp%z0 %0";    }  if (FP_REG_P (operands[n]))    {      rtx temp = operands[1];      char *tem1 = op;      operands[1] = operands[n];      op = rev;      operands[n] = temp;      rev = tem1;    }  if (REG_P (operands[n]))    {      rtx xops[2];      via_memory (operands[n]);      operands[n] = AT_SP (GET_MODE (operands[n]));      xops[0] = stack_pointer_rtx;      xops[1] = gen_rtx (CONST_INT, VOIDmode,			 GET_MODE_SIZE (GET_MODE (operands[n])));      output_asm_insn (op, operands + n);      output_asm_insn (AS2 (add%L0,%1,%0), xops);    }  else    output_asm_insn (op, operands + n);  if (FP_REG_P (operands[0]))    {      /* It turns out not to work to use top_dead_p because	 the death notes are not accurate enough.	 But this ought to work, because the only thing that can	 live across basic blocks is reg 8, and these insns	 never involve reg 8 directly.  */      if (fp_top_dead_p1 (insn))	POP_ONE_FP;    }  RET;}/* Output assembler code to perform insn OP   with two stack operands, and output on the stack.   REV is the assembler insn that does the same thing but   effectively interchanges the meanings of the two arguments.   Somewhat counterintuitively, the "first" operand was pushed last.   The output replaces either the top-of-stack or both of the arguments,   depending on whether the other argument is wanted after this insn.  */static voidoutput_asm_insn_double_reg_op (op, rev, insn)     char *op;     char *rev;     rtx insn;{  fputc ('\t', asm_out_file);  if (top_dead_p (insn))    {      /* Here we want the "reversed" insn, fsubr or fdivr.	 But there is an assembler bug in all 80386 assemblers	 which exchanges the meanings of fsubr and fsub, and of fdivr and fdiv!	 So use the "unreversed" opcode (which will assemble into	 the "reversed" insn).  */      rev = op;      while (*rev && *rev != '%')	fputc (*rev++, asm_out_file);      /* fp_pop_level--; */      fprintf (asm_out_file, AS2 (p,%sst,%sst(1)), RP, RP);    }  else    {      while (*op && *op != '%')	fputc (*op++, asm_out_file);      fprintf (asm_out_file,AS2 ( ,%sst(1),%sst), RP, RP);    }  putc ('\n', asm_out_file);}/* Moves X to memory location 8 below stack pointer   and returns an RTX for that memory location.   X should be a register, in DFmode or SFmode.  */static rtxvia_memory (x)     rtx x;{  if (!REG_P (x))    abort ();  if (GET_MODE (x) == DFmode)    {      rtx xops[1];      xops[0] = gen_rtx (REG, SImode, REGNO (x) + 1);      output_asm_insn ("push%L0 %0", xops);    }  output_asm_insn ("push%L0 %0", &x);}/* Output an insn to copy the SFmode value in fp0 to OPERAND   without clobbering fp0.  */voidfp_store_sf (target)     rtx target;{  if (REG_P (target))    {      rtx xoperands[3];      xoperands[0] = stack_pointer_rtx;      xoperands[1] = AT_SP (Pmode);      xoperands[2] = gen_rtx (CONST_INT, VOIDmode, -4);      output_asm_insn (AS2 (add%L0,%2,%0), xoperands);      output_asm_insn ("fst%S0 %1", xoperands);      output_asm_insn ("pop%L0 %0", &target);    }  else if (GET_CODE (target) == MEM)    output_asm_insn ("fst%S0 %0", &target);}/* Output an insn to pop an SF value from fp0 into TARGET.   This destroys the value of fp0.  */voidfp_pop_sf (target)     rtx target;{  if (REG_P (target))    {      rtx xoperands[3];      xoperands[0] = stack_pointer_rtx;      xoperands[1] = AT_SP (Pmode);      xoperands[2] = gen_rtx (CONST_INT, VOIDmode, -4);      output_asm_insn (AS2 (add%L0,%2,%0), xoperands);      output_asm_insn ("fstp%S0 %1", xoperands);      output_asm_insn ("pop%L0 %0", &target);      /* fp_pop_level--; */    }  else if (GET_CODE (target) == MEM)    {      /* fp_pop_level--; */      output_asm_insn ("fstp%S0 %0", &target);    }  else abort ();}/* Copy the top of the fpu stack into TARGET, without popping.  */voidfp_store_df (target)     rtx target;{  if (REG_P (target))    {      rtx xoperands[4];      xoperands[0] = stack_pointer_rtx;      xoperands[1] = gen_rtx (REG, SImode, REGNO (target) + 1);      xoperands[2] = AT_SP (Pmode);      xoperands[3] = gen_rtx (CONST_INT, VOIDmode, -8);      output_asm_insn (AS2 (add%L0,%3,%0), xoperands);      output_asm_insn ("fst%Q0 %2", xoperands);      output_asm_insn ("pop%L0 %0", &target);      output_asm_insn ("pop%L0 %1", xoperands);    }  else if (GET_CODE (target) == MEM)    output_asm_insn ("fst%Q0 %0", &target);}/* Copy the top of the fpu stack into TARGET, with popping.  */voidfp_pop_df (target)     rtx target;{  if (REG_P (target))    {      rtx xoperands[4];      xoperands[0] = stack_pointer_rtx;      xoperands[1] = gen_rtx (REG, SImode, REGNO (target) + 1);      xoperands[2] = AT_SP (Pmode);      xoperands[3] = gen_rtx (CONST_INT, VOIDmode, -8);      output_asm_insn (AS2 (add%L0,%3,%0), xoperands);      /* fp_pop_level--; */      output_asm_insn ("fstp%Q0 %2", xoperands);      output_asm_insn ("pop%L0 %0", &target);      output_asm_insn ("pop%L0 %1", xoperands);    }  else if (GET_CODE (target) == MEM)    {      /* fp_pop_level--; */      output_asm_insn ("fstp%z0 %0", &target);    }}#if 0/* Pop the fp stack, convert value to integer and store in TARGET.   TARGET may be memory or register, and may have QI, HI or SImode.  */voidfp_pop_int (target)     rtx target;{  if (REG_P (target) || GET_MODE (target) != SImode)    {      rtx xxops[2];      xxops[0] = stack_pointer_rtx;      xxops[1] = gen_rtx (CONST_INT, VOIDmode, 4);      output_asm_insn (AS2 (sub%L0,%1,%0), xxops);      xxops[0] = AT_SP (Pmode);      /* fp_pop_level--; */      output_asm_insn ("fistp%L0 %0", xxops);      output_asm_insn ("pop%L0 %0", &target);    }  else if (GET_CODE (target) == MEM)    {      /* fp_pop_level--; */      output_asm_insn ("fistp%L0 %0", &target);    }  else abort ();}#endif/* Push the SFmode value X onto the fpu stack.  */voidfp_push_sf (x)     rtx x;{  /* fp_pop_level++; */  if (REG_P (x))    {      rtx xoperands[2];      rtx xfops[3];      output_asm_insn ("push%L0 %0", &x);      xfops[0] = AT_SP (Pmode);      xfops[2] = gen_rtx (CONST_INT, VOIDmode, 4);      xfops[1] = stack_pointer_rtx;      output_asm_insn ("fld%S0 %0 \n\tadd%L0 %2,%1", xfops);    }  else    output_asm_insn ("fld%S0 %0", &x);}/* Push the DFmode value X onto the fpu stack.  */voidfp_push_df (x)     rtx x;{  /* fp_pop_level++; */  if (REG_P (x))    {      rtx xoperands[2];      rtx xfops[3];      xoperands[0] = x;      xoperands[1] = gen_rtx (REG, SImode, REGNO (x) + 1);      output_asm_insn ("push%L0 %1", xoperands);      output_asm_insn ("push%L0 %0", xoperands);      xfops[0] = AT_SP (Pmode);      xfops[2] = gen_rtx (CONST_INT, VOIDmode, 8);      xfops[1] = stack_pointer_rtx;      output_asm_insn ("fld%Q0 %0 \n\tadd%L0 %2,%1", xfops);    }  else if (GET_CODE (x) == MEM)    output_asm_insn ("fld%Q0 %0", &x);}static char *output_move_const_single ();static char *singlemove_string (operands)     rtx *operands;{  rtx x;  if (GET_CODE (operands[0]) == MEM      && GET_CODE (x = XEXP (operands[0], 0)) == PRE_DEC)    {      if (XEXP (x, 0) != stack_pointer_rtx)	abort ();      return "push%L0 %1";    }  else if (GET_CODE (operands[1]) == CONST_DOUBLE)    {      return output_move_const_single (operands);    }  else if (GET_CODE (operands[0]) == REG || GET_CODE (operands[1]) == REG)    return AS2 (mov%L0,%1,%0);  else if (CONSTANT_P (operands[1]))    return AS2 (mov%L0,%1,%0);  else    {      output_asm_insn ("push%L0 %1", operands);      return "pop%L0 %0";    }}/* 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 an insn to add the constant N to the register X.  */static voidasm_add (n, x)     int n;     rtx x;{  rtx xops[2];  xops[1] = x;  if (n < 0)    {      xops[0] = gen_rtx (CONST_INT, VOIDmode, -n);      output_asm_insn (AS2 (sub%L0,%0,%1), xops);    }  else if (n > 0)    {      xops[0] = gen_rtx (CONST_INT, VOIDmode, n);      output_asm_insn (AS2 (add%L0,%0,%1), xops);    }}/* 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)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本视频中文字幕一区二区三区| 欧美大片国产精品| 中文字幕佐山爱一区二区免费| 国产成人免费av在线| www久久精品| 国产成人自拍高清视频在线免费播放| 精品国产一区二区三区不卡| 精品一区二区三区视频| 国产精品视频免费看| 91网上在线视频| 视频在线在亚洲| 欧美精品一区二区三区久久久| 国产一区二区三区国产| 中文字幕一区二区三区四区不卡| 色欧美日韩亚洲| 日韩国产精品91| 国产视频视频一区| 色噜噜夜夜夜综合网| 日本va欧美va欧美va精品| 久久女同精品一区二区| 99久久国产免费看| 三级精品在线观看| 国产蜜臀av在线一区二区三区| 色综合久久久久网| 另类小说综合欧美亚洲| 国产精品久久久久久久久久久免费看 | 欧美大黄免费观看| 成人激情免费电影网址| 香蕉av福利精品导航| 久久久五月婷婷| 欧美在线一区二区| 韩国av一区二区| 一区二区三区在线播放| 精品日韩在线观看| 在线国产电影不卡| 国产一区二区三区观看| 午夜在线成人av| 中文字幕一区在线| 精品国产一区二区精华| 欧美日韩一区二区三区在线看| 国产毛片精品国产一区二区三区| 亚洲一区在线观看网站| 国产日韩欧美制服另类| 3d成人h动漫网站入口| 成人h精品动漫一区二区三区| 日韩精品久久久久久| 亚洲天堂久久久久久久| 国产日韩综合av| 日韩亚洲欧美中文三级| 色呦呦日韩精品| 国产成人免费视频一区| 日一区二区三区| 亚洲免费观看高清| 中文字幕高清一区| 精品国产凹凸成av人导航| 欧美视频完全免费看| 波多野结衣欧美| 国产精品一区二区在线观看不卡 | 蜜桃久久久久久久| 一区二区成人在线观看| 国产欧美精品一区二区色综合| 欧美久久久久久蜜桃| 色吊一区二区三区 | 色狠狠一区二区| 成人黄色一级视频| 国产成人av一区| 国产高清视频一区| 国产乱码一区二区三区| 麻豆精品久久久| 狂野欧美性猛交blacked| 日韩国产在线一| 午夜精品一区二区三区免费视频| 一区二区三区免费| 一个色综合av| 亚洲成人你懂的| 午夜av区久久| 日韩国产欧美三级| 麻豆91免费看| 激情成人综合网| 国产一区二区三区在线观看免费视频 | 日韩一区精品字幕| 香蕉影视欧美成人| 肉肉av福利一精品导航| 蜜桃91丨九色丨蝌蚪91桃色| 久久精品av麻豆的观看方式| 美女视频一区二区| 精品一区二区久久| 国产精品18久久久久久久久 | 国内精品伊人久久久久av一坑| 麻豆国产欧美日韩综合精品二区| 另类成人小视频在线| 国产精品99久久久久久似苏梦涵| 国产福利一区二区三区视频在线 | 亚洲六月丁香色婷婷综合久久 | 国产精品欧美一区二区三区| 国产精品毛片久久久久久久| 中文字幕一区二区三区四区不卡| 亚洲精品写真福利| 亚洲第一成人在线| 麻豆精品视频在线观看| 国产91精品在线观看| 97久久超碰国产精品| 欧美亚洲综合另类| 欧美大胆人体bbbb| 国产精品久久久久久久久动漫| 亚洲免费伊人电影| 免费观看日韩电影| 懂色av一区二区在线播放| 91免费看视频| 欧美一级精品大片| 成人免费在线视频观看| 水野朝阳av一区二区三区| 国产成人精品在线看| 在线视频欧美区| 日韩视频永久免费| 日韩理论片网站| 麻豆精品在线播放| 色综合色综合色综合色综合色综合| 欧美老肥妇做.爰bbww视频| 久久久91精品国产一区二区精品 | 久久国内精品视频| 99久久99久久精品免费看蜜桃| 欧美日本一道本| 国产精品美女一区二区| 日本不卡一区二区| 91亚洲精品久久久蜜桃| 日韩欧美精品在线| 亚洲第一福利一区| 99精品视频在线免费观看| 日韩视频免费观看高清完整版| 18涩涩午夜精品.www| 极品美女销魂一区二区三区| 色婷婷综合五月| 久久九九全国免费| 日本中文字幕一区二区有限公司| 99re这里只有精品首页| 久久免费电影网| 日本成人在线不卡视频| 欧美色图片你懂的| 亚洲天堂成人在线观看| 国产一区二区三区不卡在线观看| 欧美高清dvd| 一区二区三区电影在线播| 成人一区在线看| 国产亚洲欧美色| 国产一区二区精品久久91| 91精品国产综合久久久蜜臀图片| 亚洲色图欧美在线| 成人av网站在线| 日本一二三不卡| 国产成人免费视频一区| 精品国产伦理网| 久久精品99久久久| 日韩免费视频一区| 日韩精品福利网| 欧美久久一区二区| 日韩精彩视频在线观看| 欧美久久免费观看| 日韩电影在线一区二区三区| 欧美午夜电影一区| 亚洲制服丝袜在线| 欧美中文字幕不卡| 亚洲一二三四区不卡| 在线看国产日韩| 亚洲免费资源在线播放| 色呦呦国产精品| 一区二区国产视频| 欧美猛男男办公室激情| 无码av免费一区二区三区试看| 91麻豆精品国产91久久久更新时间| 亚洲一区二区三区爽爽爽爽爽 | 宅男噜噜噜66一区二区66| 亚洲不卡一区二区三区| 欧美日本视频在线| 日韩精品一二三四| 精品国产凹凸成av人网站| 国产综合久久久久久鬼色 | 日韩精品中文字幕一区二区三区 | 国产午夜亚洲精品羞羞网站| 国产伦精品一区二区三区视频青涩| 欧美成人国产一区二区| 久久成人免费网站| 国产欧美日韩精品一区| 色综合天天综合网天天看片| 一区二区欧美在线观看| 欧美乱妇20p| 国内精品久久久久影院薰衣草| 国产人伦精品一区二区| 91一区二区三区在线观看| 亚洲sss视频在线视频| 欧美大片一区二区三区| 成人免费高清视频在线观看| 亚洲免费大片在线观看| 欧美日本在线看| 国产高清亚洲一区| 亚洲精品第1页| 日韩欧美国产系列| 成人18视频日本| 日日嗨av一区二区三区四区| 精品久久久久99|