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

📄 sparc.md

📁 gcc库的原代码,对编程有很大帮助.
💻 MD
📖 第 1 页 / 共 5 页
字号:
	(neg:DI (ne:DI (match_operand:DI 1 "register_operand" "r")		       (const_int 0))))   (clobber (reg:CCX 0))]  "TARGET_V9"  "mov 0,%0\;movrnz %1,-1,%0"  [(set_attr "type" "unary")   (set_attr "length" "2")])(define_insn "*seqsi_zero"  [(set (match_operand:SI 0 "register_operand" "=r")	(eq:SI (match_operand:SI 1 "register_operand" "r")	       (const_int 0)))   (clobber (reg:CC 0))]  ""  "subcc %%g0,%1,%%g0\;subx %%g0,-1,%0"  [(set_attr "type" "unary")   (set_attr "length" "2")])(define_insn "*neg_seqsi_zero"  [(set (match_operand:SI 0 "register_operand" "=r")	(neg:SI (eq:SI (match_operand:SI 1 "register_operand" "r")		       (const_int 0))))   (clobber (reg:CC 0))]  ""  "subcc %%g0,%1,%%g0\;addx %%g0,-1,%0"  [(set_attr "type" "unary")   (set_attr "length" "2")])(define_insn "*seqdi_zero"  [(set (match_operand:DI 0 "register_operand" "=r")	(eq:DI (match_operand:DI 1 "register_operand" "r")	       (const_int 0)))   (clobber (reg:CCX 0))]  "TARGET_V9"  "mov 0,%0\;movrz %1,1,%0"  [(set_attr "type" "unary")   (set_attr "length" "2")])(define_insn "*neg_seqdi_zero"  [(set (match_operand:DI 0 "register_operand" "=r")	(neg:DI (eq:DI (match_operand:DI 1 "register_operand" "r")		       (const_int 0))))   (clobber (reg:CCX 0))]  "TARGET_V9"  "mov 0,%0\;movrz %1,-1,%0"  [(set_attr "type" "unary")   (set_attr "length" "2")]) ;; We can also do (x + (i == 0)) and related, so put them in.;; ??? The addx/subx insns use the 32 bit carry flag so there are no DImode;; versions for v9.(define_insn "*x_plus_i_ne_0"  [(set (match_operand:SI 0 "register_operand" "=r")	(plus:SI (ne:SI (match_operand:SI 1 "register_operand" "r")			(const_int 0))		 (match_operand:SI 2 "register_operand" "r")))   (clobber (reg:CC 0))]  ""  "subcc %%g0,%1,%%g0\;addx %2,0,%0"  [(set_attr "length" "2")])(define_insn "*x_minus_i_ne_0"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (match_operand:SI 2 "register_operand" "r")		  (ne:SI (match_operand:SI 1 "register_operand" "r")			 (const_int 0))))   (clobber (reg:CC 0))]  ""  "subcc %%g0,%1,%%g0\;subx %2,0,%0"  [(set_attr "length" "2")])(define_insn "*x_plus_i_eq_0"  [(set (match_operand:SI 0 "register_operand" "=r")	(plus:SI (eq:SI (match_operand:SI 1 "register_operand" "r")			(const_int 0))		 (match_operand:SI 2 "register_operand" "r")))   (clobber (reg:CC 0))]  ""  "subcc %%g0,%1,%%g0\;subx %2,-1,%0"  [(set_attr "length" "2")])(define_insn "*x_minus_i_eq_0"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (match_operand:SI 2 "register_operand" "r")		  (eq:SI (match_operand:SI 1 "register_operand" "r")			 (const_int 0))))   (clobber (reg:CC 0))]  ""  "subcc %%g0,%1,%%g0\;addx %2,-1,%0"  [(set_attr "length" "2")]);; We can also do GEU and LTU directly, but these operate after a compare.;; ??? The addx/subx insns use the 32 bit carry flag so there are no DImode;; versions for v9.(define_insn "*sltu_insn"  [(set (match_operand:SI 0 "register_operand" "=r")	(ltu:SI (reg:CC 0) (const_int 0)))]  ""  "addx %%g0,0,%0"  [(set_attr "type" "misc")])(define_insn "*neg_sltu_insn"  [(set (match_operand:SI 0 "register_operand" "=r")	(neg:SI (ltu:SI (reg:CC 0) (const_int 0))))]  ""  "subx %%g0,0,%0"  [(set_attr "type" "misc")]);; ??? Combine should canonicalize these next two to the same pattern.(define_insn "*neg_sltu_minus_x"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (neg:SI (ltu:SI (reg:CC 0) (const_int 0)))		  (match_operand:SI 1 "arith_operand" "rI")))]  ""  "subx %%g0,%1,%0"  [(set_attr "type" "unary")])(define_insn "*neg_sltu_plus_x"  [(set (match_operand:SI 0 "register_operand" "=r")	(neg:SI (plus:SI (ltu:SI (reg:CC 0) (const_int 0))			 (match_operand:SI 1 "arith_operand" "rI"))))]  ""  "subx %%g0,%1,%0"  [(set_attr "type" "unary")])(define_insn "*sgeu_insn"  [(set (match_operand:SI 0 "register_operand" "=r")	(geu:SI (reg:CC 0) (const_int 0)))]  ""  "subx %%g0,-1,%0"  [(set_attr "type" "misc")])(define_insn "*neg_sgeu_insn"  [(set (match_operand:SI 0 "register_operand" "=r")	(neg:SI (geu:SI (reg:CC 0) (const_int 0))))]  ""  "addx %%g0,-1,%0"  [(set_attr "type" "misc")]);; We can also do (x + ((unsigned) i >= 0)) and related, so put them in.;; ??? The addx/subx insns use the 32 bit carry flag so there are no DImode;; versions for v9.(define_insn "*sltu_plus_x"  [(set (match_operand:SI 0 "register_operand" "=r")	(plus:SI (ltu:SI (reg:CC 0) (const_int 0))		 (match_operand:SI 1 "arith_operand" "rI")))]  ""  "addx %%g0,%1,%0"  [(set_attr "type" "unary")])(define_insn "*sltu_plus_x_plus_y"  [(set (match_operand:SI 0 "register_operand" "=r")	(plus:SI (ltu:SI (reg:CC 0) (const_int 0))		 (plus:SI (match_operand:SI 1 "arith_operand" "%r")			  (match_operand:SI 2 "arith_operand" "rI"))))]  ""  "addx %1,%2,%0")(define_insn "*x_minus_sltu"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (match_operand:SI 1 "register_operand" "r")		  (ltu:SI (reg:CC 0) (const_int 0))))]  ""  "subx %1,0,%0"  [(set_attr "type" "unary")]);; ??? Combine should canonicalize these next two to the same pattern.(define_insn "*x_minus_y_minus_sltu"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (minus:SI (match_operand:SI 1 "register_operand" "r")			    (match_operand:SI 2 "arith_operand" "rI"))		  (ltu:SI (reg:CC 0) (const_int 0))))]  ""  "subx %1,%2,%0")(define_insn "*x_minus_sltu_plus_y"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (match_operand:SI 1 "register_operand" "r")		  (plus:SI (ltu:SI (reg:CC 0) (const_int 0))			   (match_operand:SI 2 "arith_operand" "rI"))))]  ""  "subx %1,%2,%0")(define_insn "*sgeu_plus_x"  [(set (match_operand:SI 0 "register_operand" "=r")	(plus:SI (geu:SI (reg:CC 0) (const_int 0))		 (match_operand:SI 1 "register_operand" "r")))]  ""  "subx %1,-1,%0"  [(set_attr "type" "unary")])(define_insn "*x_minus_sgeu"  [(set (match_operand:SI 0 "register_operand" "=r")	(minus:SI (match_operand:SI 1 "register_operand" "r")		  (geu:SI (reg:CC 0) (const_int 0))))]  ""  "addx %1,-1,%0"  [(set_attr "type" "unary")]);; Now we have the generic scc insns.;; !v9: These will be done using a jump.;; v9: Use conditional moves which are defined elsewhere.;; We have to exclude the cases above, since we will not want combine to;; turn something that does not require a jump into something that does.(define_insn "*scc_si"  [(set (match_operand:SI 0 "register_operand" "=r")	(match_operator:SI 1 "noov_compare_op" [(reg 0) (const_int 0)]))]  ""  "* return output_scc_insn (operands, insn); "  [(set_attr "type" "multi")   (set_attr "length" "3")])(define_insn "*scc_di"  [(set (match_operand:DI 0 "register_operand" "=r")	(match_operator:DI 1 "noov_compare_op" [(reg 0) (const_int 0)]))]  "TARGET_V9"  "* return output_scc_insn (operands, insn); "  [(set_attr "type" "multi")   (set_attr "length" "3")]);; These control RTL generation for conditional jump insns;; The quad-word fp compare library routines all return nonzero to indicate;; true, which is different from the equivalent libgcc routines, so we must;; handle them specially here.(define_expand "beq"  [(set (pc)	(if_then_else (eq (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{  if (TARGET_V9 && sparc_compare_op1 == const0_rtx      && GET_CODE (sparc_compare_op0) == REG      && GET_MODE (sparc_compare_op0) == DImode)    {      emit_v9_brxx_insn (EQ, sparc_compare_op0, operands[0]);      DONE;    }  else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)    {      emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, EQ);      emit_jump_insn (gen_bne (operands[0]));      DONE;    }        operands[1] = gen_compare_reg (EQ, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bne"  [(set (pc)	(if_then_else (ne (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{  if (TARGET_V9 && sparc_compare_op1 == const0_rtx      && GET_CODE (sparc_compare_op0) == REG      && GET_MODE (sparc_compare_op0) == DImode)    {      emit_v9_brxx_insn (NE, sparc_compare_op0, operands[0]);      DONE;    }  else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)    {      emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, NE);      emit_jump_insn (gen_bne (operands[0]));      DONE;    }        operands[1] = gen_compare_reg (NE, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bgt"  [(set (pc)	(if_then_else (gt (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{  if (TARGET_V9 && sparc_compare_op1 == const0_rtx      && GET_CODE (sparc_compare_op0) == REG      && GET_MODE (sparc_compare_op0) == DImode)    {      emit_v9_brxx_insn (GT, sparc_compare_op0, operands[0]);      DONE;    }  else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)    {      emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, GT);      emit_jump_insn (gen_bne (operands[0]));      DONE;    }        operands[1] = gen_compare_reg (GT, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bgtu"  [(set (pc)	(if_then_else (gtu (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{ operands[1] = gen_compare_reg (GTU, sparc_compare_op0, sparc_compare_op1);}")(define_expand "blt"  [(set (pc)	(if_then_else (lt (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{  if (TARGET_V9 && sparc_compare_op1 == const0_rtx      && GET_CODE (sparc_compare_op0) == REG      && GET_MODE (sparc_compare_op0) == DImode)    {      emit_v9_brxx_insn (LT, sparc_compare_op0, operands[0]);      DONE;    }  else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)    {      emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LT);      emit_jump_insn (gen_bne (operands[0]));      DONE;    }        operands[1] = gen_compare_reg (LT, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bltu"  [(set (pc)	(if_then_else (ltu (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{ operands[1] = gen_compare_reg (LTU, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bge"  [(set (pc)	(if_then_else (ge (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{  if (TARGET_V9 && sparc_compare_op1 == const0_rtx      && GET_CODE (sparc_compare_op0) == REG      && GET_MODE (sparc_compare_op0) == DImode)    {      emit_v9_brxx_insn (GE, sparc_compare_op0, operands[0]);      DONE;    }  else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)    {      emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, GE);      emit_jump_insn (gen_bne (operands[0]));      DONE;    }        operands[1] = gen_compare_reg (GE, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bgeu"  [(set (pc)	(if_then_else (geu (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{ operands[1] = gen_compare_reg (GEU, sparc_compare_op0, sparc_compare_op1);}")(define_expand "ble"  [(set (pc)	(if_then_else (le (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{  if (TARGET_V9 && sparc_compare_op1 == const0_rtx      && GET_CODE (sparc_compare_op0) == REG      && GET_MODE (sparc_compare_op0) == DImode)    {      emit_v9_brxx_insn (LE, sparc_compare_op0, operands[0]);      DONE;    }  else if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)    {      emit_float_lib_cmp (sparc_compare_op0, sparc_compare_op1, LE);      emit_jump_insn (gen_bne (operands[0]));      DONE;    }        operands[1] = gen_compare_reg (LE, sparc_compare_op0, sparc_compare_op1);}")(define_expand "bleu"  [(set (pc)	(if_then_else (leu (match_dup 1) (const_int 0))		      (label_ref (match_operand 0 "" ""))		      (pc)))]  ""  "{ operands[1] = gen_compare_reg (LEU, sparc_compare_op0, sparc_compare_op1);}");; Now match both normal and inverted jump.(define_insn "*normal_branch"  [(set (pc)	(if_then_else (match_operator 0 "noov_compare_op"

⌨️ 快捷键说明

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