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

📄 mips.md

📁 GUN开源阻止下的编译器GCC
💻 MD
📖 第 1 页 / 共 5 页
字号:
   (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")]);; 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 "register_operand" "d")		(match_operand:DI 2 "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 "register_operand" "d")		 (match_operand:DI 2 "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"  [(set (match_operand:DI 0 "register_operand" "=d")	(div:DI (match_operand:DI 1 "register_operand" "d")		(match_operand:DI 2 "nonmemory_operand" "di")))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))   (clobber (match_scratch:DI 6 "=a"))]  "TARGET_64BIT && !optimize"  "ddiv\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"DI")   (set_attr "length"	"14")])		;; various tests for dividing by 0 and such(define_insn "modsi3"  [(set (match_operand:SI 0 "register_operand" "=d")	(mod: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"  "rem\\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 "moddi3"  [(set (match_operand:DI 0 "register_operand" "=d")	(mod:DI (match_operand:DI 1 "register_operand" "d")		(match_operand:DI 2 "nonmemory_operand" "di")))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))   (clobber (match_scratch:DI 6 "=a"))]  "TARGET_64BIT && !optimize"  "drem\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"DI")   (set_attr "length"	"14")])		;; various tests for dividing by 0 and such(define_insn "udivsi3"  [(set (match_operand:SI 0 "register_operand" "=d")	(udiv: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"  "divu\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"SI")   (set_attr "length"	"7")])		;; various tests for dividing by 0 and such(define_insn "udivdi3"  [(set (match_operand:DI 0 "register_operand" "=d")	(udiv:DI (match_operand:DI 1 "register_operand" "d")		 (match_operand:DI 2 "nonmemory_operand" "di")))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))   (clobber (match_scratch:DI 6 "=a"))]  "TARGET_64BIT && !optimize"  "ddivu\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"DI")   (set_attr "length"	"7")])		;; various tests for dividing by 0 and such(define_insn "umodsi3"  [(set (match_operand:SI 0 "register_operand" "=d")	(umod: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"  "remu\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"SI")   (set_attr "length"	"7")])		;; various tests for dividing by 0 and such(define_insn "umoddi3"  [(set (match_operand:DI 0 "register_operand" "=d")	(umod:DI (match_operand:DI 1 "register_operand" "d")		 (match_operand:DI 2 "nonmemory_operand" "di")))   (clobber (match_scratch:DI 3 "=l"))   (clobber (match_scratch:DI 4 "=h"))   (clobber (match_scratch:DI 6 "=a"))]  "TARGET_64BIT && !optimize"  "dremu\\t%0,%1,%2"  [(set_attr "type"	"idiv")   (set_attr "mode"	"DI")   (set_attr "length"	"7")])		;; various tests for dividing by 0 and such;;;;  ....................;;;;	SQUARE ROOT;;;;  ....................(define_insn "sqrtdf2"  [(set (match_operand:DF 0 "register_operand" "=f")	(sqrt:DF (match_operand:DF 1 "register_operand" "f")))]  "TARGET_HARD_FLOAT && HAVE_SQRT_P() && TARGET_DOUBLE_FLOAT"  "sqrt.d\\t%0,%1"  [(set_attr "type"	"fsqrt")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn "sqrtsf2"  [(set (match_operand:SF 0 "register_operand" "=f")	(sqrt:SF (match_operand:SF 1 "register_operand" "f")))]  "TARGET_HARD_FLOAT && HAVE_SQRT_P()"  "sqrt.s\\t%0,%1"  [(set_attr "type"	"fsqrt")   (set_attr "mode"	"SF")   (set_attr "length"	"1")]);;;;  ....................;;;;	ABSOLUTE VALUE;;;;  ....................;; Do not use the integer abs macro instruction, since that signals an;; exception on -2147483648 (sigh).(define_insn "abssi2"  [(set (match_operand:SI 0 "register_operand" "=d")	(abs:SI (match_operand:SI 1 "register_operand" "d")))]  ""  "*{  dslots_jump_total++;  dslots_jump_filled++;  operands[2] = const0_rtx;  if (REGNO (operands[0]) == REGNO (operands[1]))    {      if (mips_isa >= 2)	return \"%(bltzl\\t%1,1f\\n\\tsubu\\t%0,%z2,%0\\n1:%)\";      else	return \"bgez\\t%1,1f%#\\n\\tsubu\\t%0,%z2,%0\\n1:\";    }	    else    return \"%(bgez\\t%1,1f\\n\\tmove\\t%0,%1\\n\\tsubu\\t%0,%z2,%0\\n1:%)\";}"  [(set_attr "type"	"multi")   (set_attr "mode"	"SI")   (set_attr "length"	"3")])(define_insn "absdi2"  [(set (match_operand:DI 0 "register_operand" "=d")	(abs:DI (match_operand:DI 1 "register_operand" "d")))]  "TARGET_64BIT"  "*{  dslots_jump_total++;  dslots_jump_filled++;  operands[2] = const0_rtx;  if (REGNO (operands[0]) == REGNO (operands[1]))    return \"%(bltzl\\t%1,1f\\n\\tdsubu\\t%0,%z2,%0\\n1:%)\";  else    return \"%(bgez\\t%1,1f\\n\\tmove\\t%0,%1\\n\\tdsubu\\t%0,%z2,%0\\n1:%)\";}"  [(set_attr "type"	"multi")   (set_attr "mode"	"DI")   (set_attr "length"	"3")])(define_insn "absdf2"  [(set (match_operand:DF 0 "register_operand" "=f")	(abs:DF (match_operand:DF 1 "register_operand" "f")))]  "TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "abs.d\\t%0,%1"  [(set_attr "type"	"fabs")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn "abssf2"  [(set (match_operand:SF 0 "register_operand" "=f")	(abs:SF (match_operand:SF 1 "register_operand" "f")))]  "TARGET_HARD_FLOAT"  "abs.s\\t%0,%1"  [(set_attr "type"	"fabs")   (set_attr "mode"	"SF")   (set_attr "length"	"1")]);;;;  ....................;;;;	FIND FIRST BIT INSTRUCTION;;;;  ....................;;(define_insn "ffssi2"  [(set (match_operand:SI 0 "register_operand" "=&d")	(ffs:SI (match_operand:SI 1 "register_operand" "d")))   (clobber (match_scratch:SI 2 "=&d"))   (clobber (match_scratch:SI 3 "=&d"))]  ""  "*{  dslots_jump_total += 2;  dslots_jump_filled += 2;  operands[4] = const0_rtx;  if (optimize && find_reg_note (insn, REG_DEAD, operands[1]))    return \"%(\\move\\t%0,%z4\\n\\\\tbeq\\t%1,%z4,2f\\n\\1:\\tand\\t%2,%1,0x0001\\n\\\\taddu\\t%0,%0,1\\n\\\\tbeq\\t%2,%z4,1b\\n\\\\tsrl\\t%1,%1,1\\n\\2:%)\";  return \"%(\\move\\t%0,%z4\\n\\\\tmove\\t%3,%1\\n\\\\tbeq\\t%3,%z4,2f\\n\\1:\\tand\\t%2,%3,0x0001\\n\\\\taddu\\t%0,%0,1\\n\\\\tbeq\\t%2,%z4,1b\\n\\\\tsrl\\t%3,%3,1\\n\\2:%)\";}"  [(set_attr "type"	"multi")   (set_attr "mode"	"SI")   (set_attr "length"	"6")])(define_insn "ffsdi2"  [(set (match_operand:DI 0 "register_operand" "=&d")	(ffs:DI (match_operand:DI 1 "register_operand" "d")))   (clobber (match_scratch:DI 2 "=&d"))   (clobber (match_scratch:DI 3 "=&d"))]  "TARGET_64BIT"  "*{  dslots_jump_total += 2;

⌨️ 快捷键说明

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