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

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

?? spur.md

?? 這是完整的gcc源代碼
?? MD
?? 第 1 頁 / 共 3 頁
字號:
;;- 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)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线看片a免费观看| 91亚洲国产成人精品一区二三| 国产精品天天看| 欧美精品一区二区三区视频| 这里只有精品视频在线观看| 91精选在线观看| 日韩欧美在线不卡| 日韩精品一区二| 精品99999| 中文字幕亚洲一区二区av在线| 国产婷婷色一区二区三区四区| 欧美国产日本视频| 自拍偷拍国产精品| 婷婷久久综合九色国产成人| 日韩av中文在线观看| 国产一区欧美一区| eeuss鲁片一区二区三区在线观看| 91性感美女视频| 欧美理论电影在线| 欧美精品一区二区高清在线观看| 久久久久国产免费免费| 1区2区3区欧美| 丝袜美腿亚洲一区二区图片| 国产一区二区女| 色综合天天综合网天天狠天天| 欧美日韩一卡二卡| 久久免费偷拍视频| 一区二区三区自拍| 久草在线在线精品观看| 成人av在线资源网站| 欧美日韩在线不卡| 国产亚洲欧美色| 五月婷婷久久丁香| 成人av片在线观看| 日韩亚洲欧美一区| 亚洲黄色尤物视频| 国产精品一区三区| 欧美日本一道本在线视频| 国产日产欧美一区二区三区 | 久久精品国产精品亚洲综合| 国产成人精品免费看| 欧美巨大另类极品videosbest| 欧美国产日韩一二三区| 日韩高清欧美激情| 91国模大尺度私拍在线视频| 久久综合九色综合欧美98| 日韩视频在线永久播放| 91免费国产视频网站| 欧美性色黄大片手机版| 亚洲国产精品国自产拍av| 麻豆国产欧美一区二区三区| 国模套图日韩精品一区二区 | 欧美日韩国产综合一区二区三区| 亚洲国产成人高清精品| 欧美成人免费网站| 国产成a人亚洲精品| 尤物av一区二区| 日韩一区二区三区高清免费看看| 经典一区二区三区| 国产精品久久久久久久久免费相片 | 成人性生交大片免费看在线播放| 亚洲丝袜美腿综合| 91精品国产91久久久久久一区二区 | 毛片一区二区三区| 中文一区一区三区高中清不卡| 一本色道久久加勒比精品| 日韩精品电影一区亚洲| 国产精品三级久久久久三级| 色菇凉天天综合网| 国产主播一区二区三区| 一区二区激情小说| 久久夜色精品一区| 欧美这里有精品| 国产精品综合在线视频| 国产在线一区二区综合免费视频| 亚洲欧美电影院| 欧美精品一区二区三区蜜桃| 欧美午夜免费电影| 成人免费高清在线| 久久超碰97中文字幕| 曰韩精品一区二区| 国产精品女人毛片| 久久综合久久鬼色| 制服丝袜在线91| 91偷拍与自偷拍精品| 国产一区二三区好的| 亚洲一区二区成人在线观看| 欧美韩日一区二区三区四区| 精品久久国产字幕高潮| 欧美特级限制片免费在线观看| 国产91精品欧美| 韩国av一区二区三区| 日韩国产精品久久久久久亚洲| **性色生活片久久毛片| 国产日韩精品一区| 久久亚洲一区二区三区四区| 欧美日韩免费不卡视频一区二区三区| 成人av先锋影音| 国产一区二区精品久久| 精品综合久久久久久8888| 亚洲成在人线免费| 一区二区三区在线免费视频| 亚洲日本在线看| 日韩毛片高清在线播放| 日本一区二区三区四区在线视频| 欧美大片国产精品| 91精品国产色综合久久ai换脸| 一本大道av一区二区在线播放| 成人免费观看男女羞羞视频| 国产福利精品一区| 国产999精品久久| 风间由美性色一区二区三区| 国产精品99久| 懂色av中文一区二区三区| 国产成人精品免费视频网站| 国产成人免费在线观看| 成人毛片老司机大片| av一区二区三区在线| 91色九色蝌蚪| 欧美伊人久久久久久午夜久久久久| 一本一道综合狠狠老| 欧美亚洲一区二区在线| 欧美日韩免费电影| 日韩一区二区在线观看视频 | 色久优优欧美色久优优| 欧洲视频一区二区| 欧美男人的天堂一二区| 欧美一区二区二区| 欧美tickle裸体挠脚心vk| 国产日产亚洲精品系列| 亚洲天堂精品在线观看| 午夜精品福利视频网站| 狠狠色丁香久久婷婷综合_中| 国产一区二区三区在线观看精品| 成人黄色在线视频| 欧美色图第一页| 日韩欧美专区在线| 国产精品久久一卡二卡| 亚洲在线视频一区| 激情综合色丁香一区二区| 丁香亚洲综合激情啪啪综合| 色av成人天堂桃色av| 欧美一区二区三区日韩视频| 国产日产欧美一区二区视频| 亚洲最快最全在线视频| 日本不卡的三区四区五区| 成人免费视频播放| 欧美日韩国产一区| 国产日韩欧美麻豆| 亚洲成人综合视频| 国产成人超碰人人澡人人澡| 欧美私人免费视频| 国产日韩成人精品| 日韩av电影天堂| 97精品视频在线观看自产线路二| 欧美一区二区三级| 亚洲美女屁股眼交| 国产伦精一区二区三区| 欧美在线视频日韩| 欧美激情自拍偷拍| 人妖欧美一区二区| 在线一区二区三区四区| 久久日韩粉嫩一区二区三区| 亚洲国产裸拍裸体视频在线观看乱了| 国产一区二区三区高清播放| 欧美日韩一本到| 中文字幕在线一区二区三区| 久久成人久久爱| 欧美日韩大陆一区二区| 亚洲欧美另类久久久精品| 国产精品一区二区男女羞羞无遮挡 | 成人小视频在线| 欧美一级二级在线观看| 亚洲精品免费在线观看| 国产91精品入口| www精品美女久久久tv| 日本中文字幕不卡| 欧美色倩网站大全免费| 18成人在线观看| 国产成人三级在线观看| 精品奇米国产一区二区三区| 午夜在线电影亚洲一区| 色8久久精品久久久久久蜜 | 久久新电视剧免费观看| 日韩综合在线视频| 欧美日韩一区二区在线视频| 亚洲视频在线一区二区| 99久久综合国产精品| 国产精品美女久久久久久2018| 国产一区二区在线电影| 欧美sm美女调教| 久久超级碰视频| 日韩免费高清电影| 日本欧美加勒比视频| 欧美二区乱c少妇| 日本伊人色综合网| 日韩一区二区精品葵司在线| 蜜臀国产一区二区三区在线播放 | 91国模大尺度私拍在线视频| 亚洲欧美日韩中文播放|