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

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

?? tm-m68k.h

?? 這是完整的gcc源代碼
?? H
?? 第 1 頁 / 共 5 頁
字號:
#define REG_CLASS_NAMES \ { "NO_REGS", "LO_FPA_REGS", "FPA_REGS", "FP_REGS",  \   "FP_OR_FPA_REGS", "DATA_REGS", "DATA_OR_FPA_REGS", "DATA_OR_FP_REGS",  \   "DATA_OR_FP_OR_FPA_REGS", "ADDR_REGS", "GENERAL_REGS",  \   "GENERAL_OR_FPA_REGS", "GENERAL_OR_FP_REGS", "ALL_REGS" }/* Define which registers fit in which classes.   This is an initializer for a vector of HARD_REG_SET   of length N_REG_CLASSES.  */#define REG_CLASS_CONTENTS \{							\ {0, 0},			/* NO_REGS */		\ {0xff000000, 0x000000ff},	/* LO_FPA_REGS */	\ {0xff000000, 0x00ffffff},	/* FPA_REGS */		\ {0x00ff0000, 0x00000000},	/* FP_REGS */		\ {0xffff0000, 0x00ffffff},	/* FP_OR_FPA_REGS */	\ {0x000000ff, 0x00000000},	/* DATA_REGS */		\ {0xff0000ff, 0x00ffffff},	/* DATA_OR_FPA_REGS */	\ {0x00ff00ff, 0x00000000},	/* DATA_OR_FP_REGS */	\ {0xffff00ff, 0x00ffffff},	/* DATA_OR_FP_OR_FPA_REGS */\ {0x0000ff00, 0x00000000},	/* ADDR_REGS */		\ {0x0000ffff, 0x00000000},	/* GENERAL_REGS */	\ {0xff00ffff, 0x00ffffff},	/* GENERAL_OR_FPA_REGS */\ {0x00ffffff, 0x00000000},	/* GENERAL_OR_FP_REGS */\ {0xffffffff, 0x00ffffff},	/* ALL_REGS */		\}/* The same information, inverted:   Return the class number of the smallest class containing   reg number REGNO.  This could be a conditional expression   or could index an array.  */extern enum reg_class regno_reg_class[];#define REGNO_REG_CLASS(REGNO) (regno_reg_class[(REGNO)>>3])/* The class value for index registers, and the one for base regs.  */#define INDEX_REG_CLASS GENERAL_REGS#define BASE_REG_CLASS ADDR_REGS/* Get reg_class from a letter such as appears in the machine description.   We do a trick here to modify the effective constraints on the   machine description; we zorch the constraint letters that aren't   appropriate for a specific target.  This allows us to guarantee   that a specific kind of register will not be used for a given target   without fiddling with the register classes above. */#define REG_CLASS_FROM_LETTER(C) \  ((C) == 'a' ? ADDR_REGS :			\   ((C) == 'd' ? DATA_REGS :			\    ((C) == 'f' ? (TARGET_68881 ? FP_REGS :	\		   NO_REGS) :			\     ((C) == 'x' ? (TARGET_FPA ? FPA_REGS :	\		    NO_REGS) :			\      ((C) == 'y' ? (TARGET_FPA ? LO_FPA_REGS :	\		     NO_REGS) :			\       NO_REGS)))))/* The letters I, J, K, L and M in a register constraint string   can be used to stand for particular ranges of immediate operands.   This macro defines what the ranges are.   C is the letter, and VALUE is a constant value.   Return 1 if VALUE is in the range specified by C.   For the 68000, `I' is used for the range 1 to 8   allowed as immediate shift counts and in addq.   `J' is used for the range of signed numbers that fit in 16 bits.   `K' is for numbers that moveq can't handle.   `L' is for range -8 to -1, range of values that can be added with subq.  */#define CONST_OK_FOR_LETTER_P(VALUE, C)  \  ((C) == 'I' ? (VALUE) > 0 && (VALUE) <= 8 :    \   (C) == 'J' ? (VALUE) >= -0x8000 && (VALUE) <= 0x7FFF :	\   (C) == 'K' ? (VALUE) < -0x80 || (VALUE) >= 0x80 :	\   (C) == 'L' ? (VALUE) < 0 && (VALUE) >= -8 : 0)/* * A small bit of explanation: * "G" defines all of the floating constants that are *NOT* 68881 * constants.  this is so 68881 constants get reloaded and the * fpmovecr is used.  "H" defines *only* the class of constants that * the fpa can use, because these can be gotten at in any fpa * instruction and there is no need to force reloads. */#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C)  \  ((C) == 'G' ? ! (TARGET_68881 && standard_68881_constant_p (VALUE)) : \   (C) == 'H' ? (TARGET_FPA && standard_sun_fpa_constant_p (VALUE)) : 0)/* Given an rtx X being reloaded into a reg required to be   in class CLASS, return the class of reg to actually use.   In general this is just CLASS; but on some machines   in some cases it is preferable to use a more restrictive class.   On the 68000 series, use a data reg if possible when the   value is a constant in the range where moveq could be used   and we ensure that QImodes are reloaded into data regs.  */#define PREFERRED_RELOAD_CLASS(X,CLASS)  \  ((GET_CODE (X) == CONST_INT			\    && (unsigned) (INTVAL (X) + 0x80) < 0x100	\    && (CLASS) != ADDR_REGS)			\   ? DATA_REGS					\   : GET_MODE (X) == QImode			\   ? DATA_REGS					\   : (CLASS))/* Return the maximum number of consecutive registers   needed to represent mode MODE in a register of class CLASS.  *//* On the 68000, this is the size of MODE in words,   except in the FP regs, where a single reg is always enough.  */#define CLASS_MAX_NREGS(CLASS, MODE)	\ ((CLASS) == FP_REGS || (CLASS) == FPA_REGS || (CLASS) == LO_FPA_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 the 68000, sp@- in a byte insn really pushes a word.  */#define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)/* 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 68000, the RTS insn cannot pop anything.   On the 68010, 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 how to find the value returned by a function.   VALTYPE is the data type of the value (as a tree).   If the precise function being called is known, FUNC is its FUNCTION_DECL;   otherwise, FUNC is 0.  *//* On the 68000 the return value is in D0 regardless.  */#define FUNCTION_VALUE(VALTYPE, FUNC)  \  gen_rtx (REG, TYPE_MODE (VALTYPE), 0)/* Define how to find the value returned by a library function   assuming the value has mode MODE.  *//* On the 68000 the return value is in D0 regardless.  */#define LIBCALL_VALUE(MODE)  gen_rtx (REG, MODE, 0)/* 1 if N is a possible register number for a function value.   On the 68000, d0 is the only register thus used.  */#define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)/* Define this if PCC uses the nonreentrant convention for returning   structure and union values.  */#define PCC_STATIC_STRUCT_RETURN/* 1 if N is a possible register number for function argument passing.   On the 68000, no registers are used in this way.  */#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 m68k, 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 m68k, 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 68000 all args are pushed, except if -mregparm is specified   then the first two words of arguments are passed in d0, d1.   *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.  *//* Note that the order of the bit mask for fmovem is the opposite   of the order for movem!  */#define FUNCTION_PROLOGUE(FILE, SIZE)     \{ register int regno;						\  register int mask = 0;					\  extern char call_used_regs[];					\  int fsize = ((SIZE) + 3) & -4;				\  if (frame_pointer_needed)					\    { if (TARGET_68020 || fsize < 0x8000)			\        fprintf (FILE, "\tlink a6,#%d\n", -fsize);		\      else							\	fprintf (FILE, "\tlink a6,#0\n\tsubl #%d,sp\n", fsize); }  \  for (regno = 24; regno < 56; regno++)				\    if (regs_ever_live[regno] && ! call_used_regs[regno])	\      fprintf(FILE, "\tfpmoved %s, sp@-\n",			\	      reg_names[regno]);				\  for (regno = 16; regno < 24; regno++)				\    if (regs_ever_live[regno] && ! call_used_regs[regno])	\       mask |= 1 << (regno - 16);				\  if ((mask & 0xff) != 0)					\    fprintf (FILE, "\tfmovem #0x%x,sp@-\n", mask & 0xff);       \  mask = 0;							\  for (regno = 0; regno < 16; regno++)				\    if (regs_ever_live[regno] && ! call_used_regs[regno])	\       mask |= 1 << (15 - regno);				\  if (frame_pointer_needed)					\    mask &= ~ (1 << (15-FRAME_POINTER_REGNUM));			\  if (exact_log2 (mask) >= 0)					\    fprintf (FILE, "\tmovel %s,sp@-\n", reg_names[15 - exact_log2 (mask)]);  \  else if (mask) fprintf (FILE, "\tmoveml #0x%x,sp@-\n", mask); }/* Output assembler code to FILE to increment profiler label # LABELNO   for profiling a function entry.  */#define FUNCTION_PROFILER(FILE, LABELNO)  \  fprintf (FILE, "\tlea LP%d,a0\n\tjsr mcount\n", (LABELNO))/* Output assembler code to FILE to initialize this source file's   basic block profiling info, if that has not already been done.  */#define FUNCTION_BLOCK_PROFILER(FILE, LABELNO)  \  fprintf (FILE, "\ttstl LPBX0\n\tbne LPI%d\n\tpea LPBX0\n\tjsr ___bb_init_func\n\taddql #4,sp\nLPI%d:\n",  \	   LABELNO, LABELNO);/* Output assembler code to FILE to increment the entry-count for   the BLOCKNO'th basic block in this source file.  */#define BLOCK_PROFILER(FILE, BLOCKNO)	\  fprintf (FILE, "\taddql #1,LPBX2+%d\n", 4 * BLOCKNO)/* 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.  */#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) \

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一a一片一级一片| 日韩精品中文字幕在线一区| 欧美精品欧美精品系列| 久久久久88色偷偷免费| 亚洲一区在线播放| 国产成人精品在线看| 日韩欧美国产一区在线观看| 中文字幕日韩欧美一区二区三区| 奇米色一区二区| 色又黄又爽网站www久久| 久久综合资源网| 蜜臀av一区二区在线免费观看 | 在线视频中文字幕一区二区| 久久久国产午夜精品 | 亚洲一区二区三区四区在线观看| 成人禁用看黄a在线| 久久只精品国产| 蜜桃视频一区二区三区| 欧美视频在线观看一区| 亚洲精品第一国产综合野| 95精品视频在线| 国产精品久久久久影视| 风间由美中文字幕在线看视频国产欧美| 日韩欧美中文字幕公布| 日韩激情一区二区| 久久久噜噜噜久久人人看| 午夜精品一区在线观看| 欧美综合视频在线观看| 亚洲欧美另类久久久精品2019| 成人午夜电影小说| 中文字幕精品综合| 成人免费av资源| 中文字幕日韩av资源站| 9久草视频在线视频精品| 中文字幕乱码日本亚洲一区二区 | 日产国产欧美视频一区精品 | 99久久99久久综合| 亚洲欧美综合色| 欧美自拍偷拍一区| 亚洲va韩国va欧美va| 6080yy午夜一二三区久久| 午夜精品福利久久久| 91麻豆精品国产自产在线 | 26uuu另类欧美亚洲曰本| 精品一区二区免费在线观看| 久久久午夜电影| 成人av资源在线| 一区二区国产盗摄色噜噜| 欧美日韩你懂得| 久久国产综合精品| 中文字幕国产一区二区| 日本久久电影网| 日韩高清中文字幕一区| 精品国产一区二区三区不卡 | 欧美日韩一本到| 免费欧美在线视频| 国产精品丝袜黑色高跟| 色94色欧美sute亚洲线路一ni| 亚洲精品大片www| 日韩欧美一二三| av在线一区二区三区| 亚洲成人资源在线| 精品理论电影在线观看| 99精品视频一区二区三区| 一区二区三区成人在线视频| 日韩欧美一区中文| 北岛玲一区二区三区四区| 亚洲一区二区三区激情| 久久午夜国产精品| 91精品福利在线| 国产精品综合网| 亚洲国产成人va在线观看天堂| 欧美成人aa大片| 99热在这里有精品免费| 日本不卡123| 玉米视频成人免费看| 日韩欧美国产三级| 日本电影亚洲天堂一区| 国产美女精品人人做人人爽| 亚洲伦理在线免费看| 日韩免费视频一区二区| 色婷婷av一区二区三区gif | 免费在线观看视频一区| 国产精品国产自产拍高清av王其| 欧美日韩精品欧美日韩精品一| 成人中文字幕合集| 日本强好片久久久久久aaa| 亚洲手机成人高清视频| 日韩免费性生活视频播放| 日本精品视频一区二区三区| 国产一区二区三区视频在线播放| 亚洲午夜久久久久| 亚洲视频免费在线观看| 国产日韩精品一区二区浪潮av| 欧美午夜理伦三级在线观看| 成人精品视频一区二区三区 | 欧洲av在线精品| 国产综合色视频| 美女在线观看视频一区二区| 亚洲欧美另类图片小说| 中文字幕一区免费在线观看| 国产午夜精品美女毛片视频| 日韩精品影音先锋| 91精品国产一区二区| 在线观看国产91| 一本色道久久综合亚洲精品按摩| 成人一区二区三区在线观看| 老司机午夜精品99久久| 蜜臀久久久99精品久久久久久| 亚洲一区在线视频| 一区二区三区高清不卡| 一区二区欧美国产| 亚洲午夜在线视频| 亚洲一区在线观看视频| 亚洲国产综合人成综合网站| 悠悠色在线精品| 亚洲永久精品大片| 亚洲国产精品自拍| 亚洲福利一区二区三区| 亚洲一区二区精品视频| 香蕉成人伊视频在线观看| 亚洲五月六月丁香激情| 午夜精品一区二区三区电影天堂| 亚洲国产日韩综合久久精品| 亚洲第一福利视频在线| 性做久久久久久| 欧美aaaaa成人免费观看视频| 日韩电影在线一区二区| 蜜臀av性久久久久蜜臀aⅴ| 美国十次了思思久久精品导航| 青青草伊人久久| 国产精品一区二区在线观看不卡| 国产69精品久久99不卡| 成人av免费观看| 在线观看日韩电影| 日韩色在线观看| 欧美国产欧美亚州国产日韩mv天天看完整| 欧美国产97人人爽人人喊| 亚洲人成电影网站色mp4| 亚洲成人动漫在线观看| 精品伊人久久久久7777人| 不卡大黄网站免费看| 在线免费一区三区| 日韩欧美成人一区| 中文字幕精品在线不卡| 午夜久久久久久| 国产乱码一区二区三区| av不卡免费电影| 欧美伦理电影网| 国产视频视频一区| 午夜视频久久久久久| 国产成人啪免费观看软件| 在线一区二区视频| 精品第一国产综合精品aⅴ| 国产精品国产三级国产a | 91.com视频| 国产精品视频在线看| 午夜欧美视频在线观看| 成人av在线一区二区| 欧美丰满美乳xxx高潮www| 国产精品免费免费| 日韩不卡一二三区| 91视频观看视频| 国产午夜精品一区二区三区视频 | 蜜桃在线一区二区三区| 波多野结衣中文字幕一区二区三区| 欧美午夜理伦三级在线观看| 国产亚洲精品精华液| 青青草成人在线观看| 91国偷自产一区二区三区观看| 2017欧美狠狠色| 日本不卡一区二区| 在线观看日韩高清av| 国产精品久久网站| 国产一区视频在线看| 欧美丰满少妇xxxxx高潮对白| 1区2区3区精品视频| 国产美女精品一区二区三区| 69堂国产成人免费视频| 亚洲综合视频网| 色综合咪咪久久| 国产精品美女久久福利网站| 九九视频精品免费| 91精品国产综合久久精品麻豆| 亚洲免费av在线| 成人午夜精品在线| 久久精品亚洲精品国产欧美| 人人狠狠综合久久亚洲| 91麻豆精品国产91久久久久| 伊人开心综合网| 91在线国产观看| 亚洲欧洲av另类| 99九九99九九九视频精品| 国产精品美女久久久久久| 成人一级黄色片| 国产亚洲一本大道中文在线| 国内久久婷婷综合| 欧美成人欧美edvon| 国产在线精品不卡| 久久久不卡影院|