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

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

?? mcore.h

?? gcc-you can use this code to learn something about gcc, and inquire further into linux,
?? H
?? 第 1 頁 / 共 4 頁
字號:
   popped when returning from a subroutine 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.   SIZE is the number of bytes of arguments passed on the stack.   On the MCore, the callee does not pop any of its arguments that were passed   on the stack.  */#define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) 0/* 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.  */#define FUNCTION_VALUE(VALTYPE, FUNC)  mcore_function_value (VALTYPE, FUNC)/* Don't default to pcc-struct-return, because gcc is the only compiler, and   we want to retain compatibility with older gcc versions.  */#define DEFAULT_PCC_STRUCT_RETURN 0/* how we are going to return big values *//* * #define RETURN_IN_MEMORY(TYPE) \ *   (TYPE_MODE (TYPE) == BLKmode \ *    || ((TREE_CODE (TYPE) == RECORD_TYPE || TREE_CODE(TYPE) == UNION_TYPE) \ *        && !(TYPE_MODE (TYPE) == SImode \ * 	    || (TYPE_MODE (TYPE) == BLKmode \ * 		&& TYPE_ALIGN (TYPE) == BITS_PER_WORD \ * 		&& int_size_in_bytes (TYPE) == UNITS_PER_WORD)))) */ /* How many registers to use for struct return.  */#define	RETURN_IN_MEMORY(TYPE) (int_size_in_bytes (TYPE) > 2 * UNITS_PER_WORD)/* 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, FIRST_RET_REG)/* 1 if N is a possible register number for a function value.   On the MCore, only r4 can return results.  */#define FUNCTION_VALUE_REGNO_P(REGNO)  ((REGNO) == FIRST_RET_REG)#define	MUST_PASS_IN_STACK(MODE,TYPE)  \  mcore_must_pass_on_stack (MODE, TYPE)/* 1 if N is a possible register number for function argument passing.  */#define FUNCTION_ARG_REGNO_P(REGNO)  \  ((REGNO) >= FIRST_PARM_REG && (REGNO) < (NPARM_REGS + FIRST_PARM_REG))/* 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 MCore, this is a single integer, which is a number of words   of arguments scanned so far (including the invisible argument,   if any, which holds the structure-value-address).   Thus NARGREGS or more means all following args should go on the stack.  */#define CUMULATIVE_ARGS  int#define ROUND_ADVANCE(SIZE)	\  ((SIZE + UNITS_PER_WORD - 1) / UNITS_PER_WORD)/* Round a register number up to a proper boundary for an arg of mode    MODE.       We round to an even reg for things larger than a word.  */#define ROUND_REG(X, MODE) 				\  ((TARGET_8ALIGN 					\   && GET_MODE_UNIT_SIZE ((MODE)) > UNITS_PER_WORD) 	\   ? ((X) + ((X) & 1)) : (X))/* 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 MCore, the offset always starts at 0: the first parm reg is always   the same reg.  */#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, INDIRECT)  \  ((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) = (ROUND_REG ((CUM), (MODE))			   \	   + ((NAMED) * mcore_num_arg_regs (MODE, TYPE)))) \/* Define where to put the arguments to a function.  */#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \  mcore_function_arg (CUM, MODE, TYPE, NAMED)/* A C expression that indicates when an argument must be passed by   reference.  If nonzero for an argument, a copy of that argument is   made in memory and a pointer to the argument is passed instead of   the argument itself.  The pointer is passed in whatever way is   appropriate for passing a pointer to that type.  */#define FUNCTION_ARG_PASS_BY_REFERENCE(CUM, MODE, TYPE, NAMED) \  MUST_PASS_IN_STACK (MODE, TYPE)/* 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.   Any arg that starts in the first NPARM_REGS regs but won't entirely   fit in them needs partial registers on the MCore.  */#define FUNCTION_ARG_PARTIAL_NREGS(CUM, MODE, TYPE, NAMED) \  mcore_function_arg_partial_nregs (CUM, MODE, TYPE, NAMED)/* Perform any needed actions needed for a function that is receiving a   variable number of arguments.  */#define SETUP_INCOMING_VARARGS(ASF, MODE, TYPE, PAS, ST) \  mcore_setup_incoming_varargs (ASF, MODE, TYPE, & PAS)/* Call the function profiler with a given profile label.  */#define FUNCTION_PROFILER(STREAM,LABELNO)		\{							\  fprintf (STREAM, "	trap	1\n");			\  fprintf (STREAM, "	.align	2\n");			\  fprintf (STREAM, "	.long	LP%d\n", (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.  */#define EXIT_IGNORE_STACK 0/* Output assembler code for a block containing the constant parts   of a trampoline, leaving space for the variable parts.   On the MCore, the trapoline looks like:   	lrw	r1,  function     	lrw	r13, area   	jmp	r13   	or	r0, r0    .literals                                                */#define TRAMPOLINE_TEMPLATE(FILE)  		\{						\  fprintf ((FILE), "	.short	0x7102\n");	\  fprintf ((FILE), "	.short	0x7d02\n");	\  fprintf ((FILE), "	.short	0x00cd\n");     \  fprintf ((FILE), "	.short	0x1e00\n");	\  fprintf ((FILE), "	.long	0\n");		\  fprintf ((FILE), "	.long	0\n");		\}/* Length in units of the trampoline for entering a nested function.  */#define TRAMPOLINE_SIZE  12/* Alignment required for a trampoline in bits.  */#define TRAMPOLINE_ALIGNMENT  32/* Emit RTL insns to initialize the variable parts of a trampoline.   FNADDR is an RTX for the address of the function's pure code.   CXT is an RTX for the static chain value for the function.  */#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)  \{									\  emit_move_insn (gen_rtx (MEM, SImode, plus_constant ((TRAMP), 8)),	\		  (CXT));						\  emit_move_insn (gen_rtx (MEM, SImode, plus_constant ((TRAMP), 12)),	\		  (FNADDR));						\}/* 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_BASE_P(REGNO)  \  ((REGNO) < AP_REG || (unsigned) reg_renumber[(REGNO)] < AP_REG)#define REGNO_OK_FOR_INDEX_P(REGNO)   0/* Maximum number of registers that can appear in a valid memory    address.  */#define MAX_REGS_PER_ADDRESS 1/* Recognize any constant value that is a valid address.  */#define CONSTANT_ADDRESS_P(X) 	 (GET_CODE (X) == LABEL_REF)/* Nonzero if the constant value X is a legitimate general operand.   It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE.   On the MCore, allow anything but a double.  */#define LEGITIMATE_CONSTANT_P(X) (GET_CODE(X) != CONST_DOUBLE)#define LEGITIMIZE_ADDRESS(X, OLDX, MODE, WIN)/* 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.  */#ifndef REG_OK_STRICT/* Nonzero if X is a hard reg that can be used as a base reg   or if it is a pseudo reg.  */#define REG_OK_FOR_BASE_P(X) \    	(REGNO (X) <= 16 || REGNO (X) >= FIRST_PSEUDO_REGISTER)/* 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)	0#else/* 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))/* Nonzero if X is a hard reg that can be used as an index.  */#define REG_OK_FOR_INDEX_P(X)	0#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.  */#define BASE_REGISTER_RTX_P(X)  \  (GET_CODE (X) == REG && REG_OK_FOR_BASE_P (X))#define INDEX_REGISTER_RTX_P(X)  \  (GET_CODE (X) == REG && REG_OK_FOR_INDEX_P (X))/* Jump to LABEL if X is a valid address RTX.  This must also take   REG_OK_STRICT into account when deciding about valid registers, but it uses   the above macros so we are in luck.      Allow  REG	  REG+disp    A legitimate index for a QI is 0..15, for HI is 0..30, for SI is 0..60,   and for DI is 0..56 because we use two SI loads, etc.  */#define GO_IF_LEGITIMATE_INDEX(MODE, REGNO, OP, LABEL)			\  do									\    {									\      if (GET_CODE (OP) == CONST_INT) 					\        {								\	  if (GET_MODE_SIZE (MODE) >= 4					\	      && (((unsigned)INTVAL (OP)) % 4) == 0			\	      &&  ((unsigned)INTVAL (OP)) <= 64 - GET_MODE_SIZE (MODE))	\	    goto LABEL;							\	  if (GET_MODE_SIZE (MODE) == 2 				\	      && (((unsigned)INTVAL (OP)) % 2) == 0			\	      &&  ((unsigned)INTVAL (OP)) <= 30)			\	    goto LABEL;							\	  if (GET_MODE_SIZE (MODE) == 1 				\	      && ((unsigned)INTVAL (OP)) <= 15)				\	    goto LABEL;							\        }								\    }									\  while (0)#define GO_IF_LEGITIMATE_ADDRESS(MODE, X, LABEL)                  \{ 								  \  if (BASE_REGISTER_RTX_P (X))					  \    goto LABEL;							  \  else if (GET_CODE (X) == PLUS || GET_CODE (X) == LO_SUM) 	  \    {								  \      rtx xop0 = XEXP (X,0);					  \      rtx xop1 = XEXP (X,1);					  \      if (BASE_REGISTER_RTX_P (xop0))				  \	GO_IF_LEGITIMATE_INDEX (MODE, REGNO (xop0), xop1, LABEL); \      if (BASE_REGISTER_RTX_P (xop1))				  \	GO_IF_LEGITIMATE_INDEX (MODE, REGNO (xop1), xop0, LABEL); \    }								  \}								   								   /* Go to LABEL if ADDR (a legitimate address expression)   has an effect that depends on the machine mode it is used for.  */#define GO_IF_MODE_DEPENDENT_ADDRESS(ADDR,LABEL)  \{									\  if (   GET_CODE (ADDR) == PRE_DEC || GET_CODE (ADDR) == POST_DEC	\      || GET_CODE (ADDR) == PRE_INC || GET_CODE (ADDR) == POST_INC)	\    goto LABEL;								\}/* Specify the machine mode that this machine uses   for the index in the tablejump instruction.  */#define CASE_VECTOR_MODE SImode/* Define this if the tablejump instruction expects the table   to contain offsets from the address of the table.   Do not define this if the table should contain absolute addresses.  *//* #define CASE_VECTOR_PC_RELATIVE *//* 'char' is signed by default.  */#define DEFAULT_SIGNED_CHAR  0/* The type of size_t unsigned int.  */#define SIZE_TYPE "unsigned int"/* Don't cse the address of the function being compiled.  */#define NO_RECURSIVE_FUNCTION_CSE 1/* Max number of bytes we can move from memory to memory   in one reasonably fast instruction.  */#define MOVE_MAX 4/* Define if operations between registers always perform the operation   on the full register even if a narrower mode is specified.  */#define WORD_REGISTER_OPERATIONS/* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD   will either zero-extend or sign-extend.  The value of this macro should   be the code that says which one of the two operations is implicitly   done, NIL if none.  */#define LOAD_EXTEND_OP(MODE) ZERO_EXTEND/* Nonzero if access to memory by bytes is slow and undesirable.  */#define SLOW_BYTE_ACCESS TARGET_SLOW_BYTES/* We assume that the store-condition-codes instructions store 0 for false   and some other value for true.  This is the value stored for true.  */#define STORE_FLAG_VALUE 1/* Immediate shift counts are truncated by the output routines (or was it   the assembler?).  Shift counts in a register are truncated by ARM.  Note   that the native compiler puts too large (> 32) immediate shift counts   into a register and shifts by the register, letting the ARM decide what   to do instead of doing that itself.  */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美经典三级视频一区二区三区| 日韩成人av影视| 成人免费视频网站在线观看| 亚洲国产高清在线观看视频| gogogo免费视频观看亚洲一| 中文字幕综合网| 亚洲精品视频自拍| 欧美色综合网站| 蜜桃av一区二区| 国产亚洲精品福利| 91蝌蚪porny成人天涯| 亚洲高清视频在线| 日韩午夜av一区| 粉嫩欧美一区二区三区高清影视| 中文字幕在线观看不卡视频| 欧美日韩一区二区三区不卡| 免费观看在线色综合| 久久蜜臀中文字幕| 99re热这里只有精品视频| 亚洲国产日韩精品| 欧美成人在线直播| zzijzzij亚洲日本少妇熟睡| 亚洲不卡在线观看| 久久久久9999亚洲精品| 色悠悠亚洲一区二区| 日韩高清不卡在线| 中文字幕成人av| 欧美久久久久久久久| 激情久久五月天| 亚洲免费电影在线| 精品国产1区二区| 欧美在线色视频| 国产传媒日韩欧美成人| 亚洲aaa精品| 国产精品久久久久一区| 日韩视频一区二区| 色婷婷激情综合| 国产精品一区二区黑丝| 亚洲自拍偷拍av| 国产精品美女久久久久久久久久久| 欧美在线不卡视频| 成人晚上爱看视频| 久久99国产精品久久99| 亚洲午夜精品在线| 国产一区二区伦理片| 亚洲午夜在线视频| 中文字幕一区二区5566日韩| 欧美大胆一级视频| 欧美日本免费一区二区三区| 成人av在线资源网| 国产一区二区三区综合| 午夜不卡av免费| 亚洲欧美一区二区三区极速播放| 欧美精品一区二区在线观看| 欧美日韩国产影片| 在线观看欧美日本| 99精品视频一区二区| 国产成人在线色| 久久精品99国产精品| 偷偷要91色婷婷| 一区二区免费视频| 综合自拍亚洲综合图不卡区| 日本一区二区免费在线观看视频| 欧美电视剧在线看免费| 337p亚洲精品色噜噜| 欧美系列在线观看| 色女孩综合影院| 91小视频免费观看| 91性感美女视频| 91一区二区在线| 99久久精品国产一区| 成人综合在线视频| 国产aⅴ综合色| 国产一区二区按摩在线观看| 国内成+人亚洲+欧美+综合在线 | 激情另类小说区图片区视频区| 性久久久久久久| 午夜成人在线视频| 午夜视频在线观看一区| 午夜精品视频在线观看| 石原莉奈在线亚洲三区| 亚洲mv在线观看| 日韩高清不卡在线| 久久爱www久久做| 国产一区二区三区免费播放| 精品一区二区精品| 国产精品18久久久久久久久 | 国产久卡久卡久卡久卡视频精品| 久久99深爱久久99精品| 韩国女主播成人在线观看| 久久精品国产成人一区二区三区| 秋霞电影网一区二区| 久88久久88久久久| 国产精品亚洲视频| 91麻豆免费看| 欧美美女直播网站| 欧美xxx久久| 日本一区二区三区电影| 成人欧美一区二区三区小说| 一区二区三区四区国产精品| 色噜噜夜夜夜综合网| 欧美日韩一区二区三区视频| 欧美va日韩va| 国产精品色在线| 一区二区三区欧美日韩| 日韩精品亚洲一区二区三区免费| 久久66热偷产精品| 99精品视频在线观看| 欧美精品久久99| 国产午夜精品一区二区| 亚洲日本韩国一区| 久久99精品久久久久久动态图| 国产精品一级在线| 色综合天天综合网国产成人综合天| 精品视频资源站| 国产偷国产偷精品高清尤物 | 日本美女一区二区三区| 国产69精品久久777的优势| 色婷婷久久久综合中文字幕 | 亚洲18女电影在线观看| 激情av综合网| 91激情五月电影| 精品福利在线导航| 亚洲电影在线播放| 高清不卡一二三区| 91精品国产aⅴ一区二区| 国产精品人成在线观看免费| 丝袜a∨在线一区二区三区不卡| 国产一区二区三区蝌蚪| 欧美久久久久中文字幕| **性色生活片久久毛片| 久久se这里有精品| 欧美三级中文字幕| 亚洲国产精品精华液2区45| 男女激情视频一区| 日本韩国欧美一区二区三区| 久久精品夜色噜噜亚洲a∨| 亚洲国产精品一区二区www在线| 粉嫩av一区二区三区| 日韩精品一区二区三区蜜臀| 一区二区日韩av| 成人性生交大片| 久久久噜噜噜久噜久久综合| 天堂av在线一区| 91黄色激情网站| 一色屋精品亚洲香蕉网站| 国产一区二区三区黄视频| 91精品国产91久久久久久一区二区 | 日韩国产欧美一区二区三区| 99在线精品免费| 国产亚洲综合在线| 久久草av在线| 亚洲自拍欧美精品| 色偷偷久久人人79超碰人人澡| 国产欧美日韩卡一| 国产尤物一区二区| 欧美刺激午夜性久久久久久久| 天堂在线一区二区| 欧美日韩一区二区在线观看| 亚洲特级片在线| 色综合久久99| 国产精品久久久久永久免费观看 | 久久综合999| 国模少妇一区二区三区| 精品福利一区二区三区 | 亚洲视频免费在线观看| 成人黄色av电影| 亚洲欧美在线视频观看| 91麻豆免费看片| 亚洲国产综合91精品麻豆| 欧美午夜精品一区二区三区| 亚洲图片欧美色图| 欧美日韩极品在线观看一区| 亚洲v精品v日韩v欧美v专区| 欧美色图在线观看| 日韩福利视频导航| 日韩欧美资源站| 国产一二三精品| 国产精品不卡一区二区三区| 99精品1区2区| 午夜精品久久久久久不卡8050| 欧美日韩在线直播| 美国毛片一区二区三区| 26uuu国产日韩综合| 丰满放荡岳乱妇91ww| 综合久久一区二区三区| 欧美综合亚洲图片综合区| 日日摸夜夜添夜夜添亚洲女人| 日韩精品一区二区三区在线 | 91麻豆文化传媒在线观看| 亚洲超碰精品一区二区| 欧美一区二区不卡视频| 国产成人亚洲综合a∨猫咪 | 亚洲一区二区在线免费看| 欧美丰满美乳xxx高潮www| 国内精品写真在线观看| 亚洲三级视频在线观看| 在线不卡a资源高清| 国产精品 欧美精品| 亚洲愉拍自拍另类高清精品|