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

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

?? gcc-4.0.2.patch.svn-base

?? PSP開發環境(Linux) 包含PSPLINK 請自行選擇需要安裝的庫及源代碼
?? SVN-BASE
?? 第 1 頁 / 共 3 頁
字號:
diff -burN gcc-4.0.2/config.sub gcc-psp/config.sub--- gcc-4.0.2/config.sub	2005-04-25 11:36:56.000000000 +0100+++ gcc-psp/config.sub	2007-01-21 16:35:39.000000000 +0000@@ -254,6 +254,7 @@ 	| mipsisa64sb1 | mipsisa64sb1el \ 	| mipsisa64sr71k | mipsisa64sr71kel \ 	| mipstx39 | mipstx39el \+	| mipsallegrex | mipsallegrexel \ 	| mn10200 | mn10300 \ 	| msp430 \ 	| ns16k | ns32k \@@ -328,6 +329,7 @@ 	| mipsisa64sb1-* | mipsisa64sb1el-* \ 	| mipsisa64sr71k-* | mipsisa64sr71kel-* \ 	| mipstx39-* | mipstx39el-* \+	| mipsallegrex-* | mipsallegrexel-* \ 	| mmix-* \ 	| msp430-* \ 	| none-* | np1-* | ns16k-* | ns32k-* \@@ -668,6 +670,10 @@ 		basic_machine=m68k-atari 		os=-mint 		;;+	psp)+		basic_machine=mipsallegrexel-psp+		os=-elf+		;; 	mips3*-*) 		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` 		;;diff -burN gcc-4.0.2/gcc/c-incpath.c gcc-psp/gcc/c-incpath.c--- gcc-4.0.2/gcc/c-incpath.c	2005-01-23 15:05:27.000000000 +0000+++ gcc-psp/gcc/c-incpath.c	2007-01-21 16:35:39.000000000 +0000@@ -331,13 +331,18 @@   cpp_dir *p;  #if defined (HAVE_DOS_BASED_FILE_SYSTEM)-  /* Convert all backslashes to slashes.  The native CRT stat()-     function does not recognize a directory that ends in a backslash-     (unless it is a drive root dir, such "c:\").  Forward slashes,-     trailing or otherwise, cause no problems for stat().  */-  char* c;-  for (c = path; *c; c++)-    if (*c == '\\') *c = '/';+  /* Remove unnecessary trailing slashes.  On some versions of MS+     Windows, trailing  _forward_ slashes cause no problems for stat().+     On newer versions, stat() does not recognise a directory that ends+     in a '\\' or '/', unless it is a drive root dir, such as "c:/",+     where it is obligatory.  */+  int pathlen = strlen (path);+  char* end = path + pathlen - 1;+  /* Preserve the lead '/' or lead "c:/".  */+  char* start = path + (pathlen > 2 && path[1] == ':' ? 3 : 1);+   +  for (; end > start && IS_DIR_SEPARATOR (*end); end--)+    *end = 0; #endif    p = xmalloc (sizeof (cpp_dir));diff -burN gcc-4.0.2/gcc/config/mips/allegrex.md gcc-psp/gcc/config/mips/allegrex.md--- gcc-4.0.2/gcc/config/mips/allegrex.md	1970-01-01 01:00:00.000000000 +0100+++ gcc-psp/gcc/config/mips/allegrex.md	2007-01-21 16:35:39.000000000 +0000@@ -0,0 +1,183 @@+;; Sony ALLEGREX instructions.+;; Copyright (C) 2005 Free Software Foundation, Inc.+;;+;; This file is part of GCC.+;;+;; GCC is free software; you can redistribute it and/or modify+;; it under the terms of the GNU General Public License as published by+;; the Free Software Foundation; either version 2, or (at your option)+;; any later version.+;;+;; GCC is distributed in the hope that it will be useful,+;; but WITHOUT ANY WARRANTY; without even the implied warranty of+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the+;; GNU General Public License for more details.+;;+;; You should have received a copy of the GNU General Public License+;; along with GCC; see the file COPYING.  If not, write to+;; the Free Software Foundation, 59 Temple Place - Suite 330,+;; Boston, MA 02111-1307, USA.++; Multiply Add and Subtract.++(define_insn "allegrex_madd"+  [(set (match_operand:SI 0 "register_operand" "+l")+      	(plus:SI (mult:SI (match_operand:SI 1 "register_operand" "d")+			  (match_operand:SI 2 "register_operand" "d"))+		 (match_dup 0)))+   (clobber (match_scratch:SI 3 "=h"))]+  "TARGET_ALLEGREX"+  "madd\t%1,%2"+  [(set_attr "type"	"imadd")+   (set_attr "mode"	"SI")])++(define_insn "allegrex_msub"+  [(set (match_operand:SI 0 "register_operand" "+l")+      	(minus:SI (match_dup 0)+		  (mult:SI (match_operand:SI 1 "register_operand" "d")+			   (match_operand:SI 2 "register_operand" "d"))))+   (clobber (match_scratch:SI 3 "=h"))]+  "TARGET_ALLEGREX"+  "msub\t%1,%2"+  [(set_attr "type"	"imadd")+   (set_attr "mode"	"SI")])+++; Min and max.++(define_insn "sminsi3"+  [(set (match_operand:SI 0 "register_operand" "=d")+        (smin:SI (match_operand:SI 1 "register_operand" "d")+                 (match_operand:SI 2 "register_operand" "d")))]+  "TARGET_ALLEGREX"+  "min\t%0,%1,%2"+  [(set_attr "type"	"arith")+   (set_attr "mode"	"SI")])++(define_insn "smaxsi3"+  [(set (match_operand:SI 0 "register_operand" "=d")+        (smax:SI (match_operand:SI 1 "register_operand" "d")+                 (match_operand:SI 2 "register_operand" "d")))]+  "TARGET_ALLEGREX"+  "max\t%0,%1,%2"+  [(set_attr "type"	"arith")+   (set_attr "mode"	"SI")])+++; Extended shift instructions.++(define_insn "allegrex_bitrev"+  [(set (match_operand:SI 0 "register_operand" "=d")+	(unspec:SI [(match_operand:SI 1 "register_operand" "d")]+		   UNSPEC_BITREV))]+  "TARGET_ALLEGREX"+  "bitrev\t%0,%1"+  [(set_attr "type"	"arith")+   (set_attr "mode"	"SI")])++(define_insn "allegrex_wsbh"+  [(set (match_operand:SI 0 "register_operand" "=d")+	(unspec:SI [(match_operand:SI 1 "register_operand" "d")]+		   UNSPEC_WSBH))]+  "TARGET_ALLEGREX"+  "wsbh\t%0,%1"+  [(set_attr "type"	"arith")+   (set_attr "mode"	"SI")])++(define_insn "allegrex_wsbw"+  [(set (match_operand:SI 0 "register_operand" "=d")+	(unspec:SI [(match_operand:SI 1 "register_operand" "d")]+		   UNSPEC_WSBW))]+  "TARGET_ALLEGREX"+  "wsbw\t%0,%1"+  [(set_attr "type"	"arith")+   (set_attr "mode"	"SI")])+++; Count leading ones, count trailing zeros, and count trailing ones (clz is+; already defined).++(define_insn "allegrex_clo"+  [(set (match_operand:SI 0 "register_operand" "=d")+      	(unspec:SI [(match_operand:SI 1 "register_operand" "d")]+		   UNSPEC_CLO))]+  "TARGET_ALLEGREX"+  "clo\t%0,%1"+  [(set_attr "type"	"clz")+   (set_attr "mode"	"SI")])++(define_expand "ctzsi2"+  [(set (match_operand:SI 0 "register_operand")+      	(ctz:SI (match_operand:SI 1 "register_operand")))]+  "TARGET_ALLEGREX"+{+  rtx r1;++  r1 = gen_reg_rtx (SImode);+  emit_insn (gen_allegrex_bitrev (r1, operands[1]));+  emit_insn (gen_clzsi2 (operands[0], r1));+  DONE;+})++(define_expand "allegrex_cto"+  [(set (match_operand:SI 0 "register_operand")+      	(unspec:SI [(match_operand:SI 1 "register_operand")]+		   UNSPEC_CTO))]+  "TARGET_ALLEGREX"+{+  rtx r1;++  r1 = gen_reg_rtx (SImode);+  emit_insn (gen_allegrex_bitrev (r1, operands[1]));+  emit_insn (gen_allegrex_clo (operands[0], r1));+  DONE;+})+++; Misc.++(define_insn "allegrex_sync"+  [(unspec_volatile [(const_int 0)] UNSPEC_SYNC)]+  "TARGET_ALLEGREX"+  "sync"+  [(set_attr "type"	"unknown")+   (set_attr "mode"	"none")])++(define_insn "allegrex_cache"+  [(unspec_volatile [(match_operand:SI 0 "const_int_operand" "")+		     (match_operand:SI 1 "register_operand" "d")]+		    UNSPEC_CACHE)]+  "TARGET_ALLEGREX"+  "cache\t%0,0(%1)"+  [(set_attr "type"	"unknown")+   (set_attr "mode"	"none")])+++; Floating-point builtins.++(define_insn "allegrex_ceil_w_s"+  [(set (match_operand:SI 0 "register_operand" "=f")+      	(unspec:SI [(match_operand:SF 1 "register_operand" "f")]+		   UNSPEC_CEIL_W_S))]+  "TARGET_ALLEGREX"+  "ceil.w.s\t%0,%1"+  [(set_attr "type"	"fcvt")+   (set_attr "mode"	"SF")])++(define_insn "allegrex_floor_w_s"+  [(set (match_operand:SI 0 "register_operand" "=f")+      	(unspec:SI [(match_operand:SF 1 "register_operand" "f")]+		   UNSPEC_FLOOR_W_S))]+  "TARGET_ALLEGREX"+  "floor.w.s\t%0,%1"+  [(set_attr "type"	"fcvt")+   (set_attr "mode"	"SF")])++(define_insn "allegrex_round_w_s"+  [(set (match_operand:SI 0 "register_operand" "=f")+      	(unspec:SI [(match_operand:SF 1 "register_operand" "f")]+		   UNSPEC_ROUND_W_S))]+  "TARGET_ALLEGREX"+  "round.w.s\t%0,%1"+  [(set_attr "type"	"fcvt")+   (set_attr "mode"	"SF")])diff -burN gcc-4.0.2/gcc/config/mips/mips-protos.h gcc-psp/gcc/config/mips/mips-protos.h--- gcc-4.0.2/gcc/config/mips/mips-protos.h	2004-12-30 03:07:56.000000000 +0000+++ gcc-psp/gcc/config/mips/mips-protos.h	2007-01-21 16:35:39.000000000 +0000@@ -205,5 +205,6 @@ extern void irix_asm_output_align (FILE *, unsigned); extern const char *current_section_name (void); extern unsigned int current_section_flags (void);+extern bool mips_use_ins_ext_p (rtx, rtx, rtx);  #endif /* ! GCC_MIPS_PROTOS_H */diff -burN gcc-4.0.2/gcc/config/mips/mips.c gcc-psp/gcc/config/mips/mips.c--- gcc-4.0.2/gcc/config/mips/mips.c	2005-05-08 12:56:53.000000000 +0100+++ gcc-psp/gcc/config/mips/mips.c	2007-01-21 16:42:40.000000000 +0000@@ -150,6 +150,15 @@   MIPS_DF_FTYPE_DF,   MIPS_DF_FTYPE_DF_DF, +  /* For the Sony ALLEGREX.  */+  MIPS_SI_FTYPE_QI,+  MIPS_SI_FTYPE_HI,+  MIPS_SI_FTYPE_SI,+  MIPS_SI_FTYPE_SI_SI,+  MIPS_VOID_FTYPE_VOID,+  MIPS_VOID_FTYPE_SI_SI,+  MIPS_SI_FTYPE_SF,+   /* The last type.  */   MIPS_MAX_FTYPE_MAX };@@ -162,6 +171,10 @@      operands 1 and above.  */   MIPS_BUILTIN_DIRECT, +  /* The builtin corresponds directly to an .md pattern.  There is no return+     value and the arguments are mapped to operands 0 and above.  */+  MIPS_BUILTIN_DIRECT_NO_TARGET,+   /* The builtin corresponds to a comparison instruction followed by      a mips_cond_move_tf_ps pattern.  The first two arguments are the      values to compare and the second two arguments are the vector@@ -185,7 +198,12 @@   MIPS_BUILTIN_CMP_LOWER,    /* As above, but the instruction only sets a single $fcc register.  */-  MIPS_BUILTIN_CMP_SINGLE+  MIPS_BUILTIN_CMP_SINGLE,++  /* The builtin corresponds to the ALLEGREX cache instruction.  Operand 0+     is the function code (must be less than 32) and operand 1 is the base+     address.  */+  MIPS_BUILTIN_CACHE };  /* Invokes MACRO (COND) for each c.cond.fmt condition.  */@@ -361,13 +379,14 @@ static rtx mips_prepare_builtin_target (enum insn_code, unsigned int, rtx); static rtx mips_expand_builtin (tree, rtx, rtx, enum machine_mode, int); static void mips_init_builtins (void);-static rtx mips_expand_builtin_direct (enum insn_code, rtx, tree);+static rtx mips_expand_builtin_direct (enum insn_code, rtx, tree, bool); static rtx mips_expand_builtin_movtf (enum mips_builtin_type, 				      enum insn_code, enum mips_fp_condition, 				      rtx, tree); static rtx mips_expand_builtin_compare (enum mips_builtin_type, 					enum insn_code, enum mips_fp_condition, 					rtx, tree);+static rtx mips_expand_builtin_cache (enum insn_code icode, rtx, tree);  /* Structure to be filled in by compute_frame_size with register    save masks, and offsets for the current function.  */@@ -553,6 +572,7 @@ const char *mips_tune_string;   /* for -mtune=<xxx> */ const char *mips_isa_string;	/* for -mips{1,2,3,4} */ const char *mips_abi_string;	/* for -mabi={32,n32,64,eabi} */+const char *mips_preferred_stack_boundary_string;  /* Whether we are generating mips16 hard float code.  In mips16 mode    we always set TARGET_SOFT_FLOAT; this variable is nonzero if@@ -560,6 +580,9 @@    should arrange to call mips32 hard floating point code.  */ int mips16_hard_float; +unsigned int mips_preferred_stack_boundary;+unsigned int mips_preferred_stack_align;+ const char *mips_cache_flush_func = CACHE_FLUSH_FUNC;  /* Holds string <X> if -mfix-vr4130<X> was passed on the command line.  */@@ -673,6 +696,7 @@    /* MIPS II */   { "r6000", PROCESSOR_R6000, 2 },+  { "allegrex", PROCESSOR_ALLEGREX, 2 },    /* MIPS III */   { "r4000", PROCESSOR_R4000, 3 },@@ -3969,6 +3993,38 @@   return true; } +/* Return true if (zero_extract OP SIZE POSITION) can be used as the+   source of an "ext" instruction or the destination of an "ins"+   instruction.  OP must be a register operand and the following+   conditions must hold:++     0 <= POSITION < GET_MODE_BITSIZE (GET_MODE (op))+     0 < SIZE <= GET_MODE_BITSIZE (GET_MODE (op))+     0 < POSITION + SIZE <= GET_MODE_BITSIZE (GET_MODE (op))++   Also reject lengths equal to a word as they are better handled+   by the move patterns.  */++bool+mips_use_ins_ext_p (rtx op, rtx size, rtx position)+{+  HOST_WIDE_INT len, pos;++  if (!ISA_HAS_EXT_INS+      || !register_operand (op, VOIDmode)+      || GET_MODE_BITSIZE (GET_MODE (op)) > BITS_PER_WORD)+    return false;++  len = INTVAL (size);+  pos = INTVAL (position);+  +  if (len <= 0 || len >= GET_MODE_BITSIZE (GET_MODE (op)) +      || pos < 0 || pos + len > GET_MODE_BITSIZE (GET_MODE (op)))+    return false;++  return true;+}+ /* Set up globals to generate code for the ISA or processor    described by INFO.  */ @@ -4509,6 +4565,22 @@       mips_lo_relocs[SYMBOL_GOTOFF_LOADGP] = "%lo(%neg(%gp_rel(";     } +  /* Validate -mpreferred-stack-boundary= value, or provide default.+     The default of 128-bit is for newABI else 64-bit.  */+  mips_preferred_stack_boundary = (TARGET_NEWABI ? 128 : 64);+  mips_preferred_stack_align = (TARGET_NEWABI ? 16 : 8);+  if (mips_preferred_stack_boundary_string)+    {+      i = atoi (mips_preferred_stack_boundary_string);+      if (i < 2 || i > 12)+	error ("-mpreferred-stack-boundary=%d is not between 2 and 12", i);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产在线精品视频| 色哟哟在线观看一区二区三区| 精品999久久久| 欧美在线免费视屏| 成人丝袜18视频在线观看| 免费的成人av| 日本一区二区免费在线| 日韩精品一区二区三区视频在线观看 | 国产日韩精品视频一区| 欧美精品久久99| 在线亚洲一区二区| 91亚洲资源网| va亚洲va日韩不卡在线观看| 国产伦精品一区二区三区免费迷| 日韩电影免费在线观看网站| 亚洲国产精品久久不卡毛片| 亚洲欧美韩国综合色| 中文字幕日本不卡| 综合在线观看色| 国产色婷婷亚洲99精品小说| 久久夜色精品一区| 久久久亚洲精品一区二区三区| 欧美一区二区福利在线| 欧美日韩一区二区三区在线看 | 亚洲国产一区二区a毛片| 亚洲视频在线一区| 伊人夜夜躁av伊人久久| 亚洲色图欧美偷拍| 亚洲欧美在线视频观看| 亚洲欧洲国产日本综合| 亚洲视频你懂的| 一区二区三区在线视频免费观看| 亚洲人成亚洲人成在线观看图片| 国产精品久久久久久久久久久免费看| 欧美韩国日本综合| 欧美激情综合在线| 国产精品国产a| 亚洲精品国产视频| 亚洲国产视频一区二区| 日日夜夜一区二区| 久久成人精品无人区| 国产精品一区二区久久不卡| 岛国av在线一区| 色狠狠综合天天综合综合| 欧美日韩在线精品一区二区三区激情| 欧美视频一区二区在线观看| 制服.丝袜.亚洲.中文.综合| 日韩精品一区二区在线观看| 亚洲国产精品av| 亚洲啪啪综合av一区二区三区| 一区二区三区四区高清精品免费观看 | 色综合夜色一区| 欧美日本国产一区| 欧美精品一区二区久久久| 精品sm在线观看| 国产精品久久久久久久第一福利| 国产精品亲子伦对白| 亚洲裸体在线观看| 亚洲一区二区三区美女| 欧美高清在线视频| 一区二区三区小说| 日韩高清一区二区| 丁香婷婷综合网| 欧美日韩中文另类| 国产夜色精品一区二区av| 亚洲天堂网中文字| 蜜臀av一区二区三区| 不卡的电影网站| 制服丝袜中文字幕一区| 国产欧美一区二区三区网站| 亚洲国产精品尤物yw在线观看| 麻豆精品视频在线观看| 色噜噜狠狠一区二区三区果冻| 国产亚洲美州欧州综合国| 午夜精品久久久久久久99樱桃| 成人免费不卡视频| 精品欧美乱码久久久久久| 亚洲成a人v欧美综合天堂| 成人黄色电影在线| 久久综合精品国产一区二区三区| 亚洲成人综合在线| 91老司机福利 在线| 欧美激情在线看| 精品亚洲成a人| 4438x亚洲最大成人网| 亚洲综合一区在线| 97久久精品人人澡人人爽| 国产人伦精品一区二区| 久久99精品一区二区三区三区| 欧美日韩免费一区二区三区视频| 亚洲男人天堂av网| 99精品国产91久久久久久| 中文字幕乱码亚洲精品一区| 国产一区二区在线视频| 欧美成人a∨高清免费观看| 日韩影院免费视频| 欧美日韩激情一区二区三区| 一区二区三区蜜桃| 色天天综合久久久久综合片| 亚洲欧美在线高清| av一区二区不卡| 国产精品久久99| 成人av免费网站| 1024精品合集| youjizz国产精品| 中文字幕一区二区三区乱码在线| 成人免费视频免费观看| 国产精品高潮呻吟| 99久久婷婷国产| 日韩码欧中文字| 色屁屁一区二区| 亚洲国产毛片aaaaa无费看| 欧美在线制服丝袜| 婷婷综合另类小说色区| 欧美乱妇20p| 日本欧美加勒比视频| 日韩视频免费直播| 久久99精品一区二区三区| 久久久无码精品亚洲日韩按摩| 国产露脸91国语对白| 中文字幕精品综合| 91国产福利在线| 首页国产丝袜综合| 久久美女艺术照精彩视频福利播放| 国产一区二区精品久久99| 国产亚洲制服色| 97久久超碰精品国产| 亚洲高清不卡在线观看| 制服丝袜亚洲精品中文字幕| 久久99精品久久只有精品| 国产天堂亚洲国产碰碰| 粉嫩高潮美女一区二区三区| 亚洲色图制服丝袜| 欧美日韩国产精品成人| 久久福利视频一区二区| 国产农村妇女精品| 色婷婷综合中文久久一本| 婷婷成人综合网| 精品国产乱码久久久久久夜甘婷婷 | 亚洲男人天堂av网| 91麻豆精品国产91久久久资源速度| 男人的j进女人的j一区| 国产欧美一区二区三区网站| 91官网在线观看| 捆绑调教美女网站视频一区| 国产欧美日韩在线观看| 日本电影亚洲天堂一区| 久久成人免费网| 国产精品成人在线观看| 337p亚洲精品色噜噜噜| 成人综合在线视频| 亚洲成人在线免费| 国产日韩v精品一区二区| 精品视频资源站| 国产不卡在线视频| 午夜电影久久久| 国产精品天美传媒沈樵| 欧美日韩国产三级| 国产91在线观看丝袜| 丝袜亚洲另类丝袜在线| 国产清纯白嫩初高生在线观看91| 欧美亚一区二区| 国产成人精品一区二| 午夜精品免费在线观看| 中文幕一区二区三区久久蜜桃| 欧美日韩大陆一区二区| 成人免费毛片a| 人禽交欧美网站| 一区二区三区精品| 亚洲国产成人一区二区三区| 欧美一级久久久久久久大片| 色伊人久久综合中文字幕| 激情欧美一区二区| 性欧美大战久久久久久久久| 中文字幕一区视频| 久久久.com| 欧美成人精品二区三区99精品| 色欲综合视频天天天| 国产高清视频一区| 日韩激情视频在线观看| 亚洲六月丁香色婷婷综合久久 | 99精品欧美一区二区三区小说 | 亚洲成人免费在线| 亚洲色图.com| 久久精品一区二区三区av| 欧美精品成人一区二区三区四区| 99久久精品国产导航| 国产精品中文字幕日韩精品| 老司机精品视频导航| 日韩精彩视频在线观看| 亚洲国产乱码最新视频| 亚洲精品亚洲人成人网在线播放| 国产亚洲一区二区三区| 精品国产免费久久| 日韩欧美一区二区不卡| 制服丝袜在线91| 777奇米四色成人影色区| 欧美日韩国产在线观看| 欧美性色综合网| 在线精品视频免费观看|