From: Uros Bizjak Date: Tue, 5 Jun 2018 18:04:07 +0000 (+0200) Subject: i386.md (simple_return_indirect_internal): New expander. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c5913b3c284e36f26453b4e0ed4d3b7d442fa46;p=gcc.git i386.md (simple_return_indirect_internal): New expander. * config/i386/i386.md (simple_return_indirect_internal): New expander. (*simple_return_indirect_internal): Rename from simple_return_indirect_internal. Use W mode iterator. (rstorssp): New expander. (*rstorssp): Rename from rstorssp. Use P mode iterator. (clrssbsy): New expander. (*clrssbsy): Rename from clrssbsy. Use P mode iterator. From-SVN: r261208 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6643c2e7d1c..7fd7a544da5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +2018-06-05 Uros Bizjak + + * config/i386/i386.md (simple_return_indirect_internal): New expander. + (*simple_return_indirect_internal): Rename from + simple_return_indirect_internal. Use W mode iterator. + (rstorssp): New expander. + (*rstorssp): Rename from rstorssp. Use P mode iterator. + (clrssbsy): New expander. + (*clrssbsy): Rename from clrssbsy. Use P mode iterator. + 2018-06-05 Andre Vieira * config/arm/arm_cmse.h (cmse_nsfptr_create): Change typeof to diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 8337c613b4e..f1948468db5 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -13483,9 +13483,14 @@ (set_attr "modrm" "0") (set_attr "maybe_prefix_bnd" "1")]) -(define_insn "simple_return_indirect_internal" +(define_expand "simple_return_indirect_internal" + [(parallel + [(simple_return) + (use (match_operand 0 "register_operand"))])]) + +(define_insn "*simple_return_indirect_internal" [(simple_return) - (use (match_operand 0 "register_operand" "r"))] + (use (match_operand:W 0 "register_operand" "r"))] "reload_completed" "* return ix86_output_indirect_function_return (operands[0]);" [(set (attr "type") @@ -20641,7 +20646,7 @@ (define_insn "incssp" [(unspec_volatile [(match_operand:SWI48x 0 "register_operand" "r")] - UNSPECV_INCSSP)] + UNSPECV_INCSSP)] "TARGET_SHSTK || (flag_cf_protection & CF_RETURN)" "incssp\t%0" [(set_attr "length" "4") @@ -20654,9 +20659,14 @@ [(set_attr "length" "5") (set_attr "type" "other")]) -(define_insn "rstorssp" - [(unspec_volatile [(match_operand 0 "memory_operand" "m")] - UNSPECV_RSTORSSP)] +(define_expand "rstorssp" + [(unspec_volatile [(match_operand 0 "memory_operand")] + UNSPECV_RSTORSSP)] + "TARGET_SHSTK") + +(define_insn "*rstorssp" + [(unspec_volatile [(match_operand:P 0 "memory_operand" "m")] + UNSPECV_RSTORSSP)] "TARGET_SHSTK" "rstorssp\t%0" [(set_attr "length" "5") @@ -20665,7 +20675,7 @@ (define_insn "wrss" [(unspec_volatile [(match_operand:SWI48x 0 "register_operand" "r") (match_operand:SWI48x 1 "memory_operand" "m")] - UNSPECV_WRSS)] + UNSPECV_WRSS)] "TARGET_SHSTK" "wrss\t%0, %1" [(set_attr "length" "3") @@ -20674,7 +20684,7 @@ (define_insn "wruss" [(unspec_volatile [(match_operand:SWI48x 0 "register_operand" "r") (match_operand:SWI48x 1 "memory_operand" "m")] - UNSPECV_WRUSS)] + UNSPECV_WRUSS)] "TARGET_SHSTK" "wruss\t%0, %1" [(set_attr "length" "4") @@ -20687,9 +20697,14 @@ [(set_attr "length" "4") (set_attr "type" "other")]) -(define_insn "clrssbsy" - [(unspec_volatile [(match_operand 0 "memory_operand" "m")] - UNSPECV_CLRSSBSY)] +(define_expand "clrssbsy" + [(unspec_volatile [(match_operand 0 "memory_operand")] + UNSPECV_CLRSSBSY)] + "TARGET_SHSTK") + +(define_insn "*clrssbsy" + [(unspec_volatile [(match_operand:P 0 "memory_operand" "m")] + UNSPECV_CLRSSBSY)] "TARGET_SHSTK" "clrssbsy\t%0" [(set_attr "length" "4") @@ -20698,8 +20713,9 @@ (define_insn "nop_endbr" [(unspec_volatile [(const_int 0)] UNSPECV_NOP_ENDBR)] "(flag_cf_protection & CF_BRANCH)" - "* -{ return (TARGET_64BIT)? \"endbr64\" : \"endbr32\"; }" +{ + return TARGET_64BIT ? "endbr64" : "endbr32"; +} [(set_attr "length" "4") (set_attr "length_immediate" "0") (set_attr "modrm" "0")])