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

📄 mips.md

📁 gcc编译工具没有什么特别
💻 MD
📖 第 1 页 / 共 5 页
字号:
      operands[3] = GEN_INT (val - 0x8);    }  else    {      operands[2] = GEN_INT (- 0x7);      operands[3] = GEN_INT (val + 0x7);    }}")(define_expand "subdi3"  [(parallel [(set (match_operand:DI 0 "register_operand" "=d")		   (minus:DI (match_operand:DI 1 "se_register_operand" "d")			     (match_operand:DI 2 "se_register_operand" "d")))	      (clobber (match_dup 3))])]  "TARGET_64BIT || (!TARGET_DEBUG_G_MODE && !TARGET_MIPS16)"  "{  if (TARGET_64BIT)    {      emit_insn (gen_subdi3_internal_3 (operands[0], operands[1],					operands[2]));      DONE;    }  operands[3] = gen_reg_rtx (SImode);}")(define_insn "subdi3_internal"  [(set (match_operand:DI 0 "register_operand" "=d")	(minus:DI (match_operand:DI 1 "register_operand" "d")		  (match_operand:DI 2 "register_operand" "d")))   (clobber (match_operand:SI 3 "register_operand" "=d"))]  "!TARGET_64BIT && !TARGET_DEBUG_G_MODE && !TARGET_MIPS16"  "sltu\\t%3,%L1,%L2\;subu\\t%L0,%L1,%L2\;subu\\t%M0,%M1,%M2\;subu\\t%M0,%M0,%3"  [(set_attr "type"	"darith")   (set_attr "mode"	"DI")   (set_attr "length"	"4")])(define_split  [(set (match_operand:DI 0 "register_operand" "")	(minus:DI (match_operand:DI 1 "register_operand" "")		  (match_operand:DI 2 "register_operand" "")))   (clobber (match_operand:SI 3 "register_operand" ""))]  "reload_completed && !WORDS_BIG_ENDIAN && !TARGET_64BIT   && !TARGET_DEBUG_D_MODE && !TARGET_DEBUG_G_MODE && !TARGET_MIPS16   && GET_CODE (operands[0]) == REG && GP_REG_P (REGNO (operands[0]))   && GET_CODE (operands[1]) == REG && GP_REG_P (REGNO (operands[1]))   && GET_CODE (operands[2]) == REG && GP_REG_P (REGNO (operands[2]))"  [(set (match_dup 3)	(ltu:SI (subreg:SI (match_dup 1) 0)		(subreg:SI (match_dup 2) 0)))   (set (subreg:SI (match_dup 0) 0)	(minus:SI (subreg:SI (match_dup 1) 0)		  (subreg:SI (match_dup 2) 0)))   (set (subreg:SI (match_dup 0) 1)	(minus:SI (subreg:SI (match_dup 1) 1)		  (subreg:SI (match_dup 2) 1)))   (set (subreg:SI (match_dup 0) 1)	(minus:SI (subreg:SI (match_dup 0) 1)		  (match_dup 3)))]  "")(define_split  [(set (match_operand:DI 0 "register_operand" "")	(minus:DI (match_operand:DI 1 "register_operand" "")		  (match_operand:DI 2 "register_operand" "")))   (clobber (match_operand:SI 3 "register_operand" ""))]  "reload_completed && WORDS_BIG_ENDIAN && !TARGET_64BIT   && !TARGET_DEBUG_D_MODE && !TARGET_DEBUG_G_MODE && !TARGET_MIPS16   && GET_CODE (operands[0]) == REG && GP_REG_P (REGNO (operands[0]))   && GET_CODE (operands[1]) == REG && GP_REG_P (REGNO (operands[1]))   && GET_CODE (operands[2]) == REG && GP_REG_P (REGNO (operands[2]))"  [(set (match_dup 3)	(ltu:SI (subreg:SI (match_dup 1) 1)	        (subreg:SI (match_dup 2) 1)))   (set (subreg:SI (match_dup 0) 1)	(minus:SI (subreg:SI (match_dup 1) 1)		  (subreg:SI (match_dup 2) 1)))   (set (subreg:SI (match_dup 0) 0)	(minus:SI (subreg:SI (match_dup 1) 0)		  (subreg:SI (match_dup 2) 0)))   (set (subreg:SI (match_dup 0) 0)	(minus:SI (subreg:SI (match_dup 0) 0)		  (match_dup 3)))]  "")(define_insn "subdi3_internal_2"  [(set (match_operand:DI 0 "register_operand" "=d,d,d")	(minus:DI (match_operand:DI 1 "register_operand" "d,d,d")		  (match_operand:DI 2 "small_int" "P,J,N")))   (clobber (match_operand:SI 3 "register_operand" "=d,d,d"))]  "!TARGET_64BIT && !TARGET_DEBUG_G_MODE && !TARGET_MIPS16   && INTVAL (operands[2]) != -32768"  "@   sltu\\t%3,%L1,%2\;subu\\t%L0,%L1,%2\;subu\\t%M0,%M1,%3   move\\t%L0,%L1\;move\\t%M0,%M1   sltu\\t%3,%L1,%2\;subu\\t%L0,%L1,%2\;subu\\t%M0,%M1,1\;subu\\t%M0,%M0,%3"  [(set_attr "type"	"darith")   (set_attr "mode"	"DI")   (set_attr "length"	"3,2,4")])(define_split  [(set (match_operand:DI 0 "register_operand" "")	(minus:DI (match_operand:DI 1 "register_operand" "")		  (match_operand:DI 2 "small_int" "")))   (clobber (match_operand:SI 3 "register_operand" ""))]  "reload_completed && !WORDS_BIG_ENDIAN && !TARGET_64BIT   && !TARGET_DEBUG_D_MODE && !TARGET_DEBUG_G_MODE && !TARGET_MIPS16   && GET_CODE (operands[0]) == REG && GP_REG_P (REGNO (operands[0]))   && GET_CODE (operands[1]) == REG && GP_REG_P (REGNO (operands[1]))   && INTVAL (operands[2]) > 0"  [(set (match_dup 3)	(ltu:SI (subreg:SI (match_dup 1) 0)		(match_dup 2)))   (set (subreg:SI (match_dup 0) 0)	(minus:SI (subreg:SI (match_dup 1) 0)		  (match_dup 2)))   (set (subreg:SI (match_dup 0) 1)	(minus:SI (subreg:SI (match_dup 1) 1)		  (match_dup 3)))]  "")(define_split  [(set (match_operand:DI 0 "register_operand" "")	(minus:DI (match_operand:DI 1 "register_operand" "")		  (match_operand:DI 2 "small_int" "")))   (clobber (match_operand:SI 3 "register_operand" ""))]  "reload_completed && WORDS_BIG_ENDIAN && !TARGET_64BIT   && !TARGET_DEBUG_D_MODE && !TARGET_DEBUG_G_MODE && !TARGET_MIPS16   && GET_CODE (operands[0]) == REG && GP_REG_P (REGNO (operands[0]))   && GET_CODE (operands[1]) == REG && GP_REG_P (REGNO (operands[1]))   && INTVAL (operands[2]) > 0"  [(set (match_dup 3)	(ltu:SI (subreg:SI (match_dup 1) 1)		(match_dup 2)))   (set (subreg:SI (match_dup 0) 1)	(minus:SI (subreg:SI (match_dup 1) 1)		  (match_dup 2)))   (set (subreg:SI (match_dup 0) 0)	(minus:SI (subreg:SI (match_dup 1) 0)		  (match_dup 3)))]  "")(define_insn "subdi3_internal_3"  [(set (match_operand:DI 0 "register_operand" "=d")	(minus:DI (match_operand:DI 1 "se_reg_or_0_operand" "dJ")		  (match_operand:DI 2 "se_arith_operand" "dI")))]  "TARGET_64BIT && !TARGET_MIPS16   && (GET_CODE (operands[2]) != CONST_INT || INTVAL (operands[2]) != -32768)"  "*{  return (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) < 0)    ? \"daddu\\t%0,%z1,%n2\"    : \"dsubu\\t%0,%z1,%2\";}"  [(set_attr "type"	"darith")   (set_attr "mode"	"DI")   (set_attr "length"	"1")]);; For the mips16, we need to recognize stack pointer subtractions;; explicitly, since we don't have a constraint for $sp.  These insns;; will be generated by the save_restore_insns functions.(define_insn ""  [(set (reg:DI 29)	(minus:DI (reg:DI 29)		  (match_operand:DI 0 "small_int" "I")))]  "TARGET_MIPS16   && (GET_CODE (operands[2]) != CONST_INT || INTVAL (operands[2]) != -32768)"  "daddu\\t%$,%$,%n0"  [(set_attr "type"	"arith")   (set_attr "mode"	"DI")   (set (attr "length")	(if_then_else (match_operand:VOID 0 "m16_nsimm8_8" "")				      (const_int 1)				      (const_int 2)))])(define_insn ""  [(set (match_operand:DI 0 "register_operand" "=d")	(minus:DI (reg:DI 29)		  (match_operand:DI 1 "small_int" "I")))]  "TARGET_MIPS16   && (GET_CODE (operands[2]) != CONST_INT || INTVAL (operands[2]) != -32768)"  "daddu\\t%0,%$,%n1"  [(set_attr "type"	"arith")   (set_attr "mode"	"DI")   (set (attr "length")	(if_then_else (match_operand:VOID 0 "m16_nuimm5_4" "")				      (const_int 1)				      (const_int 2)))])(define_insn ""  [(set (match_operand:DI 0 "register_operand" "=d,d,d")	(minus:DI (match_operand:DI 1 "register_operand" "0,d,d")		  (match_operand:DI 2 "arith_operand" "I,O,d")))]  "TARGET_MIPS16   && (GET_CODE (operands[2]) != CONST_INT       || (INTVAL (operands[2]) != -32768 && INTVAL (operands[2]) != -0x4000))"  "*{  if (REGNO (operands[0]) == REGNO (operands[1]))    return \"dsubu\\t%0,%2\";  return \"dsubu\\t%0,%1,%2\";}"  [(set_attr "type"	"arith")   (set_attr "mode"	"DI")   (set_attr_alternative "length"		[(if_then_else (match_operand:VOID 2 "m16_nsimm5_1" "")			       (const_int 1)			       (const_int 2))		 (if_then_else (match_operand:VOID 2 "m16_nsimm4_1" "")			       (const_int 1)			       (const_int 2))		 (const_int 1)])]);; On the mips16, we can sometimes split an add of a constant which is;; a 4 byte instruction into two adds which are both 2 byte;; instructions.  There are two cases: one where we are adding a;; constant plus a register to another register, and one where we are;; simply adding a constant to a register.(define_split  [(set (match_operand:DI 0 "register_operand" "")	(minus:DI (match_dup 0)		  (match_operand:DI 1 "const_int_operand" "")))]  "TARGET_MIPS16 && TARGET_64BIT && reload_completed   && GET_CODE (operands[0]) == REG   && M16_REG_P (REGNO (operands[0]))   && GET_CODE (operands[1]) == CONST_INT   && ((INTVAL (operands[1]) > 0x10	&& INTVAL (operands[1]) <= 0x10 + 0x10)       || (INTVAL (operands[1]) < - 0xf	   && INTVAL (operands[1]) >= - 0xf - 0xf))"  [(set (match_dup 0) (minus:DI (match_dup 0) (match_dup 1)))   (set (match_dup 0) (minus:DI (match_dup 0) (match_dup 2)))]  "{  HOST_WIDE_INT val = INTVAL (operands[1]);  if (val >= 0)    {      operands[1] = GEN_INT (0xf);      operands[2] = GEN_INT (val - 0xf);    }  else    {      operands[1] = GEN_INT (- 0x10);      operands[2] = GEN_INT (val + 0x10);    }}")(define_split  [(set (match_operand:DI 0 "register_operand" "")	(minus:DI (match_operand:DI 1 "register_operand" "")		  (match_operand:DI 2 "const_int_operand" "")))]  "TARGET_MIPS16 && TARGET_64BIT && reload_completed   && GET_CODE (operands[0]) == REG   && M16_REG_P (REGNO (operands[0]))   && GET_CODE (operands[1]) == REG   && M16_REG_P (REGNO (operands[1]))   && REGNO (operands[0]) != REGNO (operands[1])   && GET_CODE (operands[2]) == CONST_INT   && ((INTVAL (operands[2]) > 0x8	&& INTVAL (operands[2]) <= 0x8 + 0x10)       || (INTVAL (operands[2]) < - 0x7	   && INTVAL (operands[2]) >= - 0x7 - 0xf))"  [(set (match_dup 0) (minus:DI (match_dup 1) (match_dup 2)))   (set (match_dup 0) (minus:DI (match_dup 0) (match_dup 3)))]  "{  HOST_WIDE_INT val = INTVAL (operands[2]);  if (val >= 0)    {      operands[2] = GEN_INT (0x8);      operands[3] = GEN_INT (val - 0x8);    }  else    {      operands[2] = GEN_INT (- 0x7);      operands[3] = GEN_INT (val + 0x7);    }}")(define_insn "subsi3_internal_2"  [(set (match_operand:DI 0 "register_operand" "=d")	(sign_extend:DI (minus:SI (match_operand:SI 1 "reg_or_0_operand" "dJ")				  (match_operand:SI 2 "arith_operand" "dI"))))]  "TARGET_64BIT && !TARGET_MIPS16   && (GET_CODE (operands[2]) != CONST_INT || INTVAL (operands[2]) != -32768)"  "*{  return (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) < 0)    ? \"addu\\t%0,%z1,%n2\"    : \"subu\\t%0,%z1,%2\";}"  [(set_attr "type"	"arith")   (set_attr "mode"	"DI")   (set_attr "length"	"1")])(define_insn ""  [(set (match_operand:DI 0 "register_operand" "=d,d,d")	(sign_extend:DI (minus:SI (match_operand:SI 1 "register_operand" "0,d,d")				  (match_operand:SI 2 "arith_operand" "I,O,d"))))]  "TARGET_64BIT && TARGET_MIPS16   && (GET_CODE (operands[2]) != CONST_INT       || (INTVAL (operands[2]) != -32768 && INTVAL (operands[2]) != -0x4000))"  "*{  if (REGNO (operands[0]) == REGNO (operands[1]))    return \"subu\\t%0,%2\";  return \"subu\\t%0,%1,%2\";}"  [(set_attr "type"	"arith")   (set_attr "mode"	"SI")   (set_attr_alternative "length"		[(if_then_else (match_operand:VOID 2 "m16_nsimm8_1" "")			       (const_int 1)			       (const_int 2))		 (if_then_else (match_operand:VOID 2 "m16_nsimm4_1" "")			       (const_int 1)			       (const_int 2))		 (const_int 1)])])  ;;;;  ....................;;;;	MULTIPLICATION;;;;  ....................;;;; Early Vr4300 silicon has a CPU bug where multiplies with certain;; operands may corrupt immediately following multiplies. This is a;; simple fix to insert NOPs.(define_expand "muldf3"  [(set (match_operand:DF 0 "register_operand" "=f")	(mult:DF (match_operand:DF 1 "register_operand" "f")		 (match_operand:DF 2 "register_operand" "f")))]  "TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT"  "{  if (mips_cpu != PROCESSOR_R4300)    emit_insn (gen_muldf3_internal (operands[0], operands[1], operands[2]));  else    emit_insn (gen_muldf3_r4300 (operands[0], operands[1], operands[2]));  DONE;}")(define_insn "muldf3_internal"  [(set (match_operand:DF 0 "register_operand" "=f")	(mult:DF (match_operand:DF 1 "register_operand" "f")		 (match_operand:DF 2 "register_operand" "f")))]  "TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT && mips_cpu != PROCESSOR_R4300"  "mul.d\\t%0,%1,%2"  [(set_attr "type"	"fmul")   (set_attr "mode"	"DF")   (set_attr "length"	"1")])(define_insn "muldf3_r4300"  [(set (match_operand:DF 0 "register_operand" "=f")	(mult:DF (match_operand:DF 1 "register_operand" "f")		 (match_operand:DF 2 "register_operand" "f")))]  "TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT && mips_cpu == PROCESSOR_R4300"  "*{  output_asm_insn (\"mul.d\\t%0,%1,%2\", operands);  if (TARGET_4300_MUL_FIX)    output_asm_insn (\"nop\", operands);  return \"\";}"  [(set_attr "type"	"fmul")   (set_attr "mode"	"DF")   (set_attr "length"	"2")])	;; mul.d + nop(define_expand "mulsf3"  [(set (match_operand:SF 0 "register_operand" "=f")	(mult:SF (match_operand:SF 1 "register_operand" "f")		 (match_operand:SF 2 "register_operand" "f")))]  "TARGET_HARD_FLOAT"  "{  if (mips_cpu != PROCESSOR_R4300)    emit_insn( gen_mulsf3_internal (operands[0], operands[1], operands[2]));  else    emit_insn( gen_mulsf3_r4300 (operands[0], operands[1], operands[2]));

⌨️ 快捷键说明

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