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

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

?? tm-mips.h

?? 這是完整的gcc源代碼
?? H
?? 第 1 頁 / 共 5 頁
字號:
#define MACHINE_TYPE "Sgi Mips"#else#if defined(MIPS_SYSV) || defined(MIPS_BSD43)				/* MIPS RISC-OS environments */#ifdef MIPS_SYSV#define MACHINE_TYPE "RISC-OS System V Mips"#else /* not MIPS_SYSV */#define MACHINE_TYPE "RISC-OS BSD Mips"#endif /* not MIPS_SYSV */#else /* not MIPS_SYSV and not MIPS_BSD43 */				/* default MIPS Bsd environment */#define MACHINE_TYPE "BSD Mips"#endif /* not SGI iris */#endif /* not MIPS_SYSV and not MIPS_BSD43 */#endif /* not DECSTATION */#define TARGET_VERSION							\{									\  fprintf (stderr, " %s %s %s", MIPS_VERSION, MACHINE_TYPE, __DATE__);	\}#define SDB_DEBUGGING_INFO	/* generate debug info inside of comments */#define MIPS_DEBUGGING_INFO	/* MIPS specific debugging info *//* On Sun 4, this limit is 2048.  We use 1500 to be safe,   since the length can run past this up to a continuation point.  */#define DBX_CONTIN_LENGTH 1500/* How to renumber registers for dbx and gdb.   MIPS needs no change in the numeration.  */#define DBX_REGISTER_NUMBER(REGNO) (REGNO)/* Overides for the COFF debug format.  */#define PUT_SDB_SCL(a)					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.scl\t%d;", (a));	\} while (0)#define PUT_SDB_INT_VAL(a)				\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.val\t%d;", (a));	\} while (0)#define PUT_SDB_VAL(a)					\do {							\  extern FILE *asm_out_text_file;			\  fputs ("\t.val\t", asm_out_text_file);		\  output_addr_const (asm_out_text_file, (a));		\  fputc (';', asm_out_text_file);			\} while (0)#define PUT_SDB_DEF(a)					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t#.def\t");		\  ASM_OUTPUT_LABELREF (asm_out_text_file, a); 		\  fputc (';', asm_out_text_file);			\} while (0)#define PUT_SDB_PLAIN_DEF(a)				\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t#.def\t.%s;", (a));	\} while (0)#define PUT_SDB_ENDEF					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.endef\n");		\} while (0)#define PUT_SDB_TYPE(a)					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.type\t0x%x;", (a));	\} while (0)#define PUT_SDB_SIZE(a)					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.size\t%d;", (a));	\} while (0)#define PUT_SDB_DIM(a)					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.dim\t%d;", (a));	\} while (0)#ifndef PUT_SDB_START_DIM#define PUT_SDB_START_DIM				\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.dim\t");		\} while (0)#endif#ifndef PUT_SDB_NEXT_DIM#define PUT_SDB_NEXT_DIM(a)				\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "%d,", a);		\} while (0)#endif#ifndef PUT_SDB_LAST_DIM#define PUT_SDB_LAST_DIM(a)				\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "%d;", a);		\} while (0)#endif#define PUT_SDB_TAG(a)					\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file, "\t.tag\t");		\  ASM_OUTPUT_LABELREF (asm_out_text_file, a); 		\  fputc (';', asm_out_text_file);			\} while (0)/* For block start and end, we create labels, so that   later we can figure out where the correct offset is.   The normal .ent/.end serve well enough for functions,   so those are just commented out.  */#define PUT_SDB_BLOCK_START(LINE)			\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file,				\	   "$Lb%d:\n\t#.begin\t$Lb%d\t%d\n",		\	   sdb_label_count,				\	   sdb_label_count,				\	   (LINE));					\  sdb_label_count++;					\} while (0)#define PUT_SDB_BLOCK_END(LINE)				\do {							\  extern FILE *asm_out_text_file;			\  fprintf (asm_out_text_file,				\	   "$Le%d:\n\t#.bend\t$Le%d\t%d\n",		\	   sdb_label_count,				\	   sdb_label_count,				\	   (LINE));					\  sdb_label_count++;					\} while (0)#define PUT_SDB_FUNCTION_START(LINE)#define PUT_SDB_FUNCTION_END(LINE)#define PUT_SDB_EPILOGUE_END(NAME)#define SDB_GENERATE_FAKE(BUFFER, NUMBER) \  sprintf ((BUFFER), ".%dfake", (NUMBER));/* Run-time compilation parameters selecting different hardware subsets.  */extern int target_flags;/* Macros used in the machine description to test the flags.  */					/* Mips vs. GNU assembler */#define TARGET_UNIX_ASM		(target_flags & 0x00000001)#define TARGET_MIPS_AS		TARGET_UNIX_ASM#define TARGET_GAS		(TARGET_UNIX_ASM == 0)					/* Debug Mode */#define TARGET_DEBUG_MODE	(target_flags & 0x00000002)#define TARGET_DEBUGA_MODE	(target_flags & 0x00000004)#define TARGET_DEBUGB_MODE	(target_flags & 0x00000010)#define TARGET_DEBUGC_MODE	(target_flags & 0x00000020)#define TARGET_DEBUGD_MODE	(target_flags & 0x00000040)#define TARGET_DEBUGE_MODE	(target_flags & 0x00008000)					/* Reg. Naming in .s ($21 vs. $a0) */#define TARGET_NAME_REGS	(target_flags & 0x00000008)					/* addu/subbu vs. add/sub */#define TARGET_NOFIXED_OVFL	(target_flags & 0x00000080)					/* Optimize for Sdata/Sbss */#define TARGET_GP_OPT		(target_flags & 0x00001000)#define TARGET_GVALUE_MASK	(target_flags & 0x00000f00)#define TARGET_GVALUE		(TARGET_GVALUE_MASK >> 8)					/* Position independent code */#define TARGET_PIC		(target_flags & 0x00002000)#define TARGET_PIC_LARGE_OBJECT (target_flags & 0x00004000)/* Macro to define tables used to set the flags.   This is a list in braces of pairs in braces,   each pair being { "NAME", VALUE }   where VALUE is the bits to set or minus the bits to clear.   An empty string NAME is used to identify the default VALUE.  */#define TARGET_SWITCHES							\{ {"mips-as",		  0x00000001},	/* MIPS assembler */		\  {"gas",		 -0x00000001},	/* GNU  assembler */		\  {"debug",		  0x00000002},	/* Eliminate version in output*/ \  {"nodebug",		 -0x00000002},					\  {"debuga",		  0x00000004},	/* don't fold SP pushes into frame */ \  {"nodebuga",		 -0x00000004},					\  {"debugb",		  0x00000010},	/* GO_IF_LEGITIMATE_ADDRESS debug */ \  {"nodebugb",		 -0x00000010},					\  {"debugc",		  0x00000020},	/* fix frame ptr debug */	\  {"nodebugc",		 -0x00000020},					\  {"debugd",		  0x00000040},	/* branch/cc0 debug */		\  {"nodebugd",		 -0x00000040},					\  {"rnames",		  0x00000008},	/* Register names like $a0 */	\  {"nornames",		 -0x00000008},	/* Register names like $21 */	\  {"nofixed-ovfl",	  0x00000080},	/* Use addu and subu */		\  {"fixed-ovfl",	 -0x00000080},	/* Use add  and sub */		\  {"G0",		  0x00000100},	/* Bit 1 of sdata size */	\  {"nG0",		 -0x00000100},					\  {"noG0",		 -0x00000100},					\  {"G1",		  0x00000200},	/* Bit 2 of sdata size */	\  {"nG1",		 -0x00000200},					\  {"noG1",		 -0x00000200},					\  {"G2",		  0x00000400},	/* Bit 3 of sdata size */	\  {"nG2",		 -0x00000400},					\  {"noG2",		 -0x00000400},					\  {"gpOPT",		  0x00001000},	/* Optimize for global ptr */	\  {"ngpOPT",		 -0x00001000},					\  {"nogpOPT",		 -0x00001000},					\  {"pic",		  0x00002000},	/* Position independent code */	\  {"npic",		 -0x00002000},					\  {"nopic",		 -0x00002000},					\  {"pic-large-object",	  0x00004000},	/* Don't opt pic local funcs */	\  {"nopic-large-object", -0x00004000},					\  {"debuge",		  0x00008000},	/* FUNCTION_ARG debug */	\  {"nodebuge",		 -0x00008000},					\  {"",			 TARGET_DEFAULT}}/* Default target_flags if no switches specified (-mmips-as, -mnofixed-ovfl,   -G0, -G1 [same as -G 8]).  OSF/1 does not set -mmips-as, and sets -G 0. */#ifndef OSF_OS#define TARGET_DEFAULT 0x00000381#else#define TARGET_DEFAULT 0x00000080#endif/* Default GVALUE  (data item size threshold for selection of Sdata/data)   is computed : GVALUE ==  ( ((i=G0+2*G1+4*G2) < 6)				        ? 1<<i					: 1<< (i+3))*//* Target machine storage layout *//* Define this if most significant bit is lowest numbered   in instructions that operate on numbered bit-fields.*//* #define BITS_BIG_ENDIAN *//* Define this if most significant byte of a word is the lowest numbered. */#ifndef DECSTATION#define BYTES_BIG_ENDIAN#endif/* Define this if most significant word of a multiword number is numbered. */#ifndef DECSTATION#define WORDS_BIG_ENDIAN#endif/* Define macros to easily access the most and least significant words   without a lot of #ifdef's.  */#ifdef WORDS_BIG_ENDIAN#define MOST_SIGNIFICANT_WORD	0#define LEAST_SIGNIFICANT_WORD	1#else#define MOST_SIGNIFICANT_WORD	1#define LEAST_SIGNIFICANT_WORD	0#endif/* Number of bits in an addressible storage unit */#define BITS_PER_UNIT 8/* Width in bits of a "word", which is the contents of a machine register.   Note that this is not necessarily the width of data type `int';   if using 16-bit ints on a 68000, this would still be 32.   But on a machine with 16-bit registers, this would be 16.  */#define BITS_PER_WORD 32/* Width of a word, in units (bytes).  */#define UNITS_PER_WORD 4/* Width in bits of a pointer.   See also the macro `Pmode' defined below.  */#define POINTER_SIZE 32/* Allocation boundary (in *bits*) for storing pointers in memory.  */#define POINTER_BOUNDARY 32/* Allocation boundary (in *bits*) for storing arguments in argument list.  */#define PARM_BOUNDARY 32/* Give parms extra alignment, up to this much, if their types want it.  */#define MAX_PARM_BOUNDARY 64/* Allocation boundary (in *bits*) for the code of a function.  */#define FUNCTION_BOUNDARY 32/* Alignment of field after `int : 0' in a structure.  */#define EMPTY_FIELD_BOUNDARY 32/* Every structure's size must be a multiple of this.  */#define STRUCTURE_SIZE_BOUNDARY 8/* There is no point aligning anything to a rounder boundary than this.  */#define BIGGEST_ALIGNMENT 64/* Define this if move instructions will actually fail to work   when given unaligned data.  */#define STRICT_ALIGNMENT/* Define this macro if an argument declared as `char' or `short' in a   prototype should actually be passed as an `int'.  In addition to   avoiding errors in certain cases of mismatch, it also makes for   better code on certain machines. */#define PROMOTE_PROTOTYPES/* Standard register usage.  *//* 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.  */#define FIRST_PSEUDO_REGISTER 64/* 1 for registers that have pervasive standard uses   and are not available for the register allocator.   On the MIPS, see conventions, page D-2   I have chosen not to  take Multiply/Divide HI,LO or PC into   account.  */#define FIXED_REGISTERS {1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\		         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1,\		         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\		         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0	\}/* 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.  */#define CALL_USED_REGISTERS {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,\		             0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1,\		             1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,\		             1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0\}/* Internal macros to classify a register number as to whether it's a   general purpose register or a floating point register.  The macro   FP_CALL_REG_P also allows registers $4 and $6 as floating point   registers to pass floating point as per MIPS spec. */#define GP_REG_FIRST 0#define GP_REG_LAST  31#define GP_REG_NUM   (GP_REG_LAST - GP_REG_FIRST + 1)#define FP_REG_FIRST 32#define FP_REG_LAST  63#define FP_REG_NUM   (FP_REG_LAST - FP_REG_FIRST + 1)#define GP_REG_P(REGNO) ((unsigned) ((REGNO) - GP_REG_FIRST) < GP_REG_NUM)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产婷婷综合在线精品| 成人的网站免费观看| 日韩国产在线一| 亚洲成人动漫在线免费观看| 亚洲精品国产精华液| 夜夜嗨av一区二区三区四季av| 亚洲视频每日更新| 亚洲精品免费在线播放| 亚洲免费资源在线播放| 伊人开心综合网| 亚洲尤物视频在线| 视频一区二区国产| 免费观看在线综合色| 精品一区二区在线免费观看| 国产综合成人久久大片91| 国产福利一区二区三区视频在线| 丁香天五香天堂综合| 成人高清伦理免费影院在线观看| voyeur盗摄精品| 在线免费观看日韩欧美| 欧美午夜精品久久久| 欧美精品久久久久久久多人混战| 欧美一区二区久久久| 精品美女被调教视频大全网站| 久久久影视传媒| 国产精品丝袜久久久久久app| 亚洲欧美视频在线观看视频| 午夜精品久久久久久久蜜桃app| 蜜臀av一区二区在线观看| 国内精品伊人久久久久av一坑| 成人动漫一区二区| 欧美色涩在线第一页| 日韩欧美中文字幕一区| 亚洲国产精品精华液ab| 一区二区三区四区亚洲| 日本亚洲免费观看| 国产精品一二三四| 欧美伊人精品成人久久综合97| 日韩一级高清毛片| 中文字幕久久午夜不卡| 亚洲一区影音先锋| 精品亚洲aⅴ乱码一区二区三区| 成人av在线播放网站| 制服丝袜亚洲播放| 国产偷v国产偷v亚洲高清| 亚洲一区中文日韩| 国产一区二区不卡| 欧美亚洲日本一区| 久久久久久久av麻豆果冻| 亚洲激情图片qvod| 国产乱码字幕精品高清av| 在线亚洲一区二区| 久久久不卡网国产精品二区| 亚洲香肠在线观看| 国产黄色成人av| 欧美日韩国产综合久久| 欧美国产一区视频在线观看| 奇米亚洲午夜久久精品| 91丨九色丨黑人外教| 欧美大白屁股肥臀xxxxxx| 亚洲麻豆国产自偷在线| 国产一区二区免费看| 欧美图区在线视频| 国产精品久久久久一区二区三区共 | 91亚洲精品久久久蜜桃| 日韩欧美亚洲另类制服综合在线| 亚洲免费在线观看视频| 国产成人精品网址| 精品国产一区二区在线观看| 亚洲一区二区三区国产| 91网站最新网址| 久久久99免费| 美国一区二区三区在线播放| 欧美在线免费视屏| 中文字幕日韩欧美一区二区三区| 久久99久久精品欧美| 欧美人妖巨大在线| 亚洲欧美二区三区| aaa欧美色吧激情视频| 久久久久久久久久看片| 久久国内精品视频| 在线成人免费视频| 亚洲一区二区三区中文字幕| 97se狠狠狠综合亚洲狠狠| 国产视频一区二区在线| 国产麻豆9l精品三级站| 精品黑人一区二区三区久久| 五月婷婷激情综合网| 欧美性生活久久| 一区二区成人在线视频| 99re视频精品| 国产精品久久久久久久久免费相片| 国产精品一品视频| 久久亚洲综合色一区二区三区| 久久av资源站| 精品久久久久一区| 精品亚洲porn| 久久久久成人黄色影片| 精品一区免费av| 久久久久久久久免费| 国产成人综合网站| 国产视频一区在线播放| 成人性视频免费网站| 国产精品色在线观看| 成人黄色小视频| 中文天堂在线一区| av毛片久久久久**hd| 国产精品国产成人国产三级| 色综合咪咪久久| 一区二区三区精品在线观看| 在线视频一区二区三| 亚洲成人综合视频| 91精品国产综合久久国产大片| 日韩极品在线观看| 日韩精品一区二区三区三区免费| 精品亚洲成a人在线观看| 久久久久国产精品厨房| www.激情成人| 亚洲综合色区另类av| 欧美一区二区三区啪啪| 久久精品av麻豆的观看方式| 久久久久久一二三区| 成人毛片视频在线观看| 一区二区在线观看免费视频播放 | 亚洲精品视频在线看| 欧美午夜理伦三级在线观看| 青青草国产精品亚洲专区无| 久久综合视频网| hitomi一区二区三区精品| 亚洲午夜久久久久中文字幕久| 日韩一区二区三区电影在线观看| 国产在线麻豆精品观看| 国产精品九色蝌蚪自拍| 欧美日韩另类一区| 激情文学综合网| 国产精品欧美一区二区三区| 欧美中文字幕亚洲一区二区va在线| 视频一区欧美精品| 国产日韩欧美激情| 欧美视频在线一区二区三区| 蜜臀久久99精品久久久久宅男| 日本一区二区免费在线观看视频| 色系网站成人免费| 日本aⅴ精品一区二区三区| 国产亚洲欧洲一区高清在线观看| 91蝌蚪porny成人天涯| 免费高清视频精品| 中文字幕日本不卡| 日韩欧美亚洲国产另类| 一本到不卡免费一区二区| 麻豆免费精品视频| 国产精品久久99| 日韩精品一区在线| 色综合久久综合网| 国产美女一区二区三区| 亚洲国产美女搞黄色| 国产亚洲欧洲997久久综合| 欧美日韩不卡视频| 成人美女视频在线看| 免费日本视频一区| 亚洲精品国产一区二区精华液 | 欧美精品123区| 风间由美一区二区av101| 天使萌一区二区三区免费观看| 国产无一区二区| 日韩丝袜美女视频| 色婷婷精品久久二区二区蜜臀av| 国产一区在线精品| 日韩专区中文字幕一区二区| 中文字幕日韩av资源站| 久久综合狠狠综合久久激情| 欧美日韩国产成人在线免费| av亚洲精华国产精华精| 国产一区二区在线视频| 午夜欧美在线一二页| 国产精品超碰97尤物18| 欧美精品一区二区三区视频| 欧美喷潮久久久xxxxx| av综合在线播放| 国产精品一区二区免费不卡 | 久久精品久久精品| 亚洲一区二区三区在线看| 国产精品三级视频| 26uuu精品一区二区| 欧美一区二区美女| 欧美日产国产精品| 在线影院国内精品| 色综合久久综合网97色综合 | 欧美电影一区二区三区| 91丨porny丨首页| 成人18精品视频| 国产福利91精品一区二区三区| 麻豆精品一区二区| 日韩在线a电影| 婷婷久久综合九色综合伊人色| 一区av在线播放| 亚洲区小说区图片区qvod| 亚洲欧美在线aaa| 亚洲欧洲精品天堂一级| 亚洲国产精品二十页|