]> gcc.gnu.org Git - gcc.git/commitdiff
md.texi (doloop_end): Document that the pattern code may need to check operand mode.
authorPaul Koning <ni1d@arrl.net>
Fri, 12 Oct 2018 13:50:15 +0000 (09:50 -0400)
committerPaul Koning <pkoning@gcc.gnu.org>
Fri, 12 Oct 2018 13:50:15 +0000 (09:50 -0400)
* doc/md.texi (doloop_end): Document that the pattern code may
need to check operand mode.

From-SVN: r265102

gcc/ChangeLog
gcc/doc/md.texi

index ecf2b805d70c3fbfa42317ed37a75605b1e88b63..239336756187dafa957b03fb92f78aa192269171 100644 (file)
@@ -1,3 +1,8 @@
+2018-10-12  Paul Koning  <ni1d@arrl.net>
+
+       * doc/md.texi (doloop_end): Document that the pattern code may
+       need to check operand mode.
+
 2018-10-12  Wilco Dijkstra  <wdijkstr@arm.com>
 
        * config/aarch64/aarch64.md (zero_extendsidi2_aarch64): Add alternatives
index 4801d68a2071a166ae6734c9010ca0fd41d65d71..360b36b862f7eb13964e60ff53b04e1274f89fe4 100644 (file)
@@ -7619,7 +7619,23 @@ simplified) from the PDP-11 target:
 
 @smallexample
 @group
-(define_insn "doloop_end"
+(define_expand "doloop_end"
+  [(parallel [(set (pc)
+                   (if_then_else
+                    (ne (match_operand:HI 0 "nonimmediate_operand" "+r,!m")
+                        (const_int 1))
+                    (label_ref (match_operand 1 "" ""))
+                    (pc)))
+              (set (match_dup 0)
+                   (plus:HI (match_dup 0)
+                         (const_int -1)))])]
+  ""
+  "@{
+    if (GET_MODE (operands[0]) != HImode)
+      FAIL;
+  @}")
+
+(define_insn "doloop_end_insn"
   [(set (pc)
         (if_then_else
          (ne (match_operand:HI 0 "nonimmediate_operand" "+r,!m")
@@ -7662,9 +7678,22 @@ will be non-negative.
 Since the @code{doloop_end} insn is a jump insn that also has an output,
 the reload pass does not handle the output operand.  Therefore, the
 constraint must allow for that operand to be in memory rather than a
-register.  In the example shown above, that is handled by using a loop
-instruction sequence that can handle memory operands when the memory
-alternative appears.
+register.  In the example shown above, that is handled (in the
+@code{doloop_end_insn} pattern) by using a loop instruction sequence
+that can handle memory operands when the memory alternative appears.
+
+GCC does not check the mode of the loop register operand when generating
+the @code{doloop_end} pattern.  If the pattern is only valid for some
+modes but not others, the pattern should be a @code{define_expand}
+pattern that checks the operand mode in the preparation code, and issues
+@code{FAIL} if an unsupported mode is found.  The example above does
+this, since the machine instruction to be used only exists for
+@code{HImode}.
+
+If the @code{doloop_end} pattern is a @code{define_expand}, there must
+also be a @code{define_insn} or @code{define_insn_and_split} matching
+the generated pattern.  Otherwise, the compiler will fail during loop
+optimization.
 
 @end ifset
 @ifset INTERNALS
This page took 0.105552 seconds and 5 git commands to generate.