aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Tietz <ktietz@redhat.com>2014-06-05 19:03:52 +0200
committerKai Tietz <ktietz@gcc.gnu.org>2014-06-05 19:03:52 +0200
commit5853e181e6cb670ea90fe11afbe26a94aee76291 (patch)
tree0a4caf522966a51664bdbb066ce92052b22edeab
parentbeb219dde1fa330c37397500248ae318617ceefb (diff)
downloadgcc-5853e181e6cb670ea90fe11afbe26a94aee76291.zip
gcc-5853e181e6cb670ea90fe11afbe26a94aee76291.tar.gz
gcc-5853e181e6cb670ea90fe11afbe26a94aee76291.tar.bz2
re PR target/46219 (Generate indirect jump instruction on x86-64)
2014-06-05 Kai Tietz <ktietz@redhat.com> Richard Henderson <rth@redhat.com> PR target/46219 * config/i386/predicates.md (memory_nox32_operand): Add memory_operand checking for !TARGET_X32. * config/i386/i386.md (UNSPEC_PEEPSIB): New unspec constant. (sibcall_intern): New define_insn, plus required peepholes. (sibcall_pop_intern): Likewise. (sibcall_value_intern): Likewise. (sibcall_value_pop_intern): Likewise. 2014-06-05 Kai Tietz <ktietz@redhat.com> PR target/46219 * gcc.target/i386/sibcall-4.c: Remove xfail. Co-Authored-By: Richard Henderson <rth@redhat.com> From-SVN: r211283
-rw-r--r--gcc/ChangeLog12
-rw-r--r--gcc/config/i386/i386.md192
-rw-r--r--gcc/config/i386/predicates.md5
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.target/i386/sibcall-4.c2
5 files changed, 215 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7f70e2b..4d88dd2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,15 @@
+2014-06-05 Kai Tietz <ktietz@redhat.com>
+ Richard Henderson <rth@redhat.com>
+
+ PR target/46219
+ * config/i386/predicates.md (memory_nox32_operand): Add memory_operand
+ checking for !TARGET_X32.
+ * config/i386/i386.md (UNSPEC_PEEPSIB): New unspec constant.
+ (sibcall_intern): New define_insn, plus required peepholes.
+ (sibcall_pop_intern): Likewise.
+ (sibcall_value_intern): Likewise.
+ (sibcall_value_pop_intern): Likewise.
+
2014-06-05 Ilya Enkovich <ilya.enkovich@intel.com>
* tree-inline.c (tree_function_versioning): Check DF info existence
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index f7716a8..d08f47e 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -111,6 +111,7 @@
UNSPEC_LEA_ADDR
UNSPEC_XBEGIN_ABORT
UNSPEC_STOS
+ UNSPEC_PEEPSIB
;; For SSE/MMX support:
UNSPEC_FIX_NOTRUNC
@@ -11382,6 +11383,53 @@
"* return ix86_output_call_insn (insn, operands[0]);"
[(set_attr "type" "call")])
+(define_insn "*sibcall_intern"
+ [(call (unspec [(mem:QI (match_operand:W 0 "memory_nox32_operand"))]
+ UNSPEC_PEEPSIB)
+ (match_operand 1))]
+ ""
+ "* return ix86_output_call_insn (insn, operands[0]);"
+ [(set_attr "type" "call")])
+
+(define_peephole2
+ [(set (match_operand:DI 0 "register_operand")
+ (match_operand:DI 1 "memory_nox32_operand"))
+ (call (mem:QI (match_dup 0))
+ (match_operand 3))]
+ "TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3))])
+
+(define_peephole2
+ [(set (match_operand:DI 0 "register_operand")
+ (match_operand:DI 1 "memory_nox32_operand"))
+ (unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3))]
+ "TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (2))"
+ [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3))])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (call (mem:QI (match_dup 0))
+ (match_operand 3))]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3))])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3))]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (2))"
+ [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB) (match_dup 3))])
+
(define_expand "call_pop"
[(parallel [(call (match_operand:QI 0)
(match_operand:SI 1))
@@ -11415,6 +11463,43 @@
"* return ix86_output_call_insn (insn, operands[0]);"
[(set_attr "type" "call")])
+(define_insn "*sibcall_pop_intern"
+ [(call (unspec [(mem:QI (match_operand:SI 0 "memory_nox32_operand"))]
+ UNSPEC_PEEPSIB)
+ (match_operand 1))
+ (set (reg:SI SP_REG)
+ (plus:SI (reg:SI SP_REG)
+ (match_operand:SI 2 "immediate_operand" "i")))]
+ "!TARGET_64BIT"
+ "* return ix86_output_call_insn (insn, operands[0]);"
+ [(set_attr "type" "call")])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (parallel [(call (mem:QI (match_dup 0))
+ (match_operand 3))
+ (set (reg:SI SP_REG)
+ (match_operand 4))])]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(parallel [(call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3))
+ (set (reg:SI SP_REG) (match_dup 4))])])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (parallel [(call (mem:QI (match_dup 0))
+ (match_operand 3))
+ (set (reg:SI SP_REG)
+ (match_operand 4))])]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (2))"
+ [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (parallel [(call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3))
+ (set (reg:SI SP_REG) (match_dup 4))])])
+
;; Call subroutine, returning value in operand 0
(define_expand "call_value"
@@ -11457,6 +11542,63 @@
"* return ix86_output_call_insn (insn, operands[1]);"
[(set_attr "type" "callv")])
+(define_insn "*sibcall_value_intern"
+ [(set (match_operand 0)
+ (call (unspec [(mem:QI (match_operand:W 1 "memory_nox32_operand"))]
+ UNSPEC_PEEPSIB)
+ (match_operand 2)))]
+ ""
+ "* return ix86_output_call_insn (insn, operands[1]);"
+ [(set_attr "type" "callv")])
+
+(define_peephole2
+ [(set (match_operand:DI 0 "register_operand")
+ (match_operand:DI 1 "memory_nox32_operand"))
+ (set (match_operand 2)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3)))]
+ "TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(set (match_dup 2)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3)))])
+
+(define_peephole2
+ [(set (match_operand:DI 0 "register_operand")
+ (match_operand:DI 1 "memory_nox32_operand"))
+ (unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (set (match_operand 2)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3)))]
+ "TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (2))"
+ [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (set (match_dup 2)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3)))])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (set (match_operand 2)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3)))]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(set (match_dup 2)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3)))])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (set (match_operand 2)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3)))]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (2))"
+ [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (set (match_dup 2)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3)))])
+
(define_insn "*call_value_rex64_ms_sysv"
[(match_parallel 3 "call_rex64_ms_sysv_operation"
[(set (match_operand 0)
@@ -11503,6 +11645,56 @@
"* return ix86_output_call_insn (insn, operands[1]);"
[(set_attr "type" "callv")])
+(define_insn "*sibcall_value_pop_intern"
+ [(set (match_operand 0)
+ (call (unspec [(mem:QI (match_operand:SI 1 "memory_nox32_operand"))]
+ UNSPEC_PEEPSIB)
+ (match_operand 2)))
+ (set (reg:SI SP_REG)
+ (plus:SI (reg:SI SP_REG)
+ (match_operand:SI 3 "immediate_operand" "i")))]
+ "!TARGET_64BIT"
+ "* return ix86_output_call_insn (insn, operands[1]);"
+ [(set_attr "type" "callv")])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (parallel [(set (match_operand 2)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3)))
+ (set (reg:SI SP_REG)
+ (plus:SI (reg:SI SP_REG)
+ (match_operand:SI 4 "immediate_operand")))]
+ )]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(parallel [(set (match_dup 2)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3)))
+ (set (reg:SI SP_REG)
+ (plus:SI (reg:SI SP_REG)
+ (match_dup 4)))])])
+
+(define_peephole2
+ [(set (match_operand:SI 0 "register_operand")
+ (match_operand:SI 1 "memory_nox32_operand"))
+ (unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (parallel [(set (match_operand 2)
+ (call (mem:QI (match_dup 0))
+ (match_operand 3)))
+ (set (reg:SI SP_REG)
+ (plus:SI (reg:SI SP_REG)
+ (match_operand:SI 4 "immediate_operand")))]
+ )]
+ "!TARGET_64BIT && SIBLING_CALL_P (peep2_next_insn (1))"
+ [(unspec_volatile [(const_int 0)] UNSPECV_BLOCKAGE)
+ (parallel [(set (match_dup 2)
+ (call (unspec [(mem:QI (match_dup 1))] UNSPEC_PEEPSIB)
+ (match_dup 3)))
+ (set (reg:SI SP_REG)
+ (plus:SI (reg:SI SP_REG)
+ (match_dup 4)))])])
+
;; Call subroutine returning any type.
(define_expand "untyped_call"
diff --git a/gcc/config/i386/predicates.md b/gcc/config/i386/predicates.md
index 300c168..6794372 100644
--- a/gcc/config/i386/predicates.md
+++ b/gcc/config/i386/predicates.md
@@ -587,6 +587,11 @@
(ior (match_operand 0 "register_no_elim_operand")
(match_operand 0 "immediate_operand")))
+;; Test for a valid memory operand.
+(define_predicate "memory_nox32_operand"
+ (and (not (match_test "TARGET_X32"))
+ (match_operand 0 "memory_operand")))
+
;; Test for a valid operand for indirect branch.
(define_predicate "indirect_branch_operand"
(ior (match_operand 0 "register_operand")
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 53ed175..f5e25171 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2014-06-05 Kai Tietz <ktietz@redhat.com>
+
+ PR target/46219
+ * gcc.target/i386/sibcall-4.c: Remove xfail.
+
2014-06-05 Julian Brown <julian@codesourcery.com>
Sandra Loosemore <sandra@codesourcery.com>
diff --git a/gcc/testsuite/gcc.target/i386/sibcall-4.c b/gcc/testsuite/gcc.target/i386/sibcall-4.c
index c00a60e4..1d3f391 100644
--- a/gcc/testsuite/gcc.target/i386/sibcall-4.c
+++ b/gcc/testsuite/gcc.target/i386/sibcall-4.c
@@ -11,4 +11,4 @@ void male_indirect_jump (long offset)
dispatch[offset](offset);
}
-/* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" { xfail *-*-* } } } */
+/* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" } } */