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

📄 mips.md

📁 GCC编译器源代码
💻 MD
📖 第 1 页 / 共 5 页
字号:
  [(set (match_operand:DI 0 "register_operand" "=a")	(mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "d"))		 (zero_extend:DI (match_operand:SI 2 "register_operand" "d"))))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))]  "TARGET_64BIT"  "multu\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"	"1")])(define_insn "umulsi3_highpart"  [(set (match_operand:SI 0 "register_operand" "=h")	(truncate:SI	 (lshiftrt:DI (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "d"))			       (zero_extend:DI (match_operand:SI 2 "register_operand" "d")))		      (const_int 32))))   (clobber (match_scratch:SI 3 "=l"))   (clobber (match_scratch:SI 4 "=a"))]  ""  "multu\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"	"1")])(define_insn "smuldi3_highpart"  [(set (match_operand:DI 0 "register_operand" "=h")	(truncate:DI	 (lshiftrt:TI (mult:TI (sign_extend:TI (match_operand:DI 1 "se_register_operand" "d"))			       (sign_extend:TI (match_operand:DI 2 "se_register_operand" "d")))		      (const_int 64))))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=a"))]  "TARGET_64BIT"  "dmult\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"DI")   (set_attr "length"	"1")])(define_insn "umuldi3_highpart"  [(set (match_operand:DI 0 "register_operand" "=h")	(truncate:DI	 (lshiftrt:TI (mult:TI (zero_extend:TI (match_operand:DI 1 "se_register_operand" "d"))			       (zero_extend:TI (match_operand:DI 2 "se_register_operand" "d")))		      (const_int 64))))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=a"))]  "TARGET_64BIT"  "dmultu\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"DI")   (set_attr "length"	"1")]);; The R4650 supports a 32 bit multiply/ 64 bit accumulate;; instruction.  The HI/LO registers are used as a 64 bit accumulator.(define_insn "madsi"  [(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"))   (clobber (match_scratch:SI 4 "=a"))]  "TARGET_MAD || GENERATE_MADD"  "*{  if (TARGET_MAD)    return \"mad\\t%1,%2\";  else    return \"madd\\t%1,%2\";}"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"   "1")])(define_insn "maddi"  [(set (match_operand:DI 0 "register_operand" "+x")	(plus:DI (mult:DI (sign_extend:DI			   (match_operand:SI 1 "register_operand" "d"))			  (sign_extend:DI			   (match_operand:SI 2 "register_operand" "d")))		 (match_dup 0)))   (clobber (match_scratch:SI 3 "=a"))]  "TARGET_MAD && ! TARGET_64BIT"  "mad\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"   "1")])(define_insn "maddi_64bit"  [(set (match_operand:DI 0 "register_operand" "+a")	(plus:DI (mult:DI (sign_extend:DI			   (match_operand:SI 1 "register_operand" "d"))			  (sign_extend:DI			   (match_operand:SI 2 "register_operand" "d")))		 (match_dup 0)))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))]  "TARGET_MAD && TARGET_64BIT"  "mad\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"   "1")])(define_insn "umaddi"  [(set (match_operand:DI 0 "register_operand" "+x")	(plus:DI (mult:DI (zero_extend:DI			   (match_operand:SI 1 "register_operand" "d"))			  (zero_extend:DI			   (match_operand:SI 2 "register_operand" "d")))		 (match_dup 0)))   (clobber (match_scratch:SI 3 "=a"))]  "TARGET_MAD && ! TARGET_64BIT"  "madu\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"   "1")])(define_insn "umaddi_64bit"  [(set (match_operand:DI 0 "register_operand" "+a")	(plus:DI (mult:DI (zero_extend:DI			   (match_operand:SI 1 "register_operand" "d"))			  (zero_extend:DI			   (match_operand:SI 2 "register_operand" "d")))		 (match_dup 0)))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))]  "TARGET_MAD && TARGET_64BIT"  "madu\\t%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"   "1")])(define_insn "madd3"  [(set (match_operand:SI 0 "register_operand" "=d")	(plus:SI (mult:SI (match_operand:SI 1 "register_operand" "d")			  (match_operand:SI 2 "register_operand" "d"))		 (match_operand:SI 3 "register_operand" "l")))   (clobber (match_scratch:SI 4 "=l"))   (clobber (match_scratch:SI 5 "=h"))   (clobber (match_scratch:SI 6 "=a"))]  "GENERATE_MADD"  "madd\\t%0,%1,%2"  [(set_attr "type"	"imul")   (set_attr "mode"	"SI")   (set_attr "length"   "1")]);; Floating point multiply accumulate instructions.(define_insn ""  [(set (match_operand:DF 0 "register_operand" "=f")	(plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")			  (match_operand:DF 2 "register_operand" "f"))		 (match_operand:DF 3 "register_operand" "f")))]  "mips_isa >= 4 && TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "madd.d\\t%0,%3,%1,%2"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:SF 0 "register_operand" "=f")	(plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")			  (match_operand:SF 2 "register_operand" "f"))		 (match_operand:SF 3 "register_operand" "f")))]  "mips_isa >= 4 && TARGET_HARD_FLOAT"  "madd.s\\t%0,%3,%1,%2"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"SF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:DF 0 "register_operand" "=f")	(minus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")			   (match_operand:DF 2 "register_operand" "f"))		  (match_operand:DF 3 "register_operand" "f")))]  "mips_isa >= 4 && TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "msub.d\\t%0,%3,%1,%2"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:SF 0 "register_operand" "=f")	(minus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")			   (match_operand:SF 2 "register_operand" "f"))		  (match_operand:SF 3 "register_operand" "f")))]		    "mips_isa >= 4 && TARGET_HARD_FLOAT"  "msub.s\\t%0,%3,%1,%2"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"SF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:DF 0 "register_operand" "=f")	(neg:DF (plus:DF (mult:DF (match_operand:DF 1 "register_operand" "f")				  (match_operand:DF 2 "register_operand" "f"))			 (match_operand:DF 3 "register_operand" "f"))))]  "mips_isa >= 4 && TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "nmadd.d\\t%0,%3,%1,%2"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:SF 0 "register_operand" "=f")	(neg:SF (plus:SF (mult:SF (match_operand:SF 1 "register_operand" "f")				  (match_operand:SF 2 "register_operand" "f"))			 (match_operand:SF 3 "register_operand" "f"))))]  "mips_isa >= 4 && TARGET_HARD_FLOAT"  "nmadd.s\\t%0,%3,%1,%2"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"SF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:DF 0 "register_operand" "=f")	(minus:DF (match_operand:DF 1 "register_operand" "f")		  (mult:DF (match_operand:DF 2 "register_operand" "f")			   (match_operand:DF 3 "register_operand" "f"))))]  "mips_isa >= 4 && TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "nmsub.d\\t%0,%1,%2,%3"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:SF 0 "register_operand" "=f")	(minus:SF (match_operand:SF 1 "register_operand" "f")		  (mult:SF (match_operand:SF 2 "register_operand" "f")			   (match_operand:SF 3 "register_operand" "f"))))]  "mips_isa >= 4 && TARGET_HARD_FLOAT"  "nmsub.s\\t%0,%1,%2,%3"  [(set_attr "type"	"fmadd")   (set_attr "mode"	"SF")   (set_attr "length"	"1")]);;;;  ....................;;;;	DIVISION and REMAINDER;;;;  ....................;;(define_insn "divdf3"  [(set (match_operand:DF 0 "register_operand" "=f")	(div:DF (match_operand:DF 1 "register_operand" "f")		(match_operand:DF 2 "register_operand" "f")))]  "TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "div.d\\t%0,%1,%2"  [(set_attr "type"	"fdiv")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn "divsf3"  [(set (match_operand:SF 0 "register_operand" "=f")	(div:SF (match_operand:SF 1 "register_operand" "f")		(match_operand:SF 2 "register_operand" "f")))]  "TARGET_HARD_FLOAT"  "div.s\\t%0,%1,%2"  [(set_attr "type"	"fdiv")   (set_attr "mode"	"SF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:DF 0 "register_operand" "=f")	(div:DF (match_operand:DF 1 "const_float_1_operand" "")		(match_operand:DF 2 "register_operand" "f")))]  "mips_isa >= 4 && TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT && flag_fast_math"  "recip.d\\t%0,%2"  [(set_attr "type"	"fdiv")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:SF 0 "register_operand" "=f")	(div:SF (match_operand:SF 1 "const_float_1_operand" "")		(match_operand:SF 2 "register_operand" "f")))]  "mips_isa >= 4 && TARGET_HARD_FLOAT && flag_fast_math"  "recip.s\\t%0,%2"  [(set_attr "type"	"fdiv")   (set_attr "mode"	"SF")   (set_attr "length"	"1")]);; If optimizing, prefer the divmod functions over separate div and;; mod functions, since this will allow using one instruction for both;; the quotient and remainder.  At present, the divmod is not moved out;; of loops if it is constant within the loop, so allow -mdebugc to;; use the old method of doing things.;; 64 is the multiply/divide hi register;; 65 is the multiply/divide lo register;; ??? We can't accept constants here, because the MIPS assembler will replace;; a divide by power of 2 with a shift, and then the remainder is no longer;; available.(define_insn "divmodsi4"  [(set (match_operand:SI 0 "register_operand" "=d")	(div:SI (match_operand:SI 1 "register_operand" "d")		(match_operand:SI 2 "register_operand" "d")))   (set (match_operand:SI 3 "register_operand" "=d")	(mod:SI (match_dup 1)		(match_dup 2)))   (clobber (match_scratch:SI 4 "=l"))   (clobber (match_scratch:SI 5 "=h"))   (clobber (match_scratch:SI 6 "=a"))]  "optimize"  "*{  if (find_reg_note (insn, REG_UNUSED, operands[3]))    return \"div\\t%0,%1,%2\";  if (find_reg_note (insn, REG_UNUSED, operands[0]))    return \"rem\\t%3,%1,%2\";  return \"div\\t%0,%1,%2\;mfhi\\t%3\";}"  [(set_attr "type"	"idiv")   (set_attr "mode"	"SI")   (set_attr "length"	"14")])		;; various tests for dividing by 0 and such(define_insn "divmoddi4"  [(set (match_operand:DI 0 "register_operand" "=d")	(div:DI (match_operand:DI 1 "se_register_operand" "d")		(match_operand:DI 2 "se_register_operand" "d")))   (set (match_operand:DI 3 "register_operand" "=d")	(mod:DI (match_dup 1)		(match_dup 2)))   (clobber (match_scratch:DI 4 "=l"))   (clobber (match_scratch:DI 5 "=h"))   (clobber (match_scratch:DI 6 "=a"))]  "TARGET_64BIT && optimize"  "*{  if (find_reg_note (insn, REG_UNUSED, operands[3]))    return \"ddiv\\t%0,%1,%2\";  if (find_reg_note (insn, REG_UNUSED, operands[0]))    return \"drem\\t%3,%1,%2\";  return \"ddiv\\t%0,%1,%2\;mfhi\\t%3\";}"  [(set_attr "type"	"idiv")   (set_attr "mode"	"DI")   (set_attr "length"	"15")])		;; various tests for dividing by 0 and such(define_insn "udivmodsi4"  [(set (match_operand:SI 0 "register_operand" "=d")	(udiv:SI (match_operand:SI 1 "register_operand" "d")		 (match_operand:SI 2 "register_operand" "d")))   (set (match_operand:SI 3 "register_operand" "=d")	(umod:SI (match_dup 1)		 (match_dup 2)))   (clobber (match_scratch:SI 4 "=l"))   (clobber (match_scratch:SI 5 "=h"))   (clobber (match_scratch:SI 6 "=a"))]  "optimize"  "*{  if (find_reg_note (insn, REG_UNUSED, operands[3]))    return \"divu\\t%0,%1,%2\";  if (find_reg_note (insn, REG_UNUSED, operands[0]))    return \"remu\\t%3,%1,%2\";  return \"divu\\t%0,%1,%2\;mfhi\\t%3\";}"  [(set_attr "type"	"idiv")   (set_attr "mode"	"SI")   (set_attr "length"	"8")])		;; various tests for dividing by 0 and such(define_insn "udivmoddi4"  [(set (match_operand:DI 0 "register_operand" "=d")	(udiv:DI (match_operand:DI 1 "se_register_operand" "d")		 (match_operand:DI 2 "se_register_operand" "d")))   (set (match_operand:DI 3 "register_operand" "=d")	(umod:DI (match_dup 1)		 (match_dup 2)))   (clobber (match_scratch:DI 4 "=l"))   (clobber (match_scratch:DI 5 "=h"))   (clobber (match_scratch:DI 6 "=a"))]  "TARGET_64BIT && optimize"  "*{  if (find_reg_note (insn, REG_UNUSED, operands[3]))    return \"ddivu\\t%0,%1,%2\";  if (find_reg_note (insn, REG_UNUSED, operands[0]))    return \"dremu\\t%3,%1,%2\";  return \"ddivu\\t%0,%1,%2\;mfhi\\t%3\";}"  [(set_attr "type"	"idiv")   (set_attr "mode"	"DI")   (set_attr "length"	"8")])		;; various tests for dividing by 0 and such(define_insn "divsi3"  [(set (match_operand:SI 0 "register_operand" "=d")	(div:SI (match_operand:SI 1 "register_operand" "d")		(match_operand:SI 2 "nonmemory_operand" "di")))   (clobber (match_scratch:SI 3 "=l"))   (clobber (match_scratch:SI 4 "=h"))   (clobber (match_scratch:SI 6 "=a"))]  "!optimize"  "div\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"SI")   (set_attr "length"	"13")])		;; various tests for dividing by 0 and such(define_insn "divdi3"

⌨️ 快捷键说明

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