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

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

?? tm-pyr.h

?? 這是完整的gcc源代碼
?? H
?? 第 1 頁 / 共 4 頁
字號:
/* 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.  */#define REGNO_REG_CLASS(REGNO) ALL_REGS/* The class value for index registers, and the one for base regs.  */#define BASE_REG_CLASS ALL_REGS#define INDEX_REG_CLASS ALL_REGS/* Get reg_class from a letter such as appears in the machine description.  */#define REG_CLASS_FROM_LETTER(C) NO_REGS/* 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.  */#define PREFERRED_RELOAD_CLASS(X,CLASS)  (CLASS)/* Return the maximum number of consecutive registers   needed to represent mode MODE in a register of class CLASS.  *//* On the pyramid, this is always the size of MODE in words,   since all registers are the same size.  */#define CLASS_MAX_NREGS(CLASS, MODE)	\ ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)/* 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 Pyramid, 'I' can be used for the 6-bit signed integers   --> (-32 to 31) allowed as immediate short operands in many   --> instructions. 'J' cane be used for any value that doesn't fit   --> in 6 bits.  */#define CONST_OK_FOR_LETTER_P(VALUE, C)  \  ((C) == 'I' ? (VALUE) >= -32 && (VALUE) < 32 : \   (C) == 'J' ? (VALUE) < -32 || (VALUE) >= 32 : \   (C) == 'K' ? (VALUE) == 0xff || (VALUE) == 0xffff : 0)/* Similar, but for floating constants, and defining letters G and H.   Here VALUE is the CONST_DOUBLE rtx itself.  */#define CONST_DOUBLE_OK_FOR_LETTER_P(VALUE, C) 1/*** 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.  *//* FIXME: this used to work when defined as 0.  But that makes gnu   stdargs clobber the first arg.  What gives?? */#define STARTING_FRAME_OFFSET 0/* Offset of first parameter from the argument pointer register value.  */#define FIRST_PARM_OFFSET(FNDECL) 0/* 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.   The Pyramid OSx Porting Guide says we are never to do this;   using RETD in this way violates the Pyramid calling convention.   We may nevertheless provide this as an option.   */#define RETURN_POPS_ARGS(FUNTYPE)   \  (TARGET_RETD && 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.  *//* --> Pyramid has register windows.   --> The caller sees the return value is in TR0(/TR1) regardless of   --> its type.   */#define FUNCTION_VALUE(VALTYPE, FUNC)  \  gen_rtx (REG, TYPE_MODE (VALTYPE), PYR_TREG(0))/* --> but the callee has to leave it in PR0(/PR1) */#define FUNCTION_OUTGOING_VALUE(VALTYPE, FUNC)	\  gen_rtx (REG, TYPE_MODE (VALTYPE), PYR_PREG(0))/* Define how to find the value returned by a library function   assuming the value has mode MODE.  *//* --> On Pyramid the return value is in TR0/TR1 regardless.  */#define LIBCALL_VALUE(MODE)  gen_rtx (REG, MODE, PYR_TREG(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 a function value   as seen by the caller.  On the Pyramid, TR0 is the only register thus used.   */#define FUNCTION_VALUE_REGNO_P(N) ((N) == PYR_TREG(0))/* 1 if N is a possible register number for function argument passing.   On the Pyramid, the first twelve temporary registers are available.  *//* FIXME FIXME FIXME   it's not clear whether this macro should be defined from the point   of view of the caller or the callee.  Since it's never actually used   in GNU CC, the point is somewhat moot :-).   This definition is consistent with register usage in the md's for   other register-window architectures (sparc and spur). */#define FUNCTION_ARG_REGNO_P(N) ((PYR_TREG(0) <= (N)) && ((N) <= PYR_TREG(11)))/*** Parameter passing: FUNCTION_ARG and FUNCTION_INCOMING_ARG ***//* 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 Pyramids, each parameter is passed either completely on the stack   or completely in registers.  No parameter larger than a double may   be passed in a register.  Also, no struct or union may be passed in   a register, even if it would fit.    So parameters are not necessarily passed "consecutively".    Thus we need a vector data type: one element to record how many    parameters have been passed in registers and on the stack,    respectively.    ((These constraints seem like a gross waste of registers. But if we    ignore the constraint about structs & unions, we won`t be able to    freely mix gcc-compiled code and pyr cc-compiled code.  It looks    like better argument passing conventions, and a machine-dependent    flag to enable them, might be a win.))   */#define CUMULATIVE_ARGS int/* Define the number of registers that can hold paramters.   This macro is used only in other macro definitions below.   */#define NPARM_REGS 12/* Decide whether or not a parameter can be put in a register.   (We may still have problems with libcalls. GCC doesn't seem   to know about anything more than the machine mode.  I trust   structures are never passed to a libcall...   If compiling with -mgnu-stdarg, this definition should make   functions using the gcc-supplied stdarg, and calls to such   functions (declared with an arglist ending in"..."),  work.   But such fns won't be able to call pyr cc-compiled   varargs fns (eg, printf(), _doprnt.)   If compiling with -mnognu-stdarg, this definition should make   calls to pyr cc-compiled functions work.  Functions using   the gcc-supplied stdarg will be utterly broken.   There will be no better solution until RMS can be persuaded that   one is needed.   This macro is used only in other macro definitions below.   (well, it may be used in out-pyr.c, because the damn pyramid cc   can't handle the macro definition of PARAM_SAFE_FOR_REG_P !   */#define INNER_PARAM_SAFE_HELPER(TYPE) \ ((TARGET_GNU_STDARG ? (! TREE_ADDRESSABLE ((tree)TYPE)): 1)	\   && (TREE_CODE ((tree)TYPE) != RECORD_TYPE)			\   && (TREE_CODE ((tree)TYPE) != UNION_TYPE))#ifdef __GNUC__#define PARAM_SAFE_HELPER(TYPE) \  INNER_PARAM_SAFE_HELPER((TYPE))#elseextern int inner_param_safe_helper();#define PARAM_SAFE_HELPER(TYPE) \  inner_param_safe_helper((tree)(TYPE))#endif/* Be careful with the expression (long) (TYPE) == 0.   Writing it in more obvious/correct forms makes the Pyr cc   dump core!   */#define PARAM_SAFE_FOR_REG_P(MODE, TYPE, NAMED) \  (((MODE) != BLKmode)				\   && ((TARGET_GNU_STDARG) ? (NAMED) : 1)	\   && ((((long)(TYPE))==0) || PARAM_SAFE_HELPER((TYPE))))/* 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.   */#define INIT_CUMULATIVE_ARGS(CUM,FNTYPE) \  ((CUM) = (FNTYPE && !flag_pcc_struct_return && aggregate_value_p (FNTYPE)))/* Determine where to put an argument 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). */#define FUNCTION_ARG_HELPER(CUM, MODE, TYPE, NAMED) \(PARAM_SAFE_FOR_REG_P(MODE,TYPE,NAMED)				\ ? (NPARM_REGS >= ((CUM)					\		   + ((MODE) == BLKmode				\		      ? (int_size_in_bytes (TYPE) + 3) / 4	\		      : (GET_MODE_SIZE (MODE) + 3) / 4))	\    ? gen_rtx (REG, (MODE), PYR_TREG(CUM))			\    : 0)							\ : 0)#ifdef __GNUC__#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \	FUNCTION_ARG_HELPER(CUM, MODE, TYPE, NAMED)#else/*****************  Avoid bug in Pyramid OSx compiler... ******************/#define FUNCTION_ARG  (rtx) pyr_function_argextern void* pyr_function_arg ();#endif/* Define where a function finds its arguments.   This is different from FUNCTION_ARG because of register windows.  */#define FUNCTION_INCOMING_ARG(CUM, MODE, TYPE, NAMED) \(PARAM_SAFE_FOR_REG_P(MODE,TYPE,NAMED)			\ ? (NPARM_REGS >= ((CUM)				\	   + ((MODE) == BLKmode				\	      ? (int_size_in_bytes (TYPE) + 3) / 4	\	      : (GET_MODE_SIZE (MODE) + 3) / 4))	\    ? gen_rtx (REG, (MODE), PYR_PREG(CUM))		\    : 0)						\ : 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)	+=  (PARAM_SAFE_FOR_REG_P(MODE,TYPE,NAMED)	\	     ? ((MODE) != BLKmode			\		? (GET_MODE_SIZE (MODE) + 3) / 4	\		: (int_size_in_bytes (TYPE) + 3) / 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.  */#if FRAME_POINTER_REQUIRED/* We always have frame pointers *//* Don't set up a frame pointer if it's not referenced.  */#define FUNCTION_PROLOGUE(FILE, SIZE) \{									\  int _size = (SIZE) + current_function_pretend_args_size;		\  if (_size + current_function_args_size != 0				\      || current_function_calls_alloca)					\    {									\      fprintf (FILE, "\tadsf $%d\n", _size);				\      if (current_function_pretend_args_size > 0)			\      fprintf (FILE, "\tsubw $%d,cfp\n",				\	  current_function_pretend_args_size);				\    }									\}#else /* !FRAME_POINTER_REQUIRED *//* Don't set up a frame pointer if `frame_pointer_needed' tells us   there is no need.  Also, don't set up a frame pointer if it's not   referenced.  *//* The definition used to be broken.  Write a new one.  */#endif /* !FRAME_POINTER_REQUIRED *//* Output assembler code to FILE to increment profiler label # LABELNO   for profiling a function entry.  */#define FUNCTION_PROFILER(FILE, LABELNO)  \   fprintf (FILE, "\tmova LP%d,tr0\n\tcall 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.   Don't know if this works on Pyrs. */#if 0 /* don't do basic_block profiling yet */#define FUNCTION_BLOCK_PROFILER(FILE, LABELNO)  \  fprintf (FILE, \           "\tmtstw LPBX0,tr0\n\tbne LPI%d\n\tmova LP%d,TR0\n\tcall __bb_init_func\nLPI%d:\n", \           LABELNO, LABELNO);/* Output assembler code to increment the count associated with   the basic block number BLOCKNO.  Not sure how to do this on pyrs. */#define BLOCK_PROFILER(FILE, BLOCKNO)  \    fprintf (FILE, "\taddw", 4 * BLOCKNO)#endif /* don't do basic_block profiling yet *//* When returning from a function, the stack pointer does not matter   (as long as there is a frame pointer).  *//* This should return non-zero when we really set up a frame pointer.   Otherwise, GCC is directed to preserve sp by returning zero.  */extern int current_function_pretend_args_size;extern int current_function_args_size;extern int current_function_calls_alloca;#define EXIT_IGNORE_STACK \  (get_frame_size () + current_function_pretend_args_size		\   + current_function_args_size != 0					\   || current_function_calls_alloca)					\/* 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.  */

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品视频免费观看| 欧美成人一级视频| fc2成人免费人成在线观看播放| 日韩精品国产精品| 日韩精品1区2区3区| 青娱乐精品视频| 精品一区二区三区免费观看| 国产精品一区二区视频| 成人毛片视频在线观看| av电影一区二区| 欧美性色黄大片手机版| 欧美日韩电影在线播放| 精品日韩欧美一区二区| 日本一区二区三区在线不卡| 国产精品麻豆网站| 亚洲一区在线视频观看| 全部av―极品视觉盛宴亚洲| 国产成人久久精品77777最新版本| 国产精品123| 91在线视频18| 欧美一二三区精品| 中文字幕av资源一区| 亚洲欧美日韩一区| 日本不卡的三区四区五区| 久久精品久久99精品久久| 国产精品性做久久久久久| 91理论电影在线观看| 欧美性淫爽ww久久久久无| 日韩免费电影网站| 国产精品亲子乱子伦xxxx裸| 亚洲国产视频在线| 国产一区二区免费视频| 欧美影院一区二区三区| 久久久久久久网| 亚洲一区二区三区激情| 国产高清亚洲一区| 欧美日韩国产综合视频在线观看| 久久久午夜精品| 午夜欧美2019年伦理| 国产酒店精品激情| 在线不卡免费欧美| 亚洲欧美另类小说视频| 国产激情91久久精品导航 | 久久亚洲欧美国产精品乐播| 日韩美女精品在线| 国产在线看一区| 欧美视频在线一区| 国产精品久久久久久久久晋中| 日韩国产成人精品| 欧美视频在线不卡| 亚洲男人的天堂在线观看| 国产在线乱码一区二区三区| 8x福利精品第一导航| 一区二区三区产品免费精品久久75| 久久66热偷产精品| 欧美一区二区三级| 视频在线观看一区| 欧美三级欧美一级| 一区二区三区成人在线视频| 91在线免费看| 亚洲欧美视频在线观看| 波多野结衣中文字幕一区二区三区 | 91久久香蕉国产日韩欧美9色| 久久综合国产精品| 久久国产生活片100| 欧美一区2区视频在线观看| 亚洲国产精品久久久久婷婷884| 成av人片一区二区| 国产精品久久久久aaaa| 国产成人亚洲综合色影视| 337p日本欧洲亚洲大胆精品| 奇米影视7777精品一区二区| 欧美老女人在线| 奇米一区二区三区av| 日韩欧美国产三级电影视频| 婷婷综合在线观看| 日韩午夜在线影院| 国内精品国产成人| 日本一二三不卡| av一二三不卡影片| 亚洲男同1069视频| 色综合天天天天做夜夜夜夜做| 亚洲国产精品激情在线观看| 国产尤物一区二区| 日本一区二区三区国色天香 | 久久99久久99| 久久综合久久久久88| 经典三级一区二区| 中文字幕不卡在线| 在线精品视频免费观看| 亚洲高清免费一级二级三级| 欧美一区二区三区人| 日本伊人色综合网| 欧美激情资源网| 欧洲精品中文字幕| 裸体在线国模精品偷拍| 国产日韩综合av| 欧美影院一区二区| 韩国一区二区在线观看| **网站欧美大片在线观看| 欧美美女一区二区| 国产91综合网| 亚洲大片免费看| 国产片一区二区三区| 91国产免费观看| 国内外成人在线| 一区二区三区色| 久久久九九九九| 欧美久久久久久蜜桃| 国产成人在线视频免费播放| 一区二区日韩电影| 国产三级一区二区三区| 欧美性猛片xxxx免费看久爱| 国产成人日日夜夜| 亚洲v中文字幕| 国产精品乱人伦一区二区| 91精品国产综合久久婷婷香蕉 | 91高清视频免费看| 久久99国产精品麻豆| 一区二区三区免费观看| 国产日韩欧美综合在线| 91精品免费观看| 色狠狠一区二区三区香蕉| 国产乱一区二区| 青娱乐精品视频| 亚洲无人区一区| 成人欧美一区二区三区白人| 久久久久国产精品麻豆| 7777女厕盗摄久久久| 日本道精品一区二区三区| 成人在线视频一区| 国产精品亚洲第一区在线暖暖韩国| 舔着乳尖日韩一区| 一区二区三国产精华液| 国产精品二区一区二区aⅴ污介绍| 精品日韩在线观看| 日韩午夜精品视频| 日韩欧美一卡二卡| 欧美一级二级三级蜜桃| 4hu四虎永久在线影院成人| 在线观看视频一区二区欧美日韩| 成人av集中营| av在线播放成人| 欧美三级电影一区| av网站一区二区三区| 成人综合激情网| 成人爱爱电影网址| 成人蜜臀av电影| 99久久99久久精品国产片果冻| 成人综合婷婷国产精品久久免费| 国产自产v一区二区三区c| 精品影视av免费| 国产美女av一区二区三区| 国产一区二区三区久久久| 国产精品一区二区免费不卡 | 国产精品国产三级国产三级人妇| 国产三级三级三级精品8ⅰ区| 国产拍揄自揄精品视频麻豆| 欧美极品少妇xxxxⅹ高跟鞋| 国产欧美1区2区3区| 综合久久久久久| 亚洲欧洲日韩av| 亚洲高清免费观看 | 久久婷婷国产综合国色天香| 日韩久久久精品| 国产日韩精品一区| 国产精品盗摄一区二区三区| 亚洲视频一区二区免费在线观看 | 欧美精品在欧美一区二区少妇| 在线成人小视频| 亚洲精品一区二区三区福利| 欧美激情一区二区三区全黄| 国产精品久久综合| 亚洲一区二区高清| 欧美aa在线视频| 成人在线视频一区| 欧美日韩一区二区三区高清 | 亚洲视频免费在线| 午夜激情综合网| 国产精品亚洲午夜一区二区三区| 91片黄在线观看| 91精品国产综合久久精品图片| 久久久91精品国产一区二区三区| 日韩美女视频一区二区| 久久精品噜噜噜成人88aⅴ| 成人黄色综合网站| 7799精品视频| 亚洲欧洲精品一区二区三区| 日本午夜精品一区二区三区电影| 国产福利一区二区| 欧美一区二区三区免费在线看| 亚洲国产精品黑人久久久| 午夜精品福利视频网站| 成人免费毛片a| 日韩视频在线你懂得| 亚洲精品乱码久久久久久黑人| 久久成人免费网站| 欧美日韩亚洲综合一区二区三区| 国产精品久久久久一区二区三区| 日本美女视频一区二区|