]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
alpha.md (stack_probe_internal): Rename from "probe_stack".
authorUros Bizjak <ubizjak@gmail.com>
Wed, 11 Apr 2018 19:03:51 +0000 (21:03 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Wed, 11 Apr 2018 19:03:51 +0000 (21:03 +0200)
* config/alpha/alpha.md (stack_probe_internal): Rename
from "probe_stack".  Update all callers.

From-SVN: r259330

gcc/ChangeLog
gcc/config/alpha/alpha.c
gcc/config/alpha/alpha.md

index 4b5ee7cd8f4b2ae0ee1c9bcd339d9fc7cc741ed2..e5c5e1836aefab437869d7cf954f67dd02454c11 100644 (file)
@@ -1,3 +1,8 @@
+2018-04-11  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/alpha/alpha.md (stack_probe_internal): Rename
+       from "probe_stack".  Update all callers.
+
 2018-04-10  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
        Backport from mainline
index e023d3bc2787625cdfc0bcff31c1f062f6a66473..365fc77de5edf3c74d54d08e27a200dd68f73243 100644 (file)
@@ -7739,13 +7739,13 @@ alpha_expand_prologue (void)
          int probed;
 
          for (probed = 4096; probed < probed_size; probed += 8192)
-           emit_insn (gen_probe_stack (GEN_INT (-probed)));
+           emit_insn (gen_stack_probe_internal (GEN_INT (-probed)));
 
          /* We only have to do this probe if we aren't saving registers or
             if we are probing beyond the frame because of -fstack-check.  */
          if ((sa_size == 0 && probed_size > probed - 4096)
              || flag_stack_check)
-           emit_insn (gen_probe_stack (GEN_INT (-probed_size)));
+           emit_insn (gen_stack_probe_internal (GEN_INT (-probed_size)));
        }
 
       if (frame_size != 0)
index 3e4594bf4c6476f7ba781d5ef1a4f7ba401f5aee..be75067ac124c666d63770603d40cbf840eededd 100644 (file)
 
 \f
 ;; Subroutine of stack space allocation.  Perform a stack probe.
-(define_expand "probe_stack"
+(define_expand "stack_probe_internal"
   [(set (match_dup 1) (match_operand:DI 0 "const_int_operand"))]
   ""
 {
 
          int probed = 4096;
 
-         emit_insn (gen_probe_stack (GEN_INT (- probed)));
+         emit_insn (gen_stack_probe_internal (GEN_INT (- probed)));
          while (probed + 8192 < INTVAL (operands[1]))
-           emit_insn (gen_probe_stack (GEN_INT (- (probed += 8192))));
+           emit_insn (gen_stack_probe_internal
+                      (GEN_INT (- (probed += 8192))));
 
          if (probed + 4096 < INTVAL (operands[1]))
-           emit_insn (gen_probe_stack (GEN_INT (- INTVAL(operands[1]))));
+           emit_insn (gen_stack_probe_internal
+                      (GEN_INT (- INTVAL(operands[1]))));
        }
 
       operands[1] = GEN_INT (- INTVAL (operands[1]));