⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rs6000.md

📁 gcc库的原代码,对编程有很大帮助.
💻 MD
📖 第 1 页 / 共 5 页
字号:
   (clobber (match_scratch:SI 3 "=r"))]  "! TARGET_POWERPC"  "{sf.|subfc.} %3,%2,%1"  [(set_attr "type" "compare")])(define_insn ""  [(set (match_operand:CC 0 "cc_reg_operand" "=x")	(compare:CC (minus:SI (match_operand:SI 1 "gpc_reg_operand" "r")			      (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (clobber (match_scratch:SI 3 "=r"))]  "TARGET_POWERPC"  "subf. %3,%2,%1"  [(set_attr "type" "compare")])(define_insn ""  [(set (match_operand:CC 3 "cc_reg_operand" "=x")	(compare:CC (minus:SI (match_operand:SI 1 "gpc_reg_operand" "r")			      (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (set (match_operand:SI 0 "gpc_reg_operand" "=r")	(minus:SI (match_dup 1) (match_dup 2)))]  "! TARGET_POWERPC"  "{sf.|subfc.} %0,%2,%1"  [(set_attr "type" "compare")])(define_insn ""  [(set (match_operand:CC 3 "cc_reg_operand" "=x")	(compare:CC (minus:SI (match_operand:SI 1 "gpc_reg_operand" "r")			      (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (set (match_operand:SI 0 "gpc_reg_operand" "=r")	(minus:SI (match_dup 1) (match_dup 2)))]  "TARGET_POWERPC"  "subf. %0,%2,%1"  [(set_attr "type" "compare")])(define_expand "subsi3"  [(set (match_operand:SI 0 "gpc_reg_operand" "")	(minus:SI (match_operand:SI 1 "reg_or_short_operand" "")		  (match_operand:SI 2 "reg_or_cint_operand" "")))]  ""  "{  if (GET_CODE (operands[2]) == CONST_INT)    {      emit_insn (gen_addsi3 (operands[0], operands[1],			     negate_rtx (SImode, operands[2])));      DONE;    }}");; For SMIN, SMAX, UMIN, and UMAX, we use DEFINE_EXPAND's that involve a doz[i];; instruction and some auxiliary computations.  Then we just have a single;; DEFINE_INSN for doz[i] and the define_splits to make them if made by;; combine.(define_expand "sminsi3"  [(set (match_dup 3)	(if_then_else:SI (gt:SI (match_operand:SI 1 "gpc_reg_operand" "")				(match_operand:SI 2 "reg_or_short_operand" ""))			 (const_int 0)			 (minus:SI (match_dup 2) (match_dup 1))))   (set (match_operand:SI 0 "gpc_reg_operand" "")	(minus:SI (match_dup 2) (match_dup 3)))]  "TARGET_POWER"  "{ operands[3] = gen_reg_rtx (SImode); }")(define_split  [(set (match_operand:SI 0 "gpc_reg_operand" "")	(smin:SI (match_operand:SI 1 "gpc_reg_operand" "")		 (match_operand:SI 2 "reg_or_short_operand" "")))   (clobber (match_operand:SI 3 "gpc_reg_operand" ""))]  "TARGET_POWER"  [(set (match_dup 3)	(if_then_else:SI (gt:SI (match_dup 1) (match_dup 2))			 (const_int 0)			 (minus:SI (match_dup 2) (match_dup 1))))   (set (match_dup 0) (minus:SI (match_dup 2) (match_dup 3)))]  "")(define_expand "smaxsi3"  [(set (match_dup 3)	(if_then_else:SI (gt:SI (match_operand:SI 1 "gpc_reg_operand" "")				(match_operand:SI 2 "reg_or_short_operand" ""))			 (const_int 0)			 (minus:SI (match_dup 2) (match_dup 1))))   (set (match_operand:SI 0 "gpc_reg_operand" "")	(plus:SI (match_dup 3) (match_dup 1)))]  "TARGET_POWER"  "{ operands[3] = gen_reg_rtx (SImode); }")(define_split  [(set (match_operand:SI 0 "gpc_reg_operand" "")	(smax:SI (match_operand:SI 1 "gpc_reg_operand" "")		 (match_operand:SI 2 "reg_or_short_operand" "")))   (clobber (match_operand:SI 3 "gpc_reg_operand" ""))]  "TARGET_POWER"  [(set (match_dup 3)	(if_then_else:SI (gt:SI (match_dup 1) (match_dup 2))			 (const_int 0)			 (minus:SI (match_dup 2) (match_dup 1))))   (set (match_dup 0) (plus:SI (match_dup 3) (match_dup 1)))]  "")(define_expand "uminsi3"  [(set (match_dup 3) (xor:SI (match_operand:SI 1 "gpc_reg_operand" "")			      (match_dup 5)))   (set (match_dup 4) (xor:SI (match_operand:SI 2 "gpc_reg_operand" "")			      (match_dup 5)))   (set (match_dup 3) (if_then_else:SI (gt (match_dup 3) (match_dup 4))				       (const_int 0)				       (minus:SI (match_dup 4) (match_dup 3))))   (set (match_operand:SI 0 "gpc_reg_operand" "")	(minus:SI (match_dup 2) (match_dup 3)))]  "TARGET_POWER"  "{  operands[3] = gen_reg_rtx (SImode);  operands[4] = gen_reg_rtx (SImode);  operands[5] = GEN_INT (-2147483647 - 1);}")(define_expand "umaxsi3"  [(set (match_dup 3) (xor:SI (match_operand:SI 1 "gpc_reg_operand" "")			      (match_dup 5)))   (set (match_dup 4) (xor:SI (match_operand:SI 2 "gpc_reg_operand" "")			      (match_dup 5)))   (set (match_dup 3) (if_then_else:SI (gt (match_dup 3) (match_dup 4))				       (const_int 0)				       (minus:SI (match_dup 4) (match_dup 3))))   (set (match_operand:SI 0 "gpc_reg_operand" "")	(plus:SI (match_dup 3) (match_dup 1)))]  "TARGET_POWER"  "{  operands[3] = gen_reg_rtx (SImode);  operands[4] = gen_reg_rtx (SImode);  operands[5] = GEN_INT (-2147483647 - 1);}")(define_insn ""  [(set (match_operand:SI 0 "gpc_reg_operand" "=r")	(if_then_else:SI (gt (match_operand:SI 1 "gpc_reg_operand" "r")			     (match_operand:SI 2 "reg_or_short_operand" "rI"))			 (const_int 0)			 (minus:SI (match_dup 2) (match_dup 1))))]  "TARGET_POWER"  "doz%I2 %0,%1,%2")(define_insn ""  [(set (match_operand:CC 0 "cc_reg_operand" "=x")	(compare:CC	 (if_then_else:SI (gt (match_operand:SI 1 "gpc_reg_operand" "r")			      (match_operand:SI 2 "reg_or_short_operand" "rI"))			  (const_int 0)			  (minus:SI (match_dup 2) (match_dup 1)))	 (const_int 0)))   (clobber (match_scratch:SI 3 "=r"))]  "TARGET_POWER"  "doz%I2. %3,%1,%2"  [(set_attr "type" "delayed_compare")])(define_insn ""  [(set (match_operand:CC 3 "cc_reg_operand" "=x")	(compare:CC	 (if_then_else:SI (gt (match_operand:SI 1 "gpc_reg_operand" "r")			      (match_operand:SI 2 "reg_or_short_operand" "rI"))			  (const_int 0)			  (minus:SI (match_dup 2) (match_dup 1)))	 (const_int 0)))   (set (match_operand:SI 0 "gpc_reg_operand" "=r")	(if_then_else:SI (gt (match_dup 1) (match_dup 2))			 (const_int 0)			 (minus:SI (match_dup 2) (match_dup 1))))]  "TARGET_POWER"  "doz%I2. %0,%1,%2"  [(set_attr "type" "delayed_compare")]);; We don't need abs with condition code because such comparisons should;; never be done.(define_expand "abssi2"  [(set (match_operand:SI 0 "gpc_reg_operand" "")	(abs:SI (match_operand:SI 1 "gpc_reg_operand" "")))]  ""  "{  if (!TARGET_POWER)    {      emit_insn (gen_abssi2_nopower (operands[0], operands[1]));      DONE;    }}")(define_insn "abssi2_power"  [(set (match_operand:SI 0 "gpc_reg_operand" "=r")	(abs:SI (match_operand:SI 1 "gpc_reg_operand" "r")))]  "TARGET_POWER"  "abs %0,%1")(define_insn "abssi2_nopower"  [(set (match_operand:SI 0 "gpc_reg_operand" "=&r,r")	(abs:SI (match_operand:SI 1 "gpc_reg_operand" "r,0")))   (clobber (match_scratch:SI 2 "=&r,&r"))]  "!TARGET_POWER"  "*{  return (TARGET_POWERPC)    ? \"{srai|srawi} %2,%1,31\;xor %0,%2,%1\;subf %0,%2,%0\"    : \"{srai|srawi} %2,%1,31\;xor %0,%2,%1\;{sf|subfc} %0,%2,%0\";}"  [(set_attr "length" "12")])(define_split  [(set (match_operand:SI 0 "gpc_reg_operand" "=&r,r")	(abs:SI (match_operand:SI 1 "gpc_reg_operand" "r,0")))   (clobber (match_scratch:SI 2 "=&r,&r"))]  "!TARGET_POWER && reload_completed"  [(set (match_dup 2) (ashiftrt:SI (match_dup 1) (const_int 31)))   (set (match_dup 0) (xor:SI (match_dup 2) (match_dup 1)))   (set (match_dup 0) (minus:SI (match_dup 2) (match_dup 0)))]  "")(define_insn ""  [(set (match_operand:SI 0 "gpc_reg_operand" "=r")	(neg:SI (abs:SI (match_operand:SI 1 "gpc_reg_operand" "r"))))]  "TARGET_POWER"  "nabs %0,%1")(define_insn ""  [(set (match_operand:SI 0 "gpc_reg_operand" "=&r,r")	(neg:SI (abs:SI (match_operand:SI 1 "gpc_reg_operand" "r,0"))))   (clobber (match_scratch:SI 2 "=&r,&r"))]  "!TARGET_POWER"  "*{  return (TARGET_POWERPC)    ? \"{srai|srawi} %2,%1,31\;xor %0,%2,%1\;subf %0,%0,%2\"    : \"{srai|srawi} %2,%1,31\;xor %0,%2,%1\;{sf|subfc} %0,%0,%2\";}"  [(set_attr "length" "12")])(define_split  [(set (match_operand:SI 0 "gpc_reg_operand" "=&r,r")	(neg:SI (abs:SI (match_operand:SI 1 "gpc_reg_operand" "r,0"))))   (clobber (match_scratch:SI 2 "=&r,&r"))]  "!TARGET_POWER && reload_completed"  [(set (match_dup 2) (ashiftrt:SI (match_dup 1) (const_int 31)))   (set (match_dup 0) (xor:SI (match_dup 2) (match_dup 1)))   (set (match_dup 0) (minus:SI (match_dup 0) (match_dup 2)))]  "")(define_insn "negsi2"  [(set (match_operand:SI 0 "gpc_reg_operand" "=r")	(neg:SI (match_operand:SI 1 "gpc_reg_operand" "r")))]  ""  "neg %0,%1")(define_insn ""  [(set (match_operand:CC 0 "cc_reg_operand" "=x")	(compare:CC (neg:SI (match_operand:SI 1 "gpc_reg_operand" "r"))		    (const_int 0)))   (clobber (match_scratch:SI 2 "=r"))]  ""  "neg. %2,%1"  [(set_attr "type" "compare")])(define_insn ""  [(set (match_operand:CC 2 "cc_reg_operand" "=x")	(compare:CC (neg:SI (match_operand:SI 1 "gpc_reg_operand" "r"))		    (const_int 0)))   (set (match_operand:SI 0 "gpc_reg_operand" "=r")	(neg:SI (match_dup 1)))]  ""  "neg. %0,%1"  [(set_attr "type" "compare")])(define_insn "ffssi2"  [(set (match_operand:SI 0 "gpc_reg_operand" "=&r")	(ffs:SI (match_operand:SI 1 "gpc_reg_operand" "r")))]  ""  "neg %0,%1\;and %0,%0,%1\;{cntlz|cntlzw} %0,%0\;{sfi|subfic} %0,%0,32"  [(set_attr "length" "16")])(define_expand "mulsi3"  [(use (match_operand:SI 0 "gpc_reg_operand" ""))   (use (match_operand:SI 1 "gpc_reg_operand" ""))   (use (match_operand:SI 2 "reg_or_short_operand" ""))]  ""  "{  if (TARGET_POWER)    emit_insn (gen_mulsi3_mq (operands[0], operands[1], operands[2]));  else    emit_insn (gen_mulsi3_no_mq (operands[0], operands[1], operands[2]));  DONE;}")(define_insn "mulsi3_mq"  [(set (match_operand:SI 0 "gpc_reg_operand" "=r,r")	(mult:SI (match_operand:SI 1 "gpc_reg_operand" "%r,r")		 (match_operand:SI 2 "reg_or_short_operand" "r,I")))   (clobber (match_scratch:SI 3 "=q,q"))]  "TARGET_POWER"  "@   {muls|mullw} %0,%1,%2   {muli|mulli} %0,%1,%2"   [(set_attr "type" "imul")])(define_insn "mulsi3_no_mq"  [(set (match_operand:SI 0 "gpc_reg_operand" "=r,r")	(mult:SI (match_operand:SI 1 "gpc_reg_operand" "%r,r")		 (match_operand:SI 2 "reg_or_short_operand" "r,I")))]  "! TARGET_POWER"  "@   {muls|mullw} %0,%1,%2   {muli|mulli} %0,%1,%2"   [(set_attr "type" "imul")])(define_insn ""  [(set (match_operand:CC 0 "cc_reg_operand" "=x")	(compare:CC (mult:SI (match_operand:SI 1 "gpc_reg_operand" "%r")			     (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (clobber (match_scratch:SI 3 "=r"))   (clobber (match_scratch:SI 4 "=q"))]  "TARGET_POWER"  "{muls.|mullw.} %3,%1,%2"  [(set_attr "type" "delayed_compare")])(define_insn ""  [(set (match_operand:CC 0 "cc_reg_operand" "=x")	(compare:CC (mult:SI (match_operand:SI 1 "gpc_reg_operand" "%r")			     (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (clobber (match_scratch:SI 3 "=r"))]  "! TARGET_POWER"  "{muls.|mullw.} %3,%1,%2"  [(set_attr "type" "delayed_compare")])(define_insn ""  [(set (match_operand:CC 3 "cc_reg_operand" "=x")	(compare:CC (mult:SI (match_operand:SI 1 "gpc_reg_operand" "%r")			     (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (set (match_operand:SI 0 "gpc_reg_operand" "=r")	(mult:SI (match_dup 1) (match_dup 2)))   (clobber (match_scratch:SI 4 "=q"))]  "TARGET_POWER"  "{muls.|mullw.} %0,%1,%2"  [(set_attr "type" "delayed_compare")])(define_insn ""  [(set (match_operand:CC 3 "cc_reg_operand" "=x")	(compare:CC (mult:SI (match_operand:SI 1 "gpc_reg_operand" "%r")			     (match_operand:SI 2 "gpc_reg_operand" "r"))		    (const_int 0)))   (set (match_operand:SI 0 "gpc_reg_operand" "=r")	(mult:SI (match_dup 1) (match_dup 2)))]  "! TARGET_POWER"  "{muls.|mullw.} %0,%1,%2"  [(set_attr "type" "delayed_compare")]);; Operand 1 is divided by operand 2; quotient goes to operand;; 0 and remainder to operand 3.;; ??? At some point, see what, if anything, we can do about if (x % y == 0).(define_expand "divmodsi4"  [(parallel [(set (match_operand:SI 0 "gpc_reg_operand" "")		   (div:SI (match_operand:SI 1 "gpc_reg_operand" "")			   (match_operand:SI 2 "gpc_reg_operand" "")))	      (set (match_operand:SI 3 "gpc_reg_operand" "")		   (mod:SI (match_dup 1) (match_dup 2)))])]  "TARGET_POWER || (! TARGET_POWER && ! TARGET_POWERPC)"  "{  if (! TARGET_POWER && ! TARGET_POWERPC)    {      emit_move_insn (gen_rtx (REG, SImode, 3), operands[1]);      emit_move_insn (gen_rtx (REG, SImode, 4), operands[2]);      emit_insn (gen_divss_call ());      emit_move_insn (operands[0], gen_rtx (REG, SImode, 3));      emit_move_insn (operands[3], gen_rtx (REG, SImode, 4));      DONE;    }}")(define_insn ""  [(set (match_operand:SI 0 "gpc_reg_operand" "=r")	(div:SI (match_operand:SI 1 "gpc_reg_operand" "r")		(match_operand:SI 2 "gpc_reg_operand" "r")))   (set (match_operand:SI 3 "gpc_reg_operand" "=q")	(mod:SI (match_dup 1) (match_dup 2)))]  "TARGET_POWER"  "divs %0,%1,%2"  [(set_attr "type" "idiv")])(define_insn ""  [(set (match_operand:SI 0 "gpc_reg_operand" "=r")        (div:SI (match_operand:SI 1 "gpc_reg_operand" "r")                (match_operand:SI 2 "gpc_reg_operand" "r")))]  "TARGET_POWERPC"  "divw %0,%1,%2"  [(set_attr "type" "idiv")])(define_expand "udivsi3"  [(set (match_operand:SI 0 "gpc_reg_operand" "")        (udiv:SI (match_operand:SI 1 "gpc_reg_operand" "")                 (match_operand:SI 2 "gpc_reg_operand" "")))]  "TARGET_POWERPC || (! TARGET_POWER && ! TARGET_POWERPC)"  "{  if (! TARGET_POWER && ! TARGET_POWERPC)    {      emit_move_insn (gen_rtx (REG, SImode, 3), operands[1]);      emit_move_insn (gen_rtx (REG, SImode, 4), operands[2]);      emit_insn (gen_quous_call ());      emit_move_insn (operands[0], gen_rtx (REG, SImode, 3));

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -