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

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

?? mcore.h

?? gcc3.2.1源代碼
?? H
?? 第 1 頁 / 共 4 頁
字號:
   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.  */#define SHIFT_COUNT_TRUNCATED 1/* All integers have the same format so truncation is easy.  */#define TRULY_NOOP_TRUNCATION(OUTPREC,INPREC)  1/* Define this if addresses of constant functions   shouldn't be put through pseudo regs where they can be cse'd.   Desirable on machines where ordinary constants are expensive   but a CALL with constant address is cheap.  *//* why is this defined??? -- dac */#define NO_FUNCTION_CSE 1/* Chars and shorts should be passed as ints.  */#define PROMOTE_PROTOTYPES 1

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人精品影视| 国产酒店精品激情| 国产一区二区调教| 欧美综合天天夜夜久久| 精品区一区二区| 亚洲成人在线观看视频| 成人黄色一级视频| 久久新电视剧免费观看| 美国av一区二区| 欧美亚洲国产怡红院影院| 欧美国产日韩亚洲一区| 男人的天堂久久精品| 欧美日韩日本视频| 亚洲综合自拍偷拍| 97se亚洲国产综合自在线| 国产视频一区二区在线观看| 麻豆精品久久精品色综合| 欧美日韩专区在线| 亚洲综合区在线| 色综合中文综合网| 亚洲综合一二三区| 欧美精选在线播放| 色综合久久88色综合天天6| 欧美剧情片在线观看| 国产乱国产乱300精品| 伊人色综合久久天天| 亚洲影院免费观看| 亚洲精品在线网站| 在线不卡的av| 在线观看www91| 国产精品一区二区久激情瑜伽| 亚洲电影视频在线| 蜜桃一区二区三区四区| 欧美男人的天堂一二区| 亚洲狠狠丁香婷婷综合久久久| 不卡av在线网| 亚洲视频一区二区在线观看| 日本韩国欧美在线| 亚洲女爱视频在线| 欧美喷潮久久久xxxxx| 日韩国产精品久久久| 日韩免费电影网站| 粉嫩一区二区三区在线看| 国产精品免费视频一区| aaa亚洲精品| 亚洲午夜免费视频| 日韩欧美美女一区二区三区| 国产馆精品极品| 亚洲私人黄色宅男| 欧美高清视频不卡网| 紧缚奴在线一区二区三区| 国产亚洲午夜高清国产拍精品| 国产69精品一区二区亚洲孕妇| 日韩一区在线看| 欧美日韩免费不卡视频一区二区三区| 日本欧美在线观看| 久久综合久久鬼色| 91麻豆免费观看| 另类中文字幕网| 中文字幕中文乱码欧美一区二区| 91久久精品国产91性色tv| 秋霞电影一区二区| 国产精品久线在线观看| 91精品久久久久久久99蜜桃| 国产乱码精品一区二区三区五月婷| 中文字幕五月欧美| 91精品国产品国语在线不卡| 国产xxx精品视频大全| 亚洲成人自拍一区| 国产精品视频麻豆| 欧美精品 日韩| 99精品欧美一区二区蜜桃免费 | 免费观看久久久4p| 久久久久国产免费免费| 欧美三区免费完整视频在线观看| 韩国一区二区在线观看| 亚洲综合视频在线| 国产校园另类小说区| 欧美日韩精品一区二区| 成人一区二区在线观看| 日本欧美肥老太交大片| 亚洲精品乱码久久久久久黑人| 精品欧美一区二区三区精品久久 | 国产在线精品一区二区三区不卡 | 精品国产一区二区国模嫣然| 99视频精品全部免费在线| 毛片av一区二区| 一区二区三区在线观看动漫| 国产日韩av一区| 日韩欧美视频在线| 欧美巨大另类极品videosbest| 成人免费av资源| 精品一区二区在线视频| 日本中文在线一区| 午夜视频一区二区三区| 亚洲欧美日韩国产一区二区三区| 亚洲精品一线二线三线无人区| 精品视频全国免费看| 不卡av在线免费观看| 成人美女在线视频| 大陆成人av片| 成人中文字幕合集| 国产成人免费视频精品含羞草妖精| 视频一区在线播放| 五月综合激情网| 三级在线观看一区二区| 亚洲成人激情综合网| 亚洲一区二区三区四区五区中文| 亚洲人成在线播放网站岛国| 国产精品久久久久9999吃药| 久久精品人人爽人人爽| 国产欧美日本一区视频| 国产精品久久久一本精品| 国产无遮挡一区二区三区毛片日本| 久久蜜臀精品av| 欧美高清一级片在线观看| 国产精品久久久久天堂| 国产精品国产精品国产专区不片| 中文字幕av一区二区三区高| 国产精品水嫩水嫩| 亚洲精品写真福利| 亚洲bt欧美bt精品| 亚洲h动漫在线| 美女精品自拍一二三四| 国内成人免费视频| 高清国产一区二区三区| aaa亚洲精品| 欧美裸体一区二区三区| 欧美www视频| 国产清纯在线一区二区www| 国产精品国产自产拍高清av| 亚洲人成人一区二区在线观看| 亚洲欧美国产77777| 亚洲444eee在线观看| 久久se这里有精品| 床上的激情91.| 欧美主播一区二区三区| 精品国产人成亚洲区| 国产精品九色蝌蚪自拍| 一区二区三区高清在线| 日韩av中文在线观看| 成人一道本在线| 在线观看亚洲a| 2023国产精品自拍| 亚洲欧美偷拍另类a∨色屁股| 亚洲成人第一页| 国产成人精品aa毛片| 欧美体内she精高潮| 国产精品进线69影院| av毛片久久久久**hd| 3751色影院一区二区三区| 久久精品一区二区三区不卡牛牛| 亚洲欧美乱综合| 国内精品免费**视频| 欧美亚洲动漫精品| 久久精品人人做人人爽人人| 亚洲综合清纯丝袜自拍| 国产精品一区二区三区网站| 欧美天天综合网| 中文字幕一区二区三区四区| 美女任你摸久久| 在线一区二区三区四区| 欧美激情一区在线| 美女在线一区二区| 色av一区二区| 欧美国产精品一区二区| 蜜桃视频在线观看一区二区| 色哟哟一区二区在线观看 | 国内一区二区视频| 欧美日韩精品免费| 亚洲免费观看高清完整版在线观看熊| 激情欧美日韩一区二区| 欧美性猛交xxxxxxxx| 中文字幕亚洲不卡| 国产精品77777| 日韩欧美黄色影院| 视频一区在线播放| 欧美日韩一区二区电影| 亚洲精品成人悠悠色影视| 国产麻豆91精品| 日韩午夜在线播放| 午夜激情一区二区三区| 色综合av在线| 亚洲男人的天堂网| av高清不卡在线| 中文成人av在线| av电影天堂一区二区在线 | 精品国产91亚洲一区二区三区婷婷| 亚洲五码中文字幕| 色狠狠综合天天综合综合| 国产精品国产馆在线真实露脸| 国产精品一二一区| 久久精品一区二区三区不卡牛牛 | 91亚洲国产成人精品一区二三 | 色视频成人在线观看免| 亚洲视频在线一区二区| 色欧美88888久久久久久影院| 亚洲色图在线播放| 日本道精品一区二区三区| 一区二区三区免费在线观看|