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

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

?? emit-rtl.c

?? 這是完整的gcc源代碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* Emit RTL for the GNU C-Compiler expander.   Copyright (C) 1987, 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.  *//* Middle-to-low level generation of rtx code and insns.   This file contains the functions `gen_rtx', `gen_reg_rtx'   and `gen_label_rtx' that are the usual ways of creating rtl   expressions for most purposes.   It also has the functions for creating insns and linking   them in the doubly-linked chain.   The patterns of the insns are created by machine-dependent   routines in insn-emit.c, which is generated automatically from   the machine description.  These routines use `gen_rtx' to make   the individual rtx's of the pattern; what is machine dependent   is the kind of rtx's they make and what arguments they use.  */#include "config.h"#include <stdio.h>#include "gvarargs.h"#include "rtl.h"#include "regs.h"#include "insn-config.h"#include "real.h"#define max(A,B) ((A) > (B) ? (A) : (B))#define min(A,B) ((A) < (B) ? (A) : (B))/* This is reset to FIRST_PSEUDO_REGISTER at the start each function.   After rtl generation, it is 1 plus the largest register number used.  */int reg_rtx_no = FIRST_PSEUDO_REGISTER;/* This is *not* reset after each function.  It gives each CODE_LABEL   in the entire compilation a unique label number.  */static int label_num = 1;/* Value of `label_num' at start of current function.  */static int first_label_num;/* Nonzero means do not generate NOTEs for source line numbers.  */static int no_line_numbers;/* Commonly used rtx's, so that we only need space for one copy.   These are initialized once for the entire compilation.   All of these except perhaps fconst0_rtx and dconst0_rtx   are unique; no other rtx-object will be equal to any of these.  */rtx pc_rtx;			/* (PC) */rtx cc0_rtx;			/* (CC0) */rtx cc1_rtx;			/* (CC1) (not actually used nowadays) */rtx const0_rtx;			/* (CONST_INT 0) */rtx const1_rtx;			/* (CONST_INT 1) */rtx fconst0_rtx;		/* (CONST_DOUBLE:SF 0) */rtx dconst0_rtx;		/* (CONST_DOUBLE:DF 0) *//* All references to the following fixed hard registers go through   these unique rtl objects.  On machines where the frame-pointer and   arg-pointer are the same register, they use the same unique object.   After register allocation, other rtl objects which used to be pseudo-regs   may be clobbered to refer to the frame-pointer register.   But references that were originally to the frame-pointer can be   distinguished from the others because they contain frame_pointer_rtx.   In an inline procedure, the stack and frame pointer rtxs may not be   used for anything else.  */rtx stack_pointer_rtx;		/* (REG:Pmode STACK_POINTER_REGNUM) */rtx frame_pointer_rtx;		/* (REG:Pmode FRAME_POINTER_REGNUM) */rtx arg_pointer_rtx;		/* (REG:Pmode ARG_POINTER_REGNUM) */rtx struct_value_rtx;		/* (REG:Pmode STRUCT_VALUE_REGNUM) */rtx struct_value_incoming_rtx;	/* (REG:Pmode STRUCT_VALUE_INCOMING_REGNUM) */rtx static_chain_rtx;		/* (REG:Pmode STATIC_CHAIN_REGNUM) */rtx static_chain_incoming_rtx;	/* (REG:Pmode STATIC_CHAIN_INCOMING_REGNUM) *//* The ends of the doubly-linked chain of rtl for the current function.   Both are reset to null at the start of rtl generation for the function.      start_sequence saves both of these on `sequence_stack' and then   starts a new, nested sequence of insns.  */static rtx first_insn = NULL;static rtx last_insn = NULL;/* Stack of pending (incomplete) sequences saved by `start_sequence'.   This looks like   (INSN_LIST saved-first-insn              (INSN_LIST saved-last-insn ...more saved sequences...)).   The main insn-chain is saved in the last two links of the chain,   unless the chain is empty.  */rtx sequence_stack = 0;/* INSN_UID for next insn emitted.   Reset to 1 for each function compiled.  */static int cur_insn_uid = 1;/* Line number and source file of the last line-number NOTE emitted.   This is used to avoid generating duplicates.  */static int last_linenum = 0;static char *last_filename = 0;/* A vector indexed by pseudo reg number.  The allocated length   of this vector is regno_pointer_flag_length.  Since this   vector is needed during the expansion phase when the total   number of registers in the function is not yet known,   it is copied and made bigger when necessary.  */char *regno_pointer_flag;int regno_pointer_flag_length;/* Indexed by pseudo register number, gives the rtx for that pseudo.   Allocated in parallel with regno_pointer_flag.  */rtx *regno_reg_rtx;/* Filename and line number of last line-number note,   whether we actually emitted it or not.  */extern char *emit_filename;extern int emit_lineno;rtx change_address ();/* rtx gen_rtx (code, mode, [element1, ..., elementn])****	    This routine generates an RTX of the size specified by**	<code>, which is an RTX code.   The RTX structure is initialized**	from the arguments <element1> through <elementn>, which are**	interpreted according to the specific RTX type's format.   The**	special machine mode associated with the rtx (if any) is specified**	in <mode>.****	    gen_rtx() can be invoked in a way which resembles the lisp-like**	rtx it will generate.   For example, the following rtx structure:****	      (plus:QI (mem:QI (reg:SI 1))**		       (mem:QI (plusw:SI (reg:SI 2) (reg:SI 3))))****		...would be generated by the following C code:****	    	gen_rtx (PLUS, QImode,**		    gen_rtx (MEM, QImode,**			gen_rtx (REG, SImode, 1)),**		    gen_rtx (MEM, QImode,**			gen_rtx (PLUS, SImode,**			    gen_rtx (REG, SImode, 2),**			    gen_rtx (REG, SImode, 3)))),*//*VARARGS2*/rtxgen_rtx (va_alist)     va_dcl{  va_list p;  enum rtx_code code;  enum machine_mode mode;  register int i;		/* Array indices...			*/  register char *fmt;		/* Current rtx's format...		*/  register rtx rt_val;		/* RTX to return to caller...		*/  va_start (p);  code = va_arg (p, enum rtx_code);  mode = va_arg (p, enum machine_mode);  if (code == CONST_INT)    {      int arg = va_arg (p, int);      if (arg == 0)	return const0_rtx;      if (arg == 1)	return const1_rtx;      rt_val = rtx_alloc (code);      INTVAL (rt_val) = arg;    }  else    {      rt_val = rtx_alloc (code);	/* Allocate the storage space.  */      rt_val->mode = mode;		/* Store the machine mode...  */      fmt = GET_RTX_FORMAT (code);	/* Find the right format...  */      for (i = 0; i < GET_RTX_LENGTH (code); i++)	{	  switch (*fmt++)	    {	    case '0':		/* Unused field.  */	      break;	    case 'i':		/* An integer?  */	      XINT (rt_val, i) = va_arg (p, int);	      break;	    case 's':		/* A string?  */	      XSTR (rt_val, i) = va_arg (p, char *);	      break;	    case 'e':		/* An expression?  */	    case 'u':		/* An insn?  Same except when printing.  */	      XEXP (rt_val, i) = va_arg (p, rtx);	      break;	    case 'E':		/* An RTX vector?  */	      XVEC (rt_val, i) = va_arg (p, rtvec);	      break;	    default:	      abort();	    }	}    }  va_end (p);  return rt_val;		/* Return the new RTX...		*/}/* gen_rtvec (n, [rt1, ..., rtn])****	    This routine creates an rtvec and stores within it the**	pointers to rtx's which are its arguments.*//*VARARGS1*/rtvecgen_rtvec (va_alist)     va_dcl{  int n, i;  va_list p;  rtx *vector;  va_start (p);  n = va_arg (p, int);  if (n == 0)    return NULL_RTVEC;		/* Don't allocate an empty rtvec...	*/  vector = (rtx *) alloca (n * sizeof (rtx));  for (i = 0; i < n; i++)    vector[i] = va_arg (p, rtx);  va_end (p);  return gen_rtvec_v (n, vector);}rtvecgen_rtvec_v (n, argp)     int n;     rtx *argp;{  register int i;  register rtvec rt_val;  if (n == 0)    return NULL_RTVEC;		/* Don't allocate an empty rtvec...	*/  rt_val = rtvec_alloc (n);	/* Allocate an rtvec...			*/  for (i = 0; i < n; i++)    rt_val->elem[i].rtx = *argp++;  return rt_val;}/* Generate a REG rtx for a new pseudo register of mode MODE.   This pseudo is assigned the next sequential register number.  */rtxgen_reg_rtx (mode)     enum machine_mode mode;{  register rtx val;  /* Make sure regno_pointer_flag and regno_reg_rtx are large     enough to have an element for this pseudo reg number.  */  if (reg_rtx_no == regno_pointer_flag_length)    {      rtx *new1;      char *new =	(char *) oballoc (regno_pointer_flag_length * 2);      bzero (new, regno_pointer_flag_length * 2);      bcopy (regno_pointer_flag, new, regno_pointer_flag_length);      regno_pointer_flag = new;      new1 = (rtx *) oballoc (regno_pointer_flag_length * 2 * sizeof (rtx));      bzero (new1, regno_pointer_flag_length * 2 * sizeof (rtx));      bcopy (regno_reg_rtx, new1, regno_pointer_flag_length * sizeof (rtx));      regno_reg_rtx = new1;      regno_pointer_flag_length *= 2;    }  val = gen_rtx (REG, mode, reg_rtx_no);  regno_reg_rtx[reg_rtx_no++] = val;  return val;}/* Identify REG as a probable pointer register.  */voidmark_reg_pointer (reg)     rtx reg;{  REGNO_POINTER_FLAG (REGNO (reg)) = 1;}/* Return 1 plus largest pseudo reg number used in the current function.  */intmax_reg_num (){  return reg_rtx_no;}/* Return 1 + the largest label number used so far.  */intmax_label_num (){  return label_num;}/* Return first label number used in this function (if any were used).  */intget_first_label_num (){  return first_label_num;}/* Assuming that X is an rtx (MEM, REG or SUBREG) for a fixed-point number,   return a MEM or SUBREG rtx that refers to the least-significant part of X.   MODE specifies how big a part of X to return;   it must not be larger than a word.   If X is a MEM whose address is a QUEUED, the value may be so also.  */rtxgen_lowpart (mode, x)     enum machine_mode mode;     register rtx x;{  /* This case loses if X is a subreg.  To catch bugs early,     complain if an invalid MODE is used even in other cases.  */  if (GET_MODE_SIZE (mode) > UNITS_PER_WORD      && GET_MODE_SIZE (mode) != GET_MODE_UNIT_SIZE (GET_MODE (x)))    abort ();  if (GET_MODE (x) == mode)    return x;  if (GET_CODE (x) == CONST_INT)    return gen_rtx (CONST_INT, VOIDmode, INTVAL (x) & GET_MODE_MASK (mode));  if (GET_CODE (x) == CONST_DOUBLE)/* In version 1.37, try this: *//*  if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT) abort (); */    /* Assume it's an int, so ..._LOW means the low-order word.  */    return gen_rtx (CONST_INT, VOIDmode,		    CONST_DOUBLE_LOW (x) & GET_MODE_MASK (mode));  if (GET_CODE (x) == MEM)    {      register int offset = 0;#ifdef WORDS_BIG_ENDIAN      offset = (max (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)		- max (GET_MODE_SIZE (mode), UNITS_PER_WORD));#endif#ifdef BYTES_BIG_ENDIAN      /* Adjust the address so that the address-after-the-data	 is unchanged.  */      offset -= (min (UNITS_PER_WORD, GET_MODE_SIZE (mode))		 - min (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));#endif      return change_address (x, mode, plus_constant (XEXP (x, 0), offset));    }  else if (GET_CODE (x) == SUBREG)    return (GET_MODE (SUBREG_REG (x)) == mode && SUBREG_WORD (x) == 0	    ? SUBREG_REG (x)	    : gen_rtx (SUBREG, mode, SUBREG_REG (x), SUBREG_WORD (x)));  else if (GET_CODE (x) == REG)    {#ifdef WORDS_BIG_ENDIAN      if (GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)	{	  return gen_rtx (SUBREG, mode, x,			  ((GET_MODE_SIZE (GET_MODE (x))			    - max (GET_MODE_SIZE (mode), UNITS_PER_WORD))			   / UNITS_PER_WORD));	}#endif      return gen_rtx (SUBREG, mode, x, 0);    }  else    abort ();}/* Like `gen_lowpart', but refer to the most significant part.  */rtxgen_highpart (mode, x)     enum machine_mode mode;     register rtx x;{  if (GET_CODE (x) == MEM)    {      register int offset = 0;#ifndef WORDS_BIG_ENDIAN      offset = (max (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)		- max (GET_MODE_SIZE (mode), UNITS_PER_WORD));#endif#ifndef BYTES_BIG_ENDIAN      if (GET_MODE_SIZE (mode) < UNITS_PER_WORD)	offset -= (GET_MODE_SIZE (mode)		   - min (UNITS_PER_WORD,			  GET_MODE_SIZE (GET_MODE (x))));#endif      return change_address (x, mode, plus_constant (XEXP (x, 0), offset));    }  else if (GET_CODE (x) == REG)    {#ifndef WORDS_BIG_ENDIAN      if (GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)	{	  return gen_rtx (SUBREG, mode, x,			  ((GET_MODE_SIZE (GET_MODE (x))			    - max (GET_MODE_SIZE (mode), UNITS_PER_WORD))			   / UNITS_PER_WORD));	}#endif      return gen_rtx (SUBREG, mode, x, 0);    }  else if (GET_CODE (x) == CONST_INT)    /* Assume that a const_int being used where a double is wanted       should be sign-extended.       This is right only if the use of const_int is carefully restricted.       In fact, I think it can happen only for numbers like 0 and 1.  */    return gen_rtx (CONST_INT, VOIDmode, (INTVAL (x) >> (BITS_PER_WORD - 1)));  else    abort ();}/* Return 1 iff X, assumed to be a SUBREG,   refers to the least significant part of its containing reg.   If X is not a SUBREG, always return 1 (it is its own low part!).  */intsubreg_lowpart_p (x)     rtx x;{  if (GET_CODE (x) != SUBREG)    return 1;#ifdef WORDS_BIG_ENDIAN  if (GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)    {      register enum machine_mode mode = GET_MODE (SUBREG_REG (x));      return (SUBREG_WORD (x)	      == ((GET_MODE_SIZE (GET_MODE (x))		   - max (GET_MODE_SIZE (mode), UNITS_PER_WORD))		  / UNITS_PER_WORD));    }#endif   return SUBREG_WORD (x) == 0;}/* Return a memory reference like MEMREF, but with its mode changed   to MODE and its address changed to ADDR.   (VOIDmode means don't change the mode.   NULL for ADDR means don't change the address.)  */rtxchange_address (memref, mode, addr)     rtx memref;     enum machine_mode mode;     rtx addr;{  rtx new;  if (GET_CODE (memref) != MEM)    abort ();  if (mode == VOIDmode)    mode = GET_MODE (memref);  if (addr == 0)    addr = XEXP (memref, 0);  new = gen_rtx (MEM, mode, memory_address (mode, addr));  MEM_VOLATILE_P (new) = MEM_VOLATILE_P (memref);  RTX_UNCHANGING_P (new) = RTX_UNCHANGING_P (memref);  MEM_IN_STRUCT_P (new) = MEM_IN_STRUCT_P (memref);  return new;}/* Return a newly created CODE_LABEL rtx with a unique label number.  */rtxgen_label_rtx (){  register rtx label = gen_rtx (CODE_LABEL, VOIDmode, 0, 0, 0, label_num++);  LABEL_NUSES (label) = 0;  return label;}/* For procedure integration.  *//* Return a newly created INLINE_HEADER rtx.  Should allocate this   from a permanent obstack when the opportunity arises.  */rtxgen_inline_header_rtx (insn, last_insn,		       first_labelno, last_labelno,		       max_parm_regnum, max_regnum, args_size,		       stack_slots)     rtx insn, last_insn;     int first_labelno, last_labelno, max_parm_regnum, max_regnum, args_size;     rtx stack_slots;{  rtx header = gen_rtx (INLINE_HEADER, VOIDmode,			cur_insn_uid++, NULL,			insn, last_insn,			first_labelno, last_labelno,			max_parm_regnum, max_regnum, args_size, stack_slots);  return header;}/* Install new pointers to the first and last insns in the chain.   Used for an inline-procedure after copying the insn chain.  */voidset_new_first_and_last_insn (first, last)     rtx first, last;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美电影一区二区三区| 555www色欧美视频| 日韩高清一区在线| 国产欧美日韩中文久久| 欧美日韩dvd在线观看| 粉嫩一区二区三区性色av| 日韩精品一级中文字幕精品视频免费观看 | 国产精品麻豆视频| 91精品国产综合久久久久久久 | 成人教育av在线| 日韩国产精品大片| 日韩美女久久久| 精品88久久久久88久久久| 精品视频一区二区不卡| 粉嫩绯色av一区二区在线观看| 日韩高清电影一区| 一区二区三区在线观看网站| 国产三级三级三级精品8ⅰ区| 欧美日韩色一区| www.亚洲色图.com| 国产黄人亚洲片| 青草av.久久免费一区| 亚洲一区在线视频| 综合欧美亚洲日本| 国产精品无人区| 久久久久久久综合狠狠综合| 日韩一区二区精品葵司在线| 在线视频观看一区| 91麻豆国产福利精品| 不卡的av电影在线观看| 粉嫩高潮美女一区二区三区| 国产一区999| 美女在线一区二区| 奇米精品一区二区三区在线观看 | 欧美伦理视频网站| 欧美日韩在线直播| 欧美综合在线视频| 欧美性色黄大片| 在线看日韩精品电影| 91国在线观看| 色综合久久66| 欧美三级在线看| 欧美日韩在线免费视频| 欧美无乱码久久久免费午夜一区| 日本高清不卡一区| 91精彩视频在线| 在线观看日产精品| 欧美性猛交xxxx乱大交退制版| 91国偷自产一区二区使用方法| 色综合久久88色综合天天免费| 91在线观看一区二区| 99国产精品国产精品久久| 色综合色狠狠综合色| 在线精品国精品国产尤物884a| 在线观看视频一区| 制服.丝袜.亚洲.另类.中文| 日韩一区二区三区在线观看| 精品国产乱码久久久久久影片| 久久久久青草大香线综合精品| 久久精品男人天堂av| 日本一区二区视频在线| 亚洲美女免费视频| 午夜精品久久久久久| 裸体一区二区三区| 国产1区2区3区精品美女| 91免费小视频| 欧美日产在线观看| 欧美精品一区二区三区四区| 中文字幕一区二区三中文字幕| 亚洲精品一二三四区| 青青草91视频| 成人美女视频在线看| 在线免费观看不卡av| 日韩女优毛片在线| 中文字幕一区二区三区av| 亚洲综合一区二区| 久久97超碰国产精品超碰| 成人福利电影精品一区二区在线观看| 色一情一乱一乱一91av| 日韩欧美一区二区在线视频| 国产日韩欧美电影| 亚洲成人自拍偷拍| 国产精品91一区二区| 在线一区二区三区四区五区 | 九色综合狠狠综合久久| 成人短视频下载| 欧美一区二区视频观看视频 | 亚洲国产一区二区三区青草影视| 亚洲电影视频在线| 国产精品一二三在| 欧美日韩一区二区三区在线 | 亚洲成a人片综合在线| 国产精品99久久久久久久女警| 欧美视频一区二| 久久九九99视频| 亚洲国产精品天堂| av在线这里只有精品| 欧美电影免费观看高清完整版在线观看| 中文字幕日本乱码精品影院| 久久精品99久久久| 欧美日韩一二三区| 亚洲天堂2014| 国产麻豆成人传媒免费观看| 欧美老女人第四色| 一区二区三区四区av| 大美女一区二区三区| 欧美大片一区二区| 天天色综合天天| 在线视频国内自拍亚洲视频| 国产精品色哟哟| 国产呦萝稀缺另类资源| 日韩一区二区在线观看| 性做久久久久久免费观看欧美| 成人av资源站| 国产日韩一级二级三级| 久国产精品韩国三级视频| 在线电影欧美成精品| |精品福利一区二区三区| 国产精品亚洲人在线观看| 日韩一区二区三| 免费在线观看精品| 欧美日韩一二三| 亚洲综合色在线| 91原创在线视频| 国产精品久久久久7777按摩| 久久精品国产亚洲一区二区三区| 欧美日韩mp4| 亚洲成人av福利| 欧美无乱码久久久免费午夜一区 | 狠狠色丁香婷婷综合| 日韩一区二区三区在线视频| 日韩精品一级二级| 日韩视频国产视频| 美女尤物国产一区| 精品国产一区二区三区四区四 | 色偷偷88欧美精品久久久| 中文av一区二区| 成人蜜臀av电影| 中文字幕制服丝袜一区二区三区| 国产成人精品免费| 中文字幕精品在线不卡| 成人丝袜视频网| 中文欧美字幕免费| 91在线丨porny丨国产| 一区二区三区不卡在线观看| 在线观看免费一区| 日韩中文字幕麻豆| 日韩视频免费观看高清完整版在线观看 | 中文字幕亚洲精品在线观看| 91丨porny丨在线| 亚洲在线成人精品| 欧美日韩国产大片| 久久成人麻豆午夜电影| 国产日韩欧美不卡| 色综合天天综合色综合av| 亚洲国产人成综合网站| 欧美高清精品3d| 久久精品国产99| 中文子幕无线码一区tr| 99久久伊人网影院| 天天色综合天天| 久久久久亚洲蜜桃| 色琪琪一区二区三区亚洲区| 亚洲bt欧美bt精品| 精品噜噜噜噜久久久久久久久试看| 国产精品白丝av| 亚洲自拍欧美精品| 日韩欧美亚洲国产另类| 国产成人免费在线视频| 亚洲精品久久7777| 欧美一二区视频| av一区二区三区黑人| 五月天国产精品| 久久综合视频网| 色偷偷88欧美精品久久久| 奇米色一区二区| 中日韩av电影| 欧美一级在线免费| heyzo一本久久综合| 亚洲第一二三四区| 国产嫩草影院久久久久| 欧美日韩精品一区二区三区蜜桃 | 国产在线精品不卡| 亚洲欧美日本在线| 精品国产免费一区二区三区香蕉| 91香蕉视频污| 国产真实乱偷精品视频免| 日韩美女视频一区二区 | 精品成人佐山爱一区二区| 99久久精品免费精品国产| 日本美女一区二区| 综合av第一页| 欧美tk—视频vk| 在线看不卡av| 成人小视频免费在线观看| 日本三级韩国三级欧美三级| 中文字幕亚洲电影| 久久久久久麻豆| 日韩一区二区电影网| 色悠悠亚洲一区二区|