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

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

?? mcore.h

?? gcc-you can use this code to learn something about gcc, and inquire further into linux,
?? H
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
   even those that are not normally considered general registers.   MCore has 16 integer registers and 2 control registers + the arg   pointer.  */#define FIRST_PSEUDO_REGISTER 20#define R1_REG  1	/* where literals are forced */#define LK_REG	15	/* overloaded on general register */#define AP_REG  16	/* fake arg pointer register *//* RBE: mcore.md depends on CC_REG being set to 17 */#define CC_REG	17	/* can't name it C_REG */#define FP_REG  18	/* fake frame pointer register *//* Specify the registers used for certain standard purposes.   The values of these macros are register numbers.  */#undef PC_REGNUM /* Define this if the program counter is overloaded on a register.  */#define STACK_POINTER_REGNUM 0 /* Register to use for pushing function arguments.  */#define FRAME_POINTER_REGNUM 8 /* When we need FP, use r8.  *//* The assembler's names for the registers.  RFP need not always be used as   the Real framepointer; it can also be used as a normal general register.   Note that the name `fp' is horribly misleading since `fp' is in fact only   the argument-and-return-context pointer.  */#define REGISTER_NAMES  				\{				                   	\  "sp", "r1", "r2",  "r3",  "r4",  "r5",  "r6",  "r7", 	\  "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",	\  "apvirtual",  "c", "fpvirtual", "x19" \}/* 1 for registers that have pervasive standard uses   and are not available for the register allocator.  */#define FIXED_REGISTERS  \ /*  r0  r1  r2  r3  r4  r5  r6  r7  r8  r9  r10 r11 r12 r13 r14 r15 ap  c  fp x19 */ \   { 1,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  1,  1, 1, 1}/* 1 for registers not available across function calls.   These must include the FIXED_REGISTERS and also any   registers that can be used without being saved.   The latter must include the registers where values are returned   and the register where structure-value addresses are passed.   Aside from that, you can include as many other registers as you like.  *//* RBE: r15 {link register} not available across calls, *  But we don't mark it that way here... */#define CALL_USED_REGISTERS \ /*  r0  r1  r2  r3  r4  r5  r6  r7  r8  r9  r10 r11 r12 r13 r14 r15 ap  c   fp x19 */ \   { 1,  1,  1,  1,  1,  1,  1,  1,  0,  0,  0,  0,  0,  0,  0,  0,  1,  1,  1, 1}/* The order in which register should be allocated.  */#define REG_ALLOC_ORDER  \ /* r7  r6  r5  r4  r3  r2  r15 r14 r13 r12 r11 r10  r9  r8  r1  r0  ap  c   fp x19*/ \  {  7,  6,  5,  4,  3,  2,  15, 14, 13, 12, 11, 10,  9,  8,  1,  0, 16, 17, 18, 19}/* Return number of consecutive hard regs needed starting at reg REGNO   to hold something of mode MODE.   This is ordinarily the length in words of a value of mode MODE   but can be less for certain modes in special long registers.   On the MCore regs are UNITS_PER_WORD bits wide; */#define HARD_REGNO_NREGS(REGNO, MODE)  \   (((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD))/* Value is 1 if hard register REGNO can hold a value of machine-mode MODE.   We may keep double values in even registers.  */#define HARD_REGNO_MODE_OK(REGNO, MODE)  \  ((TARGET_8ALIGN && GET_MODE_SIZE (MODE) > UNITS_PER_WORD) ? (((REGNO) & 1) == 0) : (REGNO < 18))/* Value is 1 if it is a good idea to tie two pseudo registers   when one has mode MODE1 and one has mode MODE2.   If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,   for any hard reg, then this must be 0 for correct output.  */#define MODES_TIEABLE_P(MODE1, MODE2) \  ((MODE1) == (MODE2) || GET_MODE_CLASS (MODE1) == GET_MODE_CLASS (MODE2))/* Value should be nonzero if functions must have frame pointers.   Zero means the frame pointer need not be set up (and parms may be accessed   via the stack pointer) in functions that seem suitable.  */#define FRAME_POINTER_REQUIRED	0/* Definitions for register eliminations.   We have two registers that can be eliminated on the MCore.  First, the   frame pointer register can often be eliminated in favor of the stack   pointer register.  Secondly, the argument pointer register can always be   eliminated; it is replaced with either the stack or frame pointer.  *//* Base register for access to arguments of the function.  */#define ARG_POINTER_REGNUM	16/* Register in which the static-chain is passed to a function.  */#define STATIC_CHAIN_REGNUM	1/* This is an array of structures.  Each structure initializes one pair   of eliminable registers.  The "from" register number is given first,   followed by "to".  Eliminations of the same "from" register are listed   in order of preference.  */#define ELIMINABLE_REGS				\{{ FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM},	\ { ARG_POINTER_REGNUM,   STACK_POINTER_REGNUM},	\ { ARG_POINTER_REGNUM,   FRAME_POINTER_REGNUM},}/* Given FROM and TO register numbers, say whether this elimination   is allowed.  */#define CAN_ELIMINATE(FROM, TO) \  (!((FROM) == FRAME_POINTER_REGNUM && FRAME_POINTER_REQUIRED))/* Define the offset between two registers, one to be eliminated, and the other   its replacement, at the start of a routine.  */#define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \  OFFSET = mcore_initial_elimination_offset (FROM, TO)/* Place that structure value return address is placed.  */#define STRUCT_VALUE 0/* Define the classes of registers for register constraints in the   machine description.  Also define ranges of constants.   One of the classes must always be named ALL_REGS and include all hard regs.   If there is more than one class, another class must be named NO_REGS   and contain no registers.   The name GENERAL_REGS must be the name of a class (or an alias for   another name such as ALL_REGS).  This is the class of registers   that is allowed by "g" or "r" in a register constraint.   Also, registers outside this class are allocated only when   instructions express preferences for them.   The classes must be numbered in nondecreasing order; that is,   a larger-numbered class must never be contained completely   in a smaller-numbered class.   For any two classes, it is very desirable that there be another   class that represents their union.  *//* The MCore has only general registers. There are   also some special purpose registers: the T bit register, the   procedure Link and the Count Registers */enum reg_class{  NO_REGS,  ONLYR1_REGS,  LRW_REGS,  GENERAL_REGS,  C_REGS,  ALL_REGS,  LIM_REG_CLASSES};#define N_REG_CLASSES  (int) LIM_REG_CLASSES/* Give names of register classes as strings for dump file.   */#define REG_CLASS_NAMES  \{			\  "NO_REGS",		\  "ONLYR1_REGS",	\  "LRW_REGS",		\  "GENERAL_REGS",	\  "C_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.  *//* ??? STACK_POINTER_REGNUM should be excluded from LRW_REGS.  */#define REG_CLASS_CONTENTS      	\{					\  {0x000000},  /* NO_REGS       */	\  {0x000002},  /* ONLYR1_REGS   */	\  {0x007FFE},  /* LRW_REGS      */	\  {0x01FFFF},  /* GENERAL_REGS  */	\  {0x020000},  /* C_REGS        */	\  {0x0FFFFF}   /* 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 const int regno_reg_class[FIRST_PSEUDO_REGISTER];#define REGNO_REG_CLASS(REGNO) regno_reg_class[REGNO]/* When defined, the compiler allows registers explicitly used in the   rtl to be used as spill registers but prevents the compiler from   extending the lifetime of these registers.  */#define SMALL_REGISTER_CLASSES 1 /* The class value for index registers, and the one for base regs.  */#define INDEX_REG_CLASS  NO_REGS#define BASE_REG_CLASS	 GENERAL_REGS/* Get reg_class from a letter such as appears in the machine    description.  */extern const enum reg_class reg_class_from_letter[];#define REG_CLASS_FROM_LETTER(C) \   ( ISLOWER (C) ? reg_class_from_letter[(C) - 'a'] : NO_REGS )/* The letters I, J, K, L, M, N, O, and P 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.	I: loadable by movi (0..127)	J: arithmetic operand 1..32	K: shift operand 0..31	L: negative arithmetic operand -1..-32	M: powers of two, constants loadable by bgeni	N: powers of two minus 1, constants loadable by bmaski, including -1        O: allowed by cmov with two constants +/- 1 of each other        P: values we will generate 'inline' -- without an 'lrw'   Others defined for use after reload        Q: constant 1	R: a label        S: 0/1/2 cleared bits out of 32	[for bclri's]        T: 2 set bits out of 32	[for bseti's]        U: constant 0        xxxS: 1 cleared bit out of 32 (complement of power of 2). for bclri        xxxT: 2 cleared bits out of 32. for pairs of bclris.  */#define CONST_OK_FOR_I(VALUE) (((int)(VALUE)) >= 0 && ((int)(VALUE)) <= 0x7f)#define CONST_OK_FOR_J(VALUE) (((int)(VALUE)) >  0 && ((int)(VALUE)) <= 32)#define CONST_OK_FOR_L(VALUE) (((int)(VALUE)) <  0 && ((int)(VALUE)) >= -32)#define CONST_OK_FOR_K(VALUE) (((int)(VALUE)) >= 0 && ((int)(VALUE)) <= 31)#define CONST_OK_FOR_M(VALUE) (exact_log2 (VALUE) >= 0)#define CONST_OK_FOR_N(VALUE) (((int)(VALUE)) == -1 || exact_log2 ((VALUE) + 1) >= 0)#define CONST_OK_FOR_O(VALUE) (CONST_OK_FOR_I(VALUE) || \                               CONST_OK_FOR_M(VALUE) || \                               CONST_OK_FOR_N(VALUE) || \                               CONST_OK_FOR_M((int)(VALUE) - 1) || \                               CONST_OK_FOR_N((int)(VALUE) + 1))#define CONST_OK_FOR_P(VALUE) (mcore_const_ok_for_inline (VALUE)) #define CONST_OK_FOR_LETTER_P(VALUE, C)     \     ((C) == 'I' ? CONST_OK_FOR_I (VALUE)   \    : (C) == 'J' ? CONST_OK_FOR_J (VALUE)   \    : (C) == 'L' ? CONST_OK_FOR_L (VALUE)   \    : (C) == 'K' ? CONST_OK_FOR_K (VALUE)   \    : (C) == 'M' ? CONST_OK_FOR_M (VALUE)   \    : (C) == 'N' ? CONST_OK_FOR_N (VALUE)   \    : (C) == 'P' ? CONST_OK_FOR_P (VALUE)   \    : (C) == 'O' ? CONST_OK_FOR_O (VALUE)   \    : 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) \   ((C) == 'G' ? CONST_OK_FOR_I (CONST_DOUBLE_HIGH (VALUE)) \	      && CONST_OK_FOR_I (CONST_DOUBLE_LOW (VALUE))  \    : 0)/* Letters in the range `Q' through `U' in a register constraint string   may be defined in a machine-dependent fashion to stand for arbitrary   operand types.  */#define EXTRA_CONSTRAINT(OP, C)				\  ((C) == 'R' ? (GET_CODE (OP) == MEM			\		 && GET_CODE (XEXP (OP, 0)) == LABEL_REF) \   : (C) == 'S' ? (GET_CODE (OP) == CONST_INT \                   && mcore_num_zeros (INTVAL (OP)) <= 2) \   : (C) == 'T' ? (GET_CODE (OP) == CONST_INT \                   && mcore_num_ones (INTVAL (OP)) == 2) \   : (C) == 'Q' ? (GET_CODE (OP) == CONST_INT \                   && INTVAL(OP) == 1) \   : (C) == 'U' ? (GET_CODE (OP) == CONST_INT \                   && INTVAL(OP) == 0) \   : 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.  */#define PREFERRED_RELOAD_CLASS(X, CLASS) mcore_reload_class (X, CLASS)/* Return the register class of a scratch register needed to copy IN into   or out of a register in CLASS in MODE.  If it can be done directly,   NO_REGS is returned.  */#define SECONDARY_RELOAD_CLASS(CLASS, MODE, X) NO_REGS/* Return the maximum number of consecutive registers   needed to represent mode MODE in a register of class CLASS.    On MCore this is the size of MODE in words.  */#define CLASS_MAX_NREGS(CLASS, MODE)  \     (ROUND_ADVANCE (GET_MODE_SIZE (MODE)))/* Stack layout; function entry, exit and calling.  *//* Define the number of register that can hold parameters.   These two macros are used only in other macro definitions below.  */#define NPARM_REGS 6#define FIRST_PARM_REG 2#define FIRST_RET_REG 2/* 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.  *//* We don't define this, because the MCore does not support   addresses with negative offsets.  *//* #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 defined, the maximum amount of space required for outgoing arguments   will be computed and placed into the variable   `current_function_outgoing_args_size'.  No space will be pushed   onto the stack for each call; instead, the function prologue should   increase the stack frame size by this amount.  */#define ACCUMULATE_OUTGOING_ARGS 1/* Offset of first parameter from the argument pointer register value.  */#define FIRST_PARM_OFFSET(FNDECL)  0/* Value is the number of byte of arguments automatically

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
不卡av在线网| 亚洲成a人v欧美综合天堂| 国产精品免费看片| 亚洲色图视频网| 五月激情六月综合| 国产又粗又猛又爽又黄91精品| 粉嫩一区二区三区性色av| av亚洲产国偷v产偷v自拍| 欧美伦理影视网| 久久久久99精品国产片| 一区二区三区色| 韩国毛片一区二区三区| 99久久精品免费看| 日韩欧美一级特黄在线播放| 欧美国产激情一区二区三区蜜月| 亚洲一区免费观看| 国产乱子轮精品视频| 色婷婷综合久久久中文字幕| 日韩欧美成人午夜| 亚洲精品免费视频| 精品一区二区影视| 色国产综合视频| 26uuu亚洲综合色| 亚洲国产欧美另类丝袜| 国产精品自拍在线| 欧美日韩国产免费一区二区| 日本一区二区在线不卡| 免费视频一区二区| 在线免费视频一区二区| 久久精品一区四区| 喷白浆一区二区| 91福利在线看| 欧美激情一二三区| 韩国v欧美v亚洲v日本v| 欧美天堂一区二区三区| 国产精品无码永久免费888| 日本成人超碰在线观看| 91福利视频久久久久| 日本一区二区久久| 国产一区在线观看麻豆| 欧美电影影音先锋| 亚洲国产精品久久人人爱| 99精品国产91久久久久久| 26uuu成人网一区二区三区| 日韩福利电影在线| 欧美日韩中文精品| 亚洲女人的天堂| 99久久精品一区二区| 国产日韩欧美精品电影三级在线 | 99国产精品一区| 久久精品视频免费观看| 精品写真视频在线观看| 欧美精品久久一区| 亚洲国产成人tv| 日本精品一区二区三区高清| 专区另类欧美日韩| 91小视频在线免费看| 久久精品人人做人人综合 | 精品国产污网站| 三级在线观看一区二区| 欧美亚洲国产一区二区三区 | 91麻豆6部合集magnet| 国产精品国产三级国产普通话三级| 国产最新精品免费| 久久女同性恋中文字幕| 极品瑜伽女神91| www国产精品av| 国内一区二区视频| 久久久久一区二区三区四区| 韩国成人精品a∨在线观看| 精品成人在线观看| 狠狠狠色丁香婷婷综合久久五月| 26uuu欧美| 国产精品中文欧美| 欧美国产日产图区| 成人黄色免费短视频| 国产精品久久毛片av大全日韩| 懂色一区二区三区免费观看| 欧美国产国产综合| 欧美日韩国产在线观看| 国产肉丝袜一区二区| 国产成人免费av在线| 欧美国产激情二区三区| 91天堂素人约啪| 夜夜嗨av一区二区三区四季av| 欧美亚洲日本国产| 天天色综合天天| 欧美成人三级电影在线| 国产精品综合一区二区三区| 中文字幕国产一区二区| 94-欧美-setu| 亚洲成av人片在线观看| 制服丝袜成人动漫| 激情图片小说一区| 欧美极品xxx| 在线精品视频免费播放| 美腿丝袜亚洲一区| 久久九九久精品国产免费直播| 99久久综合99久久综合网站| 亚洲一区二区精品久久av| 欧美精品精品一区| 狠狠色综合播放一区二区| 国产精品美女久久福利网站| 色一情一乱一乱一91av| 天堂一区二区在线| 亚洲精品一区二区三区蜜桃下载 | 国产精品久久久久久久久免费丝袜| 99国产精品久久| 亚洲成va人在线观看| 精品国产露脸精彩对白| 成人亚洲精品久久久久软件| 亚洲一区在线观看网站| 精品国产91乱码一区二区三区| 成人性生交大片免费看中文网站| 亚洲一级二级在线| 欧美精品一区二区三区久久久| 成人黄色网址在线观看| 日韩激情av在线| 国产精品乱码人人做人人爱 | 麻豆精品久久精品色综合| 国产精品丝袜久久久久久app| 欧洲av一区二区嗯嗯嗯啊| 久久99九九99精品| 亚洲黄色录像片| 精品国产凹凸成av人导航| 91免费视频观看| 久久99久久99| 亚洲一区二区三区四区五区黄| 欧美精品一区二区三区蜜臀| 在线视频你懂得一区二区三区| 精品一区二区三区在线视频| 亚洲自拍偷拍九九九| 久久精品一区二区三区av| 欧美综合久久久| 成人avav影音| 国产呦精品一区二区三区网站| 亚洲午夜电影在线| 国产精品国产a级| 日韩欧美国产午夜精品| 色激情天天射综合网| 国产精品一区二区黑丝| 日韩一区精品视频| 亚洲欧美日韩中文字幕一区二区三区 | 18成人在线观看| 欧美xxxxxxxx| 欧美日本不卡视频| 91一区一区三区| 粉嫩aⅴ一区二区三区四区| 久久国产人妖系列| 午夜影视日本亚洲欧洲精品| 中文字幕在线一区免费| 欧美精品一区二区在线观看| 国产一区亚洲一区| **网站欧美大片在线观看| 日韩欧美国产三级| 在线观看成人小视频| 成人av免费在线| 激情文学综合丁香| 日韩激情视频网站| 精品理论电影在线| 欧美精品v国产精品v日韩精品| 图片区小说区区亚洲影院| 亚洲视频你懂的| 欧美日韩视频在线第一区 | 日韩和欧美一区二区| 亚洲欧美日韩国产另类专区| 色成人在线视频| 成人性生交大片免费看中文| 国产精品久久久一本精品| 亚洲女同ⅹxx女同tv| 国产精品每日更新| 国产情人综合久久777777| 精品乱人伦小说| 欧美电影免费观看高清完整版| 欧美三级电影一区| 国产偷v国产偷v亚洲高清| 欧美精品一区二区三区很污很色的| 国产米奇在线777精品观看| 久久66热re国产| 久久精品国产一区二区| 在线观看精品一区| 色婷婷一区二区| 99精品1区2区| 91一区二区三区在线观看| 成人网页在线观看| 成人综合婷婷国产精品久久| 国产精品伊人色| 亚洲色欲色欲www| 国产传媒久久文化传媒| 国产成人精品一区二区三区网站观看| 蜜臀国产一区二区三区在线播放 | 成人高清视频免费观看| 日韩视频永久免费| 日韩色视频在线观看| 欧美成人精精品一区二区频| 亚洲激情自拍视频| 亚洲高清免费视频| av在线一区二区| 91精彩视频在线观看| 成人免费在线播放视频|