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

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

?? tm-i386.h

?? 這是完整的gcc源代碼
?? H
?? 第 1 頁 / 共 3 頁
字號:
   except in the FP regs, where a single reg is always enough.  */#define CLASS_MAX_NREGS(CLASS, MODE)	\ ((CLASS) == FLOAT_REGS ? 1 :			\   ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))/* Stack layout; function entry, exit and calling.  *//* Define this if pushing a word on the stack   makes the stack pointer a smaller address.  */#define STACK_GROWS_DOWNWARD/* Define this if the nominal address of the stack frame   is at the high-address end of the local variables;   that is, each additional local variable allocated   goes at a more negative offset in the frame.  */#define FRAME_GROWS_DOWNWARD/* Offset within stack frame to start allocating local variables at.   If FRAME_GROWS_DOWNWARD, this is the offset to the END of the   first local allocated.  Otherwise, it is the offset to the BEGINNING   of the first local allocated.  */#define STARTING_FRAME_OFFSET 0/* If we generate an insn to push BYTES bytes,   this says how many the stack pointer really advances by.   On 386 pushw decrements by exactly 2 no matter what the position was.   On the 386 there is no pushb; we use pushw instead, and this   has the effect of rounding up to 2.  */#define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & (-2))/* Offset of first parameter from the argument pointer register value.  */#define FIRST_PARM_OFFSET(FNDECL) 8/* Value is 1 if returning from a function call automatically   pops the arguments described by the number-of-args field in the call.   FUNTYPE is the data type of the function (as a tree),   or for a library call it is an identifier node for the subroutine name.   On the 80386, the RTD insn may be used to pop them if the number     of args is fixed, but if the number is variable then the caller     must pop them all.  RTD can't be used for library calls now     because the library is compiled with the Unix compiler.   Use of RTD is a selectable option, since it is incompatible with   standard Unix calling sequences.  If the option is not selected,   the caller must always pop the args.  */#define RETURN_POPS_ARGS(FUNTYPE)   \  (TARGET_RTD && TREE_CODE (FUNTYPE) != IDENTIFIER_NODE		\   && (TYPE_ARG_TYPES (FUNTYPE) == 0				\       || TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE))) == void_type_node))#define FUNCTION_VALUE(VALTYPE, FUNC)  \   gen_rtx (REG, TYPE_MODE (VALTYPE), \	    VALUE_REGNO(TYPE_MODE(VALTYPE)))/* Define how to find the value returned by a library function   assuming the value has mode MODE.  */#define LIBCALL_VALUE(MODE) \  gen_rtx (REG, MODE, VALUE_REGNO(MODE))/* 1 if N is a possible register number for function argument passing.   On the 80386, no registers are used in this way.      *NOTE* -mregparm does not work.   It exists only to test register calling conventions.  */#define FUNCTION_ARG_REGNO_P(N) 0/* Define a data type for recording info about an argument list   during the scan of that argument list.  This data type should   hold all necessary information about the function itself   and about the args processed so far, enough to enable macros   such as FUNCTION_ARG to determine where the next arg should go.   On the 80386, this is a single integer, which is a number of bytes   of arguments scanned so far.  */#define CUMULATIVE_ARGS int/* Initialize a variable CUM of type CUMULATIVE_ARGS   for a call to a function whose data type is FNTYPE.   For a library call, FNTYPE is 0.   On the 80386, the offset starts at 0.  */#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE)	\ ((CUM) = 0)/* Update the data in CUM to advance over an argument   of mode MODE and data type TYPE.   (TYPE is null for libcalls where that information may not be available.)  */#define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)	\ ((CUM) += ((MODE) != BLKmode			\	    ? (GET_MODE_SIZE (MODE) + 3) & ~3	\	    : (int_size_in_bytes (TYPE) + 3) & ~3))/* Define where to put the arguments to a function.   Value is zero to push the argument on the stack,   or a hard register in which to store the argument.   MODE is the argument's machine mode.   TYPE is the data type of the argument (as a tree).    This is null for libcalls where that information may    not be available.   CUM is a variable of type CUMULATIVE_ARGS which gives info about    the preceding args and about the function being called.   NAMED is nonzero if this argument is a named parameter    (otherwise it is an extra parameter matching an ellipsis).  *//* On the 80386 all args are pushed, except if -mregparm is specified   then the first two words of arguments are passed in EAX, EDX.   *NOTE* -mregparm does not work.   It exists only to test register calling conventions.  */#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \((TARGET_REGPARM && (CUM) < 8) ? gen_rtx (REG, (MODE), (CUM) / 4) : 0)/* For an arg passed partly in registers and partly in memory,   this is the number of registers used.   For args passed entirely in registers or entirely in memory, zero.  */#define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \((TARGET_REGPARM && (CUM) < 8					\  && 8 < ((CUM) + ((MODE) == BLKmode				\		      ? int_size_in_bytes (TYPE)		\		      : GET_MODE_SIZE (MODE))))  		\ ? 2 - (CUM) / 4 : 0)/* This macro generates the assembly code for function entry.   FILE is a stdio stream to output the code to.   SIZE is an int: how many units of temporary storage to allocate.   Refer to the array `regs_ever_live' to determine which registers   to save; `regs_ever_live[I]' is nonzero if register number I   is ever used in the function.  This macro is responsible for   knowing which registers should not be saved even if used.  */#define FUNCTION_PROLOGUE(FILE, SIZE)     \  function_prologue (FILE, SIZE)/* Output assembler code to FILE to increment profiler label # LABELNO   for profiling a function entry.  */#define FUNCTION_PROFILER(FILE, LABELNO)  \   fprintf (FILE, "\tmovl $%sP%d,%%edx\n\tcall _mcount\n", LPREFIX, (LABELNO));/* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,   the stack pointer does not matter.  The value is tested only in   functions that have frame pointers.   No definition is equivalent to always zero.  *//* Note on the 386 it might be more efficient not to define this since    we have to restore it ourselves from the frame pointer, in order to   use pop */#define EXIT_IGNORE_STACK 1/* This macro generates the assembly code for function exit,   on machines that need it.  If FUNCTION_EPILOGUE is not defined   then individual return instructions are generated for each   return statement.  Args are same as for FUNCTION_PROLOGUE.   The function epilogue should not depend on the current stack pointer!   It should use the frame pointer only.  This is mandatory because   of alloca; we also take advantage of it to omit stack adjustments   before returning.  */#define FUNCTION_EPILOGUE(FILE, SIZE) \  function_epilogue (FILE, SIZE)/* If the memory address ADDR is relative to the frame pointer,   correct it to be relative to the stack pointer instead.   This is for when we don't use a frame pointer.   ADDR should be a variable name.  */#define FIX_FRAME_POINTER_ADDRESS(ADDR,DEPTH)  \{ int offset = -1;							\  rtx regs = stack_pointer_rtx;						\  if (ADDR == frame_pointer_rtx)					\    offset = 0;								\  else if (GET_CODE (ADDR) == PLUS && XEXP (ADDR, 0) == frame_pointer_rtx \	   && GET_CODE (XEXP (ADDR, 1)) == CONST_INT)			\    offset = INTVAL (XEXP (ADDR, 1));					\  else if (GET_CODE (ADDR) == PLUS && XEXP (ADDR, 0) == frame_pointer_rtx) \    { rtx other_reg = XEXP (ADDR, 1);					\      offset = 0;							\      regs = gen_rtx (PLUS, Pmode, stack_pointer_rtx, other_reg); }	\  else if (GET_CODE (ADDR) == PLUS && XEXP (ADDR, 1) == frame_pointer_rtx) \    { rtx other_reg = XEXP (ADDR, 0);					\      offset = 0;							\      regs = gen_rtx (PLUS, Pmode, stack_pointer_rtx, other_reg); }	\  else if (GET_CODE (ADDR) == PLUS					\	   && GET_CODE (XEXP (ADDR, 0)) == PLUS				\	   && XEXP (XEXP (ADDR, 0), 0) == frame_pointer_rtx		\	   && GET_CODE (XEXP (ADDR, 1)) == CONST_INT)			\    { rtx other_reg = XEXP (XEXP (ADDR, 0), 1);				\      offset = INTVAL (XEXP (ADDR, 1));					\      regs = gen_rtx (PLUS, Pmode, stack_pointer_rtx, other_reg); }	\  else if (GET_CODE (ADDR) == PLUS					\	   && GET_CODE (XEXP (ADDR, 0)) == PLUS				\	   && XEXP (XEXP (ADDR, 0), 1) == frame_pointer_rtx		\	   && GET_CODE (XEXP (ADDR, 1)) == CONST_INT)			\    { rtx other_reg = XEXP (XEXP (ADDR, 0), 0);				\      offset = INTVAL (XEXP (ADDR, 1));					\      regs = gen_rtx (PLUS, Pmode, stack_pointer_rtx, other_reg); }	\  if (offset >= 0)							\    { int regno;							\      extern char call_used_regs[];					\      for (regno = FIRST_FLOAT_REG; regno < FIRST_PSEUDO_REGISTER; regno++)\	if (regs_ever_live[regno] && ! call_used_regs[regno])		\	  offset += 8;							\      for (regno=0 ; regno <FIRST_FLOAT_REG ; regno++)   		\	if (regs_ever_live[regno] && ! call_used_regs[regno])		\	  offset += 4;							\      offset -= 4;							\      ADDR = plus_constant (regs, offset + (DEPTH)); } }/* Addressing modes, and classification of registers for them.  *//* #define HAVE_POST_INCREMENT *//* #define HAVE_POST_DECREMENT *//* #define HAVE_PRE_DECREMENT *//* #define HAVE_PRE_INCREMENT *//* Macros to check register numbers against specific register classes.  *//* These assume that REGNO is a hard or pseudo reg number.   They give nonzero only if REGNO is a hard reg of the suitable class   or a pseudo reg currently allocated to a suitable hard reg.   Since they use reg_renumber, they are safe only once reg_renumber   has been allocated, which happens in local-alloc.c.  */#define REGNO_OK_FOR_INDEX_P(REGNO) \  ((REGNO) < STACK_POINTER_REGNUM || (unsigned) reg_renumber[REGNO] < STACK_POINTER_REGNUM)#define REGNO_OK_FOR_BASE_P(REGNO) \  ((REGNO) <= STACK_POINTER_REGNUM || (unsigned) reg_renumber[REGNO] <= STACK_POINTER_REGNUM)#define REGNO_OK_FOR_SIREG_P(REGNO) ((REGNO) == 4 || reg_renumber[REGNO] == 4)#define REGNO_OK_FOR_DIREG_P(REGNO) ((REGNO) == 5 || reg_renumber[REGNO] == 5)/* The macros REG_OK_FOR..._P assume that the arg is a REG rtx   and check its validity for a certain class.   We have two alternate definitions for each of them.   The usual definition accepts all pseudo regs; the other rejects   them unless they have been allocated suitable hard regs.   The symbol REG_OK_STRICT causes the latter definition to be used.   Most source files want to accept pseudo regs in the hope that   they will get allocated to the class that the insn wants them to be in.   Source files for reload pass need to be strict.   After reload, it makes no difference, since pseudo regs have   been eliminated by then.  */#ifndef REG_OK_STRICT/* Nonzero if X is a hard reg that can be used as an index or if   it is a pseudo reg.  */#define REG_OK_FOR_INDEX_P(X) (REGNO (X) < STACK_POINTER_REGNUM || REGNO (X) >= FIRST_PSEUDO_REGISTER)/* Nonzero if X is a hard reg that can be used as a base reg   of if it is a pseudo reg.  */  /* ?wfs */#define REG_OK_FOR_BASE_P(X) (REGNO (X) <= STACK_POINTER_REGNUM || REGNO(X) >= FIRST_PSEUDO_REGISTER)#define REG_OK_FOR_STRREG_P(X) \  (REGNO (X) == 4 || REGNO (X) == 5 || REGNO (X) >= FIRST_PSEUDO_REGISTER)#else/* Nonzero if X is a hard reg that can be used as an index.  */#define REG_OK_FOR_INDEX_P(X) REGNO_OK_FOR_INDEX_P (REGNO (X))/* Nonzero if X is a hard reg that can be used as a base reg.  */#define REG_OK_FOR_BASE_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))#define REG_OK_FOR_STRREG_P(X) \  (REGNO_OK_FOR_DIREG_P (REGNO (X)) || REGNO_OK_FOR_SIREG_P (REGNO (X)))#endif/* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression   that is a valid memory address for an instruction.   The MODE argument is the machine mode for the MEM expression   that wants to use this address.   The other macros defined here are used only in GO_IF_LEGITIMATE_ADDRESS,   except for CONSTANT_ADDRESS_P which is usually machine-independent.  */#define MAX_REGS_PER_ADDRESS 2#define CONSTANT_ADDRESS_P(X)   CONSTANT_P (X)/* Nonzero if the constant value X is a legitimate general operand.   It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.  */#define LEGITIMATE_CONSTANT_P(X) 1#define GO_IF_INDEXABLE_BASE(X, ADDR)	\ if (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X)) goto ADDR#define LEGITIMATE_INDEX_REG_P(X)   \  (GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))/* Return 1 if X is an index or an index times a scale.  */#define LEGITIMATE_INDEX_P(X)   \   (LEGITIMATE_INDEX_REG_P (X)				\    || (GET_CODE (X) == MULT				\	&& LEGITIMATE_INDEX_REG_P (XEXP (X, 0))		\	&& GET_CODE (XEXP (X, 1)) == CONST_INT		\	&& (INTVAL (XEXP (X, 1)) == 2			\	    || INTVAL (XEXP (X, 1)) == 4		\	    || INTVAL (XEXP (X, 1)) == 8)))/* Go to ADDR if X is an index term, a base reg, or a sum of those.  */#define GO_IF_INDEXING(X, ADDR)	\{ if (LEGITIMATE_INDEX_P (X)) goto ADDR;				\  GO_IF_INDEXABLE_BASE (X, ADDR);					\  if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 0)))		\    { GO_IF_INDEXABLE_BASE (XEXP (X, 1), ADDR); }			\  if (GET_CODE (X) == PLUS && LEGITIMATE_INDEX_P (XEXP (X, 1)))		\    { GO_IF_INDEXABLE_BASE (XEXP (X, 0), ADDR); } }/* We used to allow this, but it isn't ever used.   || ((GET_CODE (X) == POST_DEC || GET_CODE (X) == POST_INC)		\       && REG_P (XEXP (X, 0))						\       && REG_OK_FOR_STRREG_P (XEXP (X, 0)))				\*/#define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR) \{ if (CONSTANT_ADDRESS_P (X)) goto ADDR;				\  GO_IF_INDEXING (X, ADDR);						\  if (GET_CODE (X) == PLUS)						\    { if (CONSTANT_ADDRESS_P (XEXP (X, 1)))				\	GO_IF_INDEXING (XEXP (X, 0), ADDR);				\      if (CONSTANT_ADDRESS_P (XEXP (X, 0)))				\	GO_IF_INDEXING (XEXP (X, 1), ADDR); } }/* Try machine-dependent ways of modifying an illegitimate address   to be legitimate.  If we find one, return the new, valid address.   This macro is used in only one place: `memory_address' in explow.c.   OLDX is the address as it was before break_out_memory_refs was called.   In some cases it is useful to look at this to decide what needs to be done.   MODE and WIN are passed so that this macro can use   GO_IF_LEGITIMATE_ADDRESS.   It is always safe for this macro to do nothing.  It exists to recognize   opportunities to optimize the output.   For the 80386, we handle X+REG by loading X into a register R and   using R+REG.  R will go in a general reg and indexing will be used.   However, if REG is a broken-out memory address or multiplication,   nothing needs to be done because REG can certainly go in a general reg.  */#define LEGITIMIZE_ADDRESS(X,OLDX,MODE,WIN)   \{ register int ch = (X) != (OLDX);					\  if (GET_CODE (X) == PLUS)						\    { if (GET_CODE (XEXP (X, 0)) == MULT)				\	ch = 1, XEXP (X, 0) = force_operand (XEXP (X, 0), 0);		\      if (GET_CODE (XEXP (X, 1)) == MULT)				\	ch = 1, XEXP (X, 1) = force_operand (XEXP (X, 1), 0);		\

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
另类小说综合欧美亚洲| 一区二区在线看| 激情欧美日韩一区二区| 精品剧情在线观看| 国产麻豆精品theporn| 久久久久久久久久久久久久久99| 国产在线视频精品一区| 久久亚洲二区三区| 不卡视频在线观看| 亚洲男人天堂一区| 91麻豆精品国产自产在线| 日本三级韩国三级欧美三级| 欧美一级视频精品观看| 激情国产一区二区 | 国产成人免费高清| 中文在线资源观看网站视频免费不卡| 国产成人精品亚洲日本在线桃色 | 欧美精品一区二区在线播放| 看国产成人h片视频| 久久久亚洲午夜电影| 成人小视频免费观看| 伊人婷婷欧美激情| 日韩一区二区电影在线| 国产精品一级黄| 亚洲色大成网站www久久九九| 在线免费亚洲电影| 麻豆国产精品视频| 亚洲欧美一区二区久久| 欧美一级专区免费大片| 国产高清在线观看免费不卡| 亚洲欧美另类小说视频| 精品三级在线观看| 色网站国产精品| 捆绑调教一区二区三区| 中文字幕日本乱码精品影院| 在线不卡a资源高清| 国产成人午夜电影网| 亚洲444eee在线观看| 国产视频一区不卡| 欧美色网一区二区| 懂色av一区二区在线播放| 视频一区二区中文字幕| 久久精品亚洲乱码伦伦中文| 欧美日韩一二三区| av一区二区三区四区| 九九精品一区二区| 亚洲图片有声小说| 国产精品美女久久久久久久久久久 | 国内外精品视频| 一区二区三区丝袜| 国产婷婷精品av在线| 91精品蜜臀在线一区尤物| 99久久精品一区二区| 九九国产精品视频| 亚洲国产一二三| 国产女同互慰高潮91漫画| 欧美精品777| 色哟哟国产精品免费观看| 国产精品原创巨作av| 日本aⅴ免费视频一区二区三区| 亚洲人成伊人成综合网小说| 国产日韩欧美一区二区三区乱码| 日韩美女一区二区三区四区| 色婷婷综合久久久中文字幕| 成人avav影音| 岛国精品一区二区| 国产超碰在线一区| 国产激情偷乱视频一区二区三区| 免费高清在线视频一区·| 五月激情综合婷婷| 亚洲一卡二卡三卡四卡五卡| 国产精品国产馆在线真实露脸| 精品久久久久久无| 欧美成人欧美edvon| 91精品久久久久久蜜臀| 欧美精品777| 91精品国产手机| 91精品欧美一区二区三区综合在| 欧美精品三级日韩久久| 欧美日韩一卡二卡三卡 | 欧美丝袜丝nylons| 欧洲精品中文字幕| 欧美群妇大交群中文字幕| 欧美亚洲动漫精品| 欧美日韩极品在线观看一区| 欧美日韩免费观看一区三区| 欧美四级电影网| 3d成人h动漫网站入口| 欧美一级久久久久久久大片| 51午夜精品国产| 欧美成人免费网站| 国产欧美一区二区精品忘忧草 | 成人午夜激情在线| 91香蕉视频mp4| 色综合 综合色| 欧美日韩精品欧美日韩精品一综合| 欧美唯美清纯偷拍| 91精品国产综合久久精品app| 欧美人xxxx| 精品久久久久久久久久久院品网 | 亚洲精品国产成人久久av盗摄| 国产精品九色蝌蚪自拍| 亚洲女爱视频在线| 无吗不卡中文字幕| 久久精品国内一区二区三区| 麻豆成人91精品二区三区| 国产成人综合亚洲网站| 99国内精品久久| 欧美日韩精品专区| 久久亚洲精品小早川怜子| 国产精品人成在线观看免费| 亚洲婷婷综合久久一本伊一区| 亚洲综合免费观看高清在线观看| 日韩va亚洲va欧美va久久| 韩国v欧美v亚洲v日本v| jizz一区二区| 欧美精品黑人性xxxx| 国产欧美一二三区| 亚洲国产美国国产综合一区二区 | 国产麻豆精品theporn| 91玉足脚交白嫩脚丫在线播放| 91成人国产精品| 日韩欧美亚洲一区二区| 中文字幕一区二区视频| 日韩综合小视频| 成人动漫中文字幕| 欧美一级高清片| 亚洲女同女同女同女同女同69| 午夜精品久久一牛影视| 国产成人夜色高潮福利影视| 在线免费亚洲电影| 国产欧美一区二区精品忘忧草 | 亚洲福利一二三区| 懂色av一区二区夜夜嗨| 91精品一区二区三区在线观看| 亚洲国产精品精华液2区45| 亚洲一区二区美女| 成人午夜电影久久影院| 67194成人在线观看| 亚洲欧美福利一区二区| 极品瑜伽女神91| 欧美日韩一区二区在线观看视频 | 久久久久久久久97黄色工厂| 亚洲成a人在线观看| 国产成人免费av在线| 欧美电影一区二区| 亚洲欧美日韩国产中文在线| 极品瑜伽女神91| 91精品国产aⅴ一区二区| 夜夜亚洲天天久久| 成人av网址在线| 久久久综合网站| 免费精品视频最新在线| 欧美日韩一区久久| 亚洲精品一二三| 丁香桃色午夜亚洲一区二区三区| 欧美va亚洲va香蕉在线| 丝袜国产日韩另类美女| 在线视频中文字幕一区二区| 国产精品国产三级国产| 粉嫩高潮美女一区二区三区| 久久久久久久av麻豆果冻| 久久99深爱久久99精品| 337p亚洲精品色噜噜狠狠| 亚洲国产中文字幕| 欧洲一区二区三区免费视频| 亚洲欧美欧美一区二区三区| 不卡视频在线看| 国产精品福利在线播放| 成人性生交大片免费| 国产人久久人人人人爽| 国产福利不卡视频| 久久久久久97三级| 福利一区在线观看| 国产欧美综合在线观看第十页| 国产精品亚洲午夜一区二区三区| 日韩欧美中文字幕精品| 久久国产精品色婷婷| 精品国产一区二区三区不卡| 精品在线视频一区| 久久久久久久久一| 国产jizzjizz一区二区| 中文字幕在线不卡视频| 一本久久综合亚洲鲁鲁五月天| 亚洲女子a中天字幕| 在线国产亚洲欧美| 午夜视频一区在线观看| 欧美一三区三区四区免费在线看 | 99视频精品免费视频| 亚洲伦理在线免费看| 色婷婷香蕉在线一区二区| 亚洲一区二区三区爽爽爽爽爽| 欧美撒尿777hd撒尿| 日本不卡的三区四区五区| 欧美电视剧在线观看完整版| 国产曰批免费观看久久久| 中文字幕在线不卡一区二区三区| 色综合久久综合网| 日本视频免费一区| 国产精品系列在线|