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

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

?? mcore.h

?? gcc3.2.1源代碼
?? H
?? 第 1 頁 / 共 4 頁
字號:
	x19		two control registers  *//* Number of actual hardware registers.   The hardware registers are assigned numbers for the compiler   from 0 to just below FIRST_PSEUDO_REGISTER.   All registers that the compiler knows about must be given numbers,   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 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   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.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91首页免费视频| 欧美变态tickle挠乳网站| 国产精品久久免费看| 国产成人午夜电影网| 国产精品入口麻豆九色| eeuss鲁一区二区三区| 中文在线一区二区| 91色综合久久久久婷婷| 91免费国产视频网站| 久久噜噜亚洲综合| 波多野结衣中文字幕一区二区三区 | 欧美精品一区二区不卡| 美女一区二区在线观看| 久久综合九色欧美综合狠狠| 国产精品69久久久久水密桃| 国产精品美女久久久久久久| 色系网站成人免费| 午夜日韩在线电影| 欧美精品一区二区三区久久久| 看电视剧不卡顿的网站| 久久精品夜色噜噜亚洲aⅴ| 99这里只有久久精品视频| 亚洲国产精品久久人人爱蜜臀 | 911精品产国品一二三产区| 麻豆91精品91久久久的内涵| 亚洲国产精品av| 欧美三级电影精品| 国产成人精品aa毛片| 一区二区三区电影在线播| 欧美一级精品在线| 91亚洲大成网污www| 婷婷综合五月天| 国产欧美一区二区三区沐欲| 精品视频1区2区| 福利一区福利二区| 亚洲综合免费观看高清完整版在线 | 中文字幕精品一区二区精品绿巨人| 波多野结衣一区二区三区| 亚洲第一成人在线| 国产午夜亚洲精品不卡| 欧洲精品一区二区| 国产一区不卡在线| 亚洲在线成人精品| 国产欧美一区二区精品性色| 欧美丝袜丝nylons| 成人免费视频播放| 蜜桃av一区二区| 亚洲一区二区三区不卡国产欧美| 成人高清视频在线观看| 欧美高清一级片在线观看| 欧美日韩免费在线视频| 成人激情黄色小说| 另类小说图片综合网| 一区二区三区av电影| 久久精品欧美日韩精品| 91精品国产一区二区三区蜜臀| 99久久亚洲一区二区三区青草| 青青草国产成人av片免费| 有坂深雪av一区二区精品| 国产色综合一区| 欧美一二三区在线观看| 欧美日韩一区二区三区在线| 成人激情开心网| 国产电影精品久久禁18| 激情六月婷婷综合| 裸体一区二区三区| 亚洲国产精品自拍| 一区二区三区四区在线| 亚洲色图在线视频| 亚洲欧美综合在线精品| 中文字幕欧美区| 久久久久成人黄色影片| 久久久久久久综合日本| 成人动漫一区二区| 日本不卡视频在线| 亚洲高清视频中文字幕| 一区二区三区久久| 亚洲另类春色国产| 亚洲国产综合人成综合网站| 亚洲黄色片在线观看| 亚洲综合色成人| 亚洲国产精品久久久男人的天堂| 亚洲图片欧美视频| 亚洲国产中文字幕| 日韩av一区二区在线影视| 日韩国产在线一| 美国十次综合导航| 国产一区二区视频在线播放| 国产精品影视天天线| 成人免费福利片| 99久久精品免费看国产免费软件| www.日韩大片| 在线免费观看成人短视频| 欧美日韩国产一级| 欧美大片日本大片免费观看| 欧美精品一区二区在线播放| 国产欧美日韩视频在线观看| 中文字幕一区二区在线观看 | 麻豆精品视频在线观看视频| 免费欧美日韩国产三级电影| 麻豆91免费看| 成人成人成人在线视频| 99国产精品久久久| 一本到一区二区三区| 在线观看欧美精品| 91麻豆精品国产91| 欧美区在线观看| 欧美日本乱大交xxxxx| 337p亚洲精品色噜噜噜| 欧美一区三区四区| 精品日韩欧美一区二区| 久久综合久久鬼色| 亚洲少妇屁股交4| 亚洲一区二区三区在线| 天堂影院一区二区| 久久er精品视频| 国产一区二区在线观看免费| 国产suv精品一区二区883| 欧美日韩精品电影| 精品少妇一区二区三区日产乱码| 久久综合色之久久综合| 综合在线观看色| 亚洲成人一区二区| 亚洲www啪成人一区二区麻豆| 亚洲精品国产一区二区三区四区在线 | 久久精品人人做人人爽97| 久久夜色精品一区| 亚洲欧美日韩一区二区三区在线观看| 日韩美女啊v在线免费观看| 亚洲制服丝袜av| 久久国产夜色精品鲁鲁99| 99热精品一区二区| 欧美久久婷婷综合色| 3751色影院一区二区三区| youjizz国产精品| 欧美一区三区四区| 中文一区在线播放| 久久精品国产亚洲一区二区三区 | 美国十次综合导航| 不卡一二三区首页| 日韩写真欧美这视频| 国产午夜精品在线观看| 美国欧美日韩国产在线播放| 波多野结衣91| 欧美大片在线观看一区二区| 国产精品不卡在线| 蜜臀久久99精品久久久久宅男 | 国产精品久久久久久久第一福利| 亚洲sss视频在线视频| 丰满岳乱妇一区二区三区| 欧美日韩视频在线一区二区| 亚洲视频1区2区| 黄色小说综合网站| 欧美理论在线播放| 亚洲欧洲av另类| 国产精品资源网| 2024国产精品| 日韩综合小视频| 99久久久久免费精品国产 | 3d成人动漫网站| 一区二区成人在线观看| 91麻豆国产香蕉久久精品| 精品精品欲导航| 五月天国产精品| 欧美日精品一区视频| 一区二区中文视频| 精品一区二区三区欧美| 欧美日韩国产美| 一区二区三区日韩精品| 成人av在线网站| 国产欧美精品一区二区三区四区| 丝袜诱惑亚洲看片 | 国产一区二区视频在线| 欧美肥妇bbw| 奇米精品一区二区三区在线观看| 欧美视频精品在线观看| 亚洲美女淫视频| 91网站在线观看视频| 欧美韩国一区二区| 国产+成+人+亚洲欧洲自线| 欧美不卡一区二区三区| 日韩av电影天堂| 欧美人体做爰大胆视频| 亚洲成人免费看| 在线观看欧美精品| 亚洲电影在线播放| 欧美影视一区在线| 亚洲国产综合在线| 懂色中文一区二区在线播放| 久久国产欧美日韩精品| 欧美精品777| 日韩在线一区二区三区| 欧美日韩视频在线一区二区| 中文字幕一区av| 欧美视频精品在线观看| 午夜精品福利一区二区三区av| 欧洲精品一区二区三区在线观看| 一区二区三区四区中文字幕| 成人一区二区在线观看| 一区二区三区欧美日|