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

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

?? spur.md

?? 這是完整的gcc源代碼
?? MD
?? 第 1 頁 / 共 3 頁
字號(hào):
;;- Machine description for SPUR chip for GNU C compiler;;   Copyright (C) 1988 Free Software Foundation, Inc.;; This file is part of GNU CC.;; GNU CC 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 1, or (at your option);; any later version.;; GNU CC 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 GNU CC; see the file COPYING.  If not, write to;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.;;- See file "rtl.def" for documentation on define_insn, match_*, et. al.;;- cpp macro #define NOTICE_UPDATE_CC in file tm.h handles condition code;;- updates for most instructions.;;- Operand classes for the register allocator:;; Compare instructions.;; This pattern is used for generating an "insn";; which does just a compare and sets a (fictitious) condition code.;; The actual SPUR insns are compare-and-conditional-jump.;; The define_peephole's below recognize the combinations of;; compares and jumps, and output each pair as a single assembler insn.;; Put cmpsi first among compare insns so it matches two CONST_INT operands.;; This controls RTL generation and register allocation.(define_insn "cmpsi"  [(set (cc0)	(compare (match_operand:SI 0 "nonmemory_operand" "rK")		 (match_operand:SI 1 "nonmemory_operand" "rK")))]  ""  "*{  cc_status.value1 = operands[0], cc_status.value2 = operands[1];  return \"\";}");; Put tstsi first among test insns so it matches a CONST_INT operand.;; We have to have this because cse can optimize the previous pattern;; into this one.(define_insn "tstsi"  [(set (cc0)	(match_operand:SI 0 "register_operand" "r"))]  ""  "*{  cc_status.value1 = operands[0], cc_status.value2 = const0_rtx;  return \"\";}");; These control RTL generation for conditional jump insns;; and match them for register allocation.(define_insn "beq"  [(set (pc)	(if_then_else (eq (cc0)			  (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"eq\", \"eq\", \"ne\", \"ne\"); ")(define_insn "bne"  [(set (pc)	(if_then_else (ne (cc0)			  (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"ne\", \"ne\", \"eq\", \"eq\"); ")(define_insn "bgt"  [(set (pc)	(if_then_else (gt (cc0)			  (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"gt\", \"lt\", \"le\", \"ge\"); ")(define_insn "bgtu"  [(set (pc)	(if_then_else (gtu (cc0)			   (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"ugt\", \"ult\", \"ule\", \"uge\"); ")(define_insn "blt"  [(set (pc)	(if_then_else (lt (cc0)			  (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"lt\", \"gt\", \"ge\", \"le\"); ")(define_insn "bltu"  [(set (pc)	(if_then_else (ltu (cc0)			   (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"ult\", \"ugt\", \"uge\", \"ule\"); ")(define_insn "bge"  [(set (pc)	(if_then_else (ge (cc0)			  (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"ge\", \"le\", \"lt\", \"gt\"); ")(define_insn "bgeu"  [(set (pc)	(if_then_else (geu (cc0)			   (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"uge\", \"ule\", \"ult\", \"ugt\"); ")(define_insn "ble"  [(set (pc)	(if_then_else (le (cc0)			  (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"le\", \"ge\", \"gt\", \"lt\"); ")(define_insn "bleu"  [(set (pc)	(if_then_else (leu (cc0)			   (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "* return output_compare (operands, \"ule\", \"uge\", \"ugt\", \"ult\"); ");; These match inverted jump insns for register allocation.(define_insn ""  [(set (pc)	(if_then_else (eq (cc0)			  (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"ne\", \"ne\", \"eq\", \"eq\"); ")(define_insn ""  [(set (pc)	(if_then_else (ne (cc0)			  (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"eq\", \"eq\", \"ne\", \"ne\"); ")(define_insn ""  [(set (pc)	(if_then_else (gt (cc0)			  (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"le\", \"ge\", \"gt\", \"lt\"); ")(define_insn ""  [(set (pc)	(if_then_else (gtu (cc0)			   (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"ule\", \"uge\", \"ugt\", \"ult\"); ")(define_insn ""  [(set (pc)	(if_then_else (lt (cc0)			  (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"ge\", \"le\", \"lt\", \"gt\"); ")(define_insn ""  [(set (pc)	(if_then_else (ltu (cc0)			   (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"uge\", \"ule\", \"ult\", \"ugt\"); ")(define_insn ""  [(set (pc)	(if_then_else (ge (cc0)			  (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"lt\", \"gt\", \"ge\", \"le\"); ")(define_insn ""  [(set (pc)	(if_then_else (geu (cc0)			   (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"ult\", \"ugt\", \"uge\", \"ule\"); ")(define_insn ""  [(set (pc)	(if_then_else (le (cc0)			  (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"gt\", \"lt\", \"le\", \"ge\"); ")(define_insn ""  [(set (pc)	(if_then_else (leu (cc0)			   (const_int 0))		      (pc)		      (label_ref (match_operand 0 "" ""))))]  ""  "* return output_compare (operands, \"ugt\", \"ult\", \"ule\", \"uge\"); ");; Move instructions(define_insn "movsi"  [(set (match_operand:SI 0 "general_operand" "=r,m")	(match_operand:SI 1 "general_operand" "rmi,rJ"))]  ""  "*{  if (GET_CODE (operands[0]) == MEM)    return \"st_32 %r1,%0\";  if (GET_CODE (operands[1]) == MEM)    return \"ld_32 %0,%1\;nop\";  if (GET_CODE (operands[1]) == REG)    return \"add_nt %0,%1,$0\";  if (GET_CODE (operands[1]) == SYMBOL_REF && operands[1]->unchanging)    return \"add_nt %0,r24,$(%1-0b)\";  return \"add_nt %0,r0,%1\";}")(define_insn ""  [(set (match_operand:SI 0 "register_operand" "=r")	(mem:SI (plus:SI (match_operand:SI 1 "register_operand" "r")			 (match_operand:SI 2 "register_operand" "r"))))]  ""  "ld_32 %0,%1,%2\;nop");; Generate insns for moving single bytes.(define_expand "movqi"  [(set (match_operand:QI 0 "general_operand" "")	(match_operand:QI 1 "general_operand" ""))]  ""  "{  if (GET_CODE (operands[0]) == MEM && GET_CODE (operands[1]) == MEM)    operands[1] = copy_to_reg (operands[1]);  if (GET_CODE (operands[1]) == MEM)    {      rtx tem = gen_reg_rtx (SImode);      rtx addr = force_reg (SImode, XEXP (operands[1], 0));      rtx subreg;      emit_move_insn (tem, gen_rtx (MEM, SImode, addr));      if (GET_CODE (operands[0]) == SUBREG)	subreg = gen_rtx (SUBREG, SImode, SUBREG_REG (operands[0]),			  SUBREG_WORD (operands[0]));      else	subreg = gen_rtx (SUBREG, SImode, operands[0], 0);      emit_insn (gen_rtx (SET, VOIDmode, subreg,			  gen_rtx (ZERO_EXTRACT, SImode, tem,				   gen_rtx (CONST_INT, VOIDmode, 8),				   addr)));    }  else if (GET_CODE (operands[0]) == MEM)    {      rtx tem = gen_reg_rtx (SImode);      rtx addr = force_reg (SImode, XEXP (operands[0], 0));      rtx subreg;      emit_move_insn (tem, gen_rtx (MEM, SImode, addr));      if (! CONSTANT_ADDRESS_P (operands[1]))	{	  if (GET_CODE (operands[1]) == SUBREG)	    subreg = gen_rtx (SUBREG, SImode, SUBREG_REG (operands[1]),			      SUBREG_WORD (operands[1]));	  else	    subreg = gen_rtx (SUBREG, SImode, operands[1], 0);	}      emit_insn (gen_rtx (SET, VOIDmode,			  gen_rtx (ZERO_EXTRACT, SImode, tem,				   gen_rtx (CONST_INT, VOIDmode, 8),				   addr),			  subreg));      emit_move_insn (gen_rtx (MEM, SImode, addr), tem);    }  else    {      emit_insn (gen_rtx (SET, VOIDmode, operands[0], operands[1]));    }  DONE;}");; Recognize insns generated for moving single bytes.(define_insn ""  [(set (match_operand:QI 0 "general_operand" "=r,m")	(match_operand:QI 1 "general_operand" "rmi,r"))]  ""  "*{  if (GET_CODE (operands[0]) == MEM)    return \"st_32 %1,%0\";  if (GET_CODE (operands[1]) == MEM)    return \"ld_32 %0,%1\;nop\";  if (GET_CODE (operands[1]) == REG)    return \"add_nt %0,%1,$0\";  return \"add_nt %0,r0,%1\";}")(define_insn ""  [(set (match_operand:SI 0 "register_operand" "=r")	(zero_extract:SI (match_operand:SI 1 "register_operand" "r")			 (const_int 8)			 (match_operand:SI 2 "nonmemory_operand" "rI")))]  ""  "extract %0,%1,%2")(define_insn ""  [(set (zero_extract:SI (match_operand:SI 0 "register_operand" "+r")			 (const_int 8)			 (match_operand:SI 1 "nonmemory_operand" "rI"))	(match_operand:SI 2 "nonmemory_operand" "ri"))]  ""  "wr_insert %1\;insert %0,%0,%2");; Constant propagation can optimize the previous pattern into this pattern.;[Not any more.  It could when the position-operand contains a MULT.];(define_insn "";  [(set (zero_extract:QI (match_operand:SI 0 "register_operand" "+r");			 (const_int 8)

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本aⅴ免费视频一区二区三区| 久久奇米777| www.日韩在线| 成人免费电影视频| 国产精品综合一区二区三区| 精品一区二区三区在线播放视频 | 国产精品国产精品国产专区不蜜| 久久久亚洲国产美女国产盗摄| 欧美电视剧在线看免费| 欧美大片在线观看一区二区| 日韩一区在线看| 亚洲欧洲成人自拍| 亚洲黄色av一区| 一区二区视频免费在线观看| 亚洲综合在线五月| 亚洲电影视频在线| 免费成人av在线播放| 精品一区二区三区在线观看| 国产高清在线精品| 91麻豆福利精品推荐| 欧美日韩国产精品成人| 欧美一区二区三区日韩| 久久综合一区二区| 亚洲日本一区二区| 五月天网站亚洲| 国产精品一区在线| 色欧美片视频在线观看| 欧美日韩免费视频| 久久午夜免费电影| 一区二区三区欧美| 麻豆极品一区二区三区| 国产精品自拍一区| 欧洲一区二区av| 久久久欧美精品sm网站| 亚洲私人黄色宅男| 美洲天堂一区二卡三卡四卡视频| 国产成人a级片| 欧美日韩一区中文字幕| 国产日韩欧美在线一区| 午夜一区二区三区在线观看| 韩国v欧美v日本v亚洲v| 欧美亚洲动漫制服丝袜| 久久久久久99久久久精品网站| 一区二区三区在线免费播放| 久久国产精品色婷婷| 一本高清dvd不卡在线观看| 欧美xxxxxxxx| 亚洲电影你懂得| 成人avav在线| 精品国产伦一区二区三区观看方式 | 91免费在线看| 在线免费一区三区| 久久久五月婷婷| 婷婷成人综合网| 91伊人久久大香线蕉| www久久久久| 午夜av一区二区| 91丝袜国产在线播放| 久久伊人蜜桃av一区二区| 丝袜亚洲精品中文字幕一区| 亚洲综合一区二区精品导航| 在线欧美日韩精品| 日本不卡中文字幕| 中文在线资源观看网站视频免费不卡| 成人v精品蜜桃久久一区| 亚洲精品高清视频在线观看| 欧美性感一类影片在线播放| 美女视频黄 久久| 国产精品乱码一区二区三区软件| 在线亚洲一区二区| 国产一区二区三区在线看麻豆| 国产精品另类一区| 91.麻豆视频| www.亚洲色图.com| 久久99久久99| 一区二区高清在线| 2020国产精品久久精品美国| 欧洲人成人精品| 国产一区二区精品久久91| 国产乱码字幕精品高清av| 亚洲愉拍自拍另类高清精品| 欧美精品一区二区精品网| 91国内精品野花午夜精品| 国产高清在线精品| 日本不卡中文字幕| 一区二区三区av电影| 国产偷国产偷亚洲高清人白洁 | 久久精品国产精品亚洲综合| 日韩美女视频一区| 久久嫩草精品久久久精品| 欧美日韩精品二区第二页| 成人av在线资源| 黄网站免费久久| 日韩国产欧美在线观看| 亚洲靠逼com| 国产精品人成在线观看免费| 欧美xingq一区二区| 欧美高清dvd| 精品视频一区二区不卡| 99re热这里只有精品视频| 国产在线不卡视频| 久久99在线观看| 日本va欧美va精品发布| 午夜一区二区三区在线观看| 亚洲麻豆国产自偷在线| 中文字幕av不卡| 国产欧美日韩不卡免费| 欧美刺激脚交jootjob| 欧美日韩电影在线| 欧美日韩国产首页| 欧美四级电影网| 欧美视频完全免费看| 欧美亚洲一区三区| 色噜噜偷拍精品综合在线| 成人av资源网站| 本田岬高潮一区二区三区| 不卡视频在线观看| 97久久精品人人做人人爽50路| 国产成都精品91一区二区三 | 久久黄色级2电影| 日本免费在线视频不卡一不卡二| 亚洲午夜一区二区| 亚洲18女电影在线观看| 亚洲成av人片在线观看| 午夜激情久久久| 日韩黄色小视频| 日本不卡一二三区黄网| 理论片日本一区| 国产麻豆91精品| 丁香五精品蜜臀久久久久99网站| 成人综合激情网| 色综合久久综合| 欧美日本精品一区二区三区| 亚洲综合色自拍一区| 日韩激情在线观看| 国产一区二区三区四区五区入口 | 日韩成人精品在线观看| 久久91精品久久久久久秒播| 国产乱码精品1区2区3区| 不卡一区二区三区四区| 精品视频资源站| 欧美成人高清电影在线| 中日韩免费视频中文字幕| 亚洲最大成人网4388xx| 久久综合综合久久综合| 成人性视频网站| 欧美天堂一区二区三区| 2023国产精品| 自拍偷拍欧美激情| 亚洲第一综合色| 美女视频网站黄色亚洲| 99精品桃花视频在线观看| 91国偷自产一区二区开放时间| 欧美性欧美巨大黑白大战| 色综合久久久久久久久| 日韩欧美国产一区二区在线播放| 国产午夜亚洲精品理论片色戒| 欧美高清在线精品一区| 国产精品久久久久婷婷| 午夜精品成人在线视频| 国产乱子伦视频一区二区三区| 成人国产免费视频| 99精品热视频| 久久亚洲免费视频| 亚洲人成亚洲人成在线观看图片| 亚洲自拍都市欧美小说| 日本午夜精品视频在线观看| 99久久精品国产一区| 91精品午夜视频| 日本一区二区三区四区在线视频| 国产精品乱码一区二三区小蝌蚪| 亚洲一二三四区| 国产成人午夜视频| 一本大道综合伊人精品热热| 国产欧美一区二区精品婷婷| 亚洲va中文字幕| 高清不卡在线观看av| 成年人网站91| 日本一区二区三区免费乱视频 | 91日韩精品一区| 制服丝袜在线91| 日本一区二区三区免费乱视频| 三级久久三级久久久| 99精品久久99久久久久| 精品日韩在线观看| 有码一区二区三区| 国产永久精品大片wwwapp | 亚洲精品一二三| 六月丁香婷婷色狠狠久久| 色哟哟日韩精品| 亚洲免费高清视频在线| 国产在线精品免费av| 欧美剧在线免费观看网站| 国产精品久久影院| 欧美一区二区大片| 亚洲国产精品一区二区www在线| 国产.欧美.日韩| 日韩视频一区二区三区在线播放 | 国产午夜精品美女毛片视频| 国产一区二区三区在线观看免费视频 |