]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
xtensa: Fix RTL insn cost estimation about relaxed MOVI instructions
authorTakayuki 'January June' Suwa <jjsuwa_sys3175@yahoo.co.jp>
Sun, 19 Jun 2022 19:13:56 +0000 (04:13 +0900)
committerMax Filippov <jcmvbkbc@gmail.com>
Sun, 19 Jun 2022 21:07:09 +0000 (14:07 -0700)
These instructions will all be converted to L32R ones with litpool entries
by the assembler.

gcc/ChangeLog:

* config/xtensa/xtensa.cc (xtensa_is_insn_L32R_p):
Consider relaxed MOVI instructions as L32R.

gcc/config/xtensa/xtensa.cc

index 2c534ff9c60a6576b034e1fc80efda456cbcb606..13f2b2b832c4c6526e2b055a1fd82fb2a43245f0 100644 (file)
@@ -4286,17 +4286,23 @@ xtensa_is_insn_L32R_p (const rtx_insn *insn)
 {
   rtx x = PATTERN (insn);
 
-  if (GET_CODE (x) == SET)
+  if (GET_CODE (x) != SET)
+    return false;
+
+  x = XEXP (x, 1);
+  if (MEM_P (x))
     {
-      x = SET_SRC (x);
-      if (MEM_P (x))
-       {
-         x = XEXP (x, 0);
-         return (SYMBOL_REF_P (x) || CONST_INT_P (x))
-                && CONSTANT_POOL_ADDRESS_P (x);
-       }
+      x = XEXP (x, 0);
+      return (SYMBOL_REF_P (x) || CONST_INT_P (x))
+            && CONSTANT_POOL_ADDRESS_P (x);
     }
 
+  /* relaxed MOVI instructions, that will be converted to L32R by the
+     assembler.  */
+  if (CONST_INT_P (x)
+      && ! xtensa_simm12b (INTVAL (x)))
+    return true;
+
   return false;
 }