/* Copyright (C) 1988-2024 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ #define IN_TARGET_CODE 1 #include "config.h" #include "system.h" #include "coretypes.h" #include "backend.h" #include "rtl.h" #include "tree.h" #include "memmodel.h" #include "gimple.h" #include "cfghooks.h" #include "cfgloop.h" #include "df.h" #include "tm_p.h" #include "stringpool.h" #include "expmed.h" #include "optabs.h" #include "regs.h" #include "emit-rtl.h" #include "recog.h" #include "cgraph.h" #include "diagnostic.h" #include "cfgbuild.h" #include "alias.h" #include "fold-const.h" #include "attribs.h" #include "calls.h" #include "stor-layout.h" #include "varasm.h" #include "output.h" #include "insn-attr.h" #include "flags.h" #include "except.h" #include "explow.h" #include "expr.h" #include "cfgrtl.h" #include "common/common-target.h" #include "langhooks.h" #include "reload.h" #include "gimplify.h" #include "dwarf2.h" #include "tm-constrs.h" #include "cselib.h" #include "sched-int.h" #include "opts.h" #include "tree-pass.h" #include "context.h" #include "pass_manager.h" #include "target-globals.h" #include "gimple-iterator.h" #include "shrink-wrap.h" #include "builtins.h" #include "rtl-iter.h" #include "tree-iterator.h" #include "dbgcnt.h" #include "case-cfn-macros.h" #include "dojump.h" #include "fold-const-call.h" #include "tree-vrp.h" #include "tree-ssanames.h" #include "selftest.h" #include "selftest-rtl.h" #include "print-rtl.h" #include "intl.h" #include "ifcvt.h" #include "symbol-summary.h" #include "sreal.h" #include "ipa-cp.h" #include "ipa-prop.h" #include "ipa-fnsummary.h" #include "wide-int-bitmask.h" #include "tree-vector-builder.h" #include "debug.h" #include "dwarf2out.h" #include "i386-builtins.h" #include "i386-features.h" #include "i386-expand.h" const char * const xlogue_layout::STUB_BASE_NAMES[XLOGUE_STUB_COUNT] = { "savms64", "resms64", "resms64x", "savms64f", "resms64f", "resms64fx" }; const unsigned xlogue_layout::REG_ORDER[xlogue_layout::MAX_REGS] = { /* The below offset values are where each register is stored for the layout relative to incoming stack pointer. The value of each m_regs[].offset will be relative to the incoming base pointer (rax or rsi) used by the stub. s_instances: 0 1 2 3 Offset: realigned or aligned + 8 Register aligned aligned + 8 aligned w/HFP w/HFP */ XMM15_REG, /* 0x10 0x18 0x10 0x18 */ XMM14_REG, /* 0x20 0x28 0x20 0x28 */ XMM13_REG, /* 0x30 0x38 0x30 0x38 */ XMM12_REG, /* 0x40 0x48 0x40 0x48 */ XMM11_REG, /* 0x50 0x58 0x50 0x58 */ XMM10_REG, /* 0x60 0x68 0x60 0x68 */ XMM9_REG, /* 0x70 0x78 0x70 0x78 */ XMM8_REG, /* 0x80 0x88 0x80 0x88 */ XMM7_REG, /* 0x90 0x98 0x90 0x98 */ XMM6_REG, /* 0xa0 0xa8 0xa0 0xa8 */ SI_REG, /* 0xa8 0xb0 0xa8 0xb0 */ DI_REG, /* 0xb0 0xb8 0xb0 0xb8 */ BX_REG, /* 0xb8 0xc0 0xb8 0xc0 */ BP_REG, /* 0xc0 0xc8 N/A N/A */ R12_REG, /* 0xc8 0xd0 0xc0 0xc8 */ R13_REG, /* 0xd0 0xd8 0xc8 0xd0 */ R14_REG, /* 0xd8 0xe0 0xd0 0xd8 */ R15_REG, /* 0xe0 0xe8 0xd8 0xe0 */ }; /* Instantiate static const values. */ const HOST_WIDE_INT xlogue_layout::STUB_INDEX_OFFSET; const unsigned xlogue_layout::MIN_REGS; const unsigned xlogue_layout::MAX_REGS; const unsigned xlogue_layout::MAX_EXTRA_REGS; const unsigned xlogue_layout::VARIANT_COUNT; const unsigned xlogue_layout::STUB_NAME_MAX_LEN; /* Initialize xlogue_layout::s_stub_names to zero. */ char xlogue_layout::s_stub_names[2][XLOGUE_STUB_COUNT][VARIANT_COUNT] [STUB_NAME_MAX_LEN]; /* Instantiates all xlogue_layout instances. */ const xlogue_layout xlogue_layout::s_instances[XLOGUE_SET_COUNT] = { xlogue_layout (0, false), xlogue_layout (8, false), xlogue_layout (0, true), xlogue_layout (8, true) }; /* Return an appropriate const instance of xlogue_layout based upon values in cfun->machine and crtl. */ const class xlogue_layout & xlogue_layout::get_instance () { enum xlogue_stub_sets stub_set; bool aligned_plus_8 = cfun->machine->call_ms2sysv_pad_in; if (stack_realign_fp) stub_set = XLOGUE_SET_HFP_ALIGNED_OR_REALIGN; else if (frame_pointer_needed) stub_set = aligned_plus_8 ? XLOGUE_SET_HFP_ALIGNED_PLUS_8 : XLOGUE_SET_HFP_ALIGNED_OR_REALIGN; else stub_set = aligned_plus_8 ? XLOGUE_SET_ALIGNED_PLUS_8 : XLOGUE_SET_ALIGNED; return s_instances[stub_set]; } /* Determine how many clobbered registers can be saved by the stub. Returns the count of registers the stub will save and restore. */ unsigned xlogue_layout::count_stub_managed_regs () { bool hfp = frame_pointer_needed || stack_realign_fp; unsigned i, count; unsigned regno; for (count = i = MIN_REGS; i < MAX_REGS; ++i) { regno = REG_ORDER[i]; if (regno == BP_REG && hfp) continue; if (!ix86_save_reg (regno, false, false)) break; ++count; } return count; } /* Determine if register REGNO is a stub managed register given the total COUNT of stub managed registers. */ bool xlogue_layout::is_stub_managed_reg (unsigned regno, unsigned count) { bool hfp = frame_pointer_needed || stack_realign_fp; unsigned i; for (i = 0; i < count; ++i) { gcc_assert (i < MAX_REGS); if (REG_ORDER[i] == BP_REG && hfp) ++count; else if (REG_ORDER[i] == regno) return true; } return false; } /* Constructor for xlogue_layout. */ xlogue_layout::xlogue_layout (HOST_WIDE_INT stack_align_off_in, bool hfp) : m_hfp (hfp) , m_nregs (hfp ? 17 : 18), m_stack_align_off_in (stack_align_off_in) { HOST_WIDE_INT offset = stack_align_off_in; unsigned i, j; for (i = j = 0; i < MAX_REGS; ++i) { unsigned regno = REG_ORDER[i]; if (regno == BP_REG && hfp) continue; if (SSE_REGNO_P (regno)) { offset += 16; /* Verify that SSE regs are always aligned. */ gcc_assert (!((stack_align_off_in + offset) & 15)); } else offset += 8; m_regs[j].regno = regno; m_regs[j++].offset = offset - STUB_INDEX_OFFSET; } gcc_assert (j == m_nregs); } const char * xlogue_layout::get_stub_name (enum xlogue_stub stub, unsigned n_extra_regs) { const int have_avx = TARGET_AVX; char *name = s_stub_names[!!have_avx][stub][n_extra_regs]; /* Lazy init */ if (!*name) { int res = snprintf (name, STUB_NAME_MAX_LEN, "__%s_%s_%u", (have_avx ? "avx" : "sse"), STUB_BASE_NAMES[stub], MIN_REGS + n_extra_regs); gcc_checking_assert (res < (int)STUB_NAME_MAX_LEN); } return name; } /* Return rtx of a symbol ref for the entry point (based upon cfun->machine->call_ms2sysv_extra_regs) of the specified stub. */ rtx xlogue_layout::get_stub_rtx (enum xlogue_stub stub) { const unsigned n_extra_regs = cfun->machine->call_ms2sysv_extra_regs; gcc_checking_assert (n_extra_regs <= MAX_EXTRA_REGS); gcc_assert (stub < XLOGUE_STUB_COUNT); gcc_assert (crtl->stack_realign_finalized); return gen_rtx_SYMBOL_REF (Pmode, get_stub_name (stub, n_extra_regs)); } unsigned scalar_chain::max_id = 0; namespace { /* Initialize new chain. */ scalar_chain::scalar_chain (enum machine_mode smode_, enum machine_mode vmode_) { smode = smode_; vmode = vmode_; chain_id = ++max_id; if (dump_file) fprintf (dump_file, "Created a new instruction chain #%d\n", chain_id); bitmap_obstack_initialize (NULL); insns = BITMAP_ALLOC (NULL); defs = BITMAP_ALLOC (NULL); defs_conv = BITMAP_ALLOC (NULL); insns_conv = BITMAP_ALLOC (NULL); queue = NULL; n_sse_to_integer = 0; n_integer_to_sse = 0; max_visits = x86_stv_max_visits; } /* Free chain's data. */ scalar_chain::~scalar_chain () { BITMAP_FREE (insns); BITMAP_FREE (defs); BITMAP_FREE (defs_conv); BITMAP_FREE (insns_conv); bitmap_obstack_release (NULL); } /* Add instruction into chains' queue. */ void scalar_chain::add_to_queue (unsigned insn_uid) { if (!bitmap_set_bit (queue, insn_uid)) return; if (dump_file) fprintf (dump_file, " Adding insn %d into chain's #%d queue\n", insn_uid, chain_id); } /* For DImode conversion, mark register defined by DEF as requiring conversion. */ void scalar_chain::mark_dual_mode_def (df_ref def) { gcc_assert (DF_REF_REG_DEF_P (def)); /* Record the def/insn pair so we can later efficiently iterate over the defs to convert on insns not in the chain. */ bool reg_new = bitmap_set_bit (defs_conv, DF_REF_REGNO (def)); if (!bitmap_bit_p (insns, DF_REF_INSN_UID (def))) { if (!bitmap_set_bit (insns_conv, DF_REF_INSN_UID (def)) && !reg_new) return; n_integer_to_sse++; } else { if (!reg_new) return; n_sse_to_integer++; } if (dump_file) fprintf (dump_file, " Mark r%d def in insn %d as requiring both modes in chain #%d\n", DF_REF_REGNO (def), DF_REF_INSN_UID (def), chain_id); } /* Check REF's chain to add new insns into a queue and find registers requiring conversion. Return true if OK, false if the analysis was aborted. */ bool scalar_chain::analyze_register_chain (bitmap candidates, df_ref ref, bitmap disallowed) { df_link *chain; bool mark_def = false; gcc_checking_assert (bitmap_bit_p (insns, DF_REF_INSN_UID (ref))); for (chain = DF_REF_CHAIN (ref); chain; chain = chain->next) { unsigned uid = DF_REF_INSN_UID (chain->ref); if (!NONDEBUG_INSN_P (DF_REF_INSN (chain->ref))) continue; if (--max_visits == 0) return false; if (!DF_REF_REG_MEM_P (chain->ref)) { if (bitmap_bit_p (insns, uid)) continue; if (bitmap_bit_p (candidates, uid)) { add_to_queue (uid); continue; } /* If we run into parts of an aborted chain discovery abort. */ if (bitmap_bit_p (disallowed, uid)) return false; } if (DF_REF_REG_DEF_P (chain->ref)) { if (dump_file) fprintf (dump_file, " r%d def in insn %d isn't convertible\n", DF_REF_REGNO (chain->ref), uid); mark_dual_mode_def (chain->ref); } else { if (dump_file) fprintf (dump_file, " r%d use in insn %d isn't convertible\n", DF_REF_REGNO (chain->ref), uid); mark_def = true; } } if (mark_def) mark_dual_mode_def (ref); return true; } /* Add instruction into a chain. Return true if OK, false if the search was aborted. */ bool scalar_chain::add_insn (bitmap candidates, unsigned int insn_uid, bitmap disallowed) { if (!bitmap_set_bit (insns, insn_uid)) return true; if (dump_file) fprintf (dump_file, " Adding insn %d to chain #%d\n", insn_uid, chain_id); rtx_insn *insn = DF_INSN_UID_GET (insn_uid)->insn; rtx def_set = single_set (insn); if (def_set && REG_P (SET_DEST (def_set)) && !HARD_REGISTER_P (SET_DEST (def_set))) bitmap_set_bit (defs, REGNO (SET_DEST (def_set))); /* ??? The following is quadratic since analyze_register_chain iterates over all refs to look for dual-mode regs. Instead this should be done separately for all regs mentioned in the chain once. */ df_ref ref; for (ref = DF_INSN_UID_DEFS (insn_uid); ref; ref = DF_REF_NEXT_LOC (ref)) if (!HARD_REGISTER_P (DF_REF_REG (ref))) if (!analyze_register_chain (candidates, ref, disallowed)) return false; /* The operand(s) of VEC_SELECT don't need to be converted/convertible. */ if (def_set && GET_CODE (SET_SRC (def_set)) == VEC_SELECT) return true; for (ref = DF_INSN_UID_USES (insn_uid); ref; ref = DF_REF_NEXT_LOC (ref)) if (!DF_REF_REG_MEM_P (ref)) if (!analyze_register_chain (candidates, ref, disallowed)) return false; return true; } /* Build new chain starting from insn INSN_UID recursively adding all dependent uses and definitions. Return true if OK, false if the chain discovery was aborted. */ bool scalar_chain::build (bitmap candidates, unsigned insn_uid, bitmap disallowed) { queue = BITMAP_ALLOC (NULL); bitmap_set_bit (queue, insn_uid); if (dump_file) fprintf (dump_file, "Building chain #%d...\n", chain_id); while (!bitmap_empty_p (queue)) { insn_uid = bitmap_first_set_bit (queue); bitmap_clear_bit (queue, insn_uid); bitmap_clear_bit (candidates, insn_uid); if (!add_insn (candidates, insn_uid, disallowed)) { /* If we aborted the search put sofar found insn on the set of disallowed insns so that further searches reaching them also abort and thus we abort the whole but yet undiscovered chain. */ bitmap_ior_into (disallowed, insns); if (dump_file) fprintf (dump_file, "Aborted chain #%d discovery\n", chain_id); BITMAP_FREE (queue); return false; } } if (dump_file) { fprintf (dump_file, "Collected chain #%d...\n", chain_id); fprintf (dump_file, " insns: "); dump_bitmap (dump_file, insns); if (!bitmap_empty_p (defs_conv)) { bitmap_iterator bi; unsigned id; const char *comma = ""; fprintf (dump_file, " defs to convert: "); EXECUTE_IF_SET_IN_BITMAP (defs_conv, 0, id, bi) { fprintf (dump_file, "%sr%d", comma, id); comma = ", "; } fprintf (dump_file, "\n"); } } BITMAP_FREE (queue); return true; } /* Return a cost of building a vector costant instead of using a scalar one. */ int general_scalar_chain::vector_const_cost (rtx exp) { gcc_assert (CONST_INT_P (exp)); if (standard_sse_constant_p (exp, vmode)) return ix86_cost->sse_op; /* We have separate costs for SImode and DImode, use SImode costs for smaller modes. */ return ix86_cost->sse_load[smode == DImode ? 1 : 0]; } /* Compute a gain for chain conversion. */ int general_scalar_chain::compute_convert_gain () { bitmap_iterator bi; unsigned insn_uid; int gain = 0; int cost = 0; if (dump_file) fprintf (dump_file, "Computing gain for chain #%d...\n", chain_id); /* SSE costs distinguish between SImode and DImode loads/stores, for int costs factor in the number of GPRs involved. When supporting smaller modes than SImode the int load/store costs need to be adjusted as well. */ unsigned sse_cost_idx = smode == DImode ? 1 : 0; unsigned m = smode == DImode ? (TARGET_64BIT ? 1 : 2) : 1; EXECUTE_IF_SET_IN_BITMAP (insns, 0, insn_uid, bi) { rtx_insn *insn = DF_INSN_UID_GET (insn_uid)->insn; rtx def_set = single_set (insn); rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); int igain = 0; if (REG_P (src) && REG_P (dst)) igain += 2 * m - ix86_cost->xmm_move; else if (REG_P (src) && MEM_P (dst)) igain += m * ix86_cost->int_store[2] - ix86_cost->sse_store[sse_cost_idx]; else if (MEM_P (src) && REG_P (dst)) igain += m * ix86_cost->int_load[2] - ix86_cost->sse_load[sse_cost_idx]; else { /* For operations on memory operands, include the overhead of explicit load and store instructions. */ if (MEM_P (dst)) igain += optimize_insn_for_size_p () ? -COSTS_N_BYTES (8) : (m * (ix86_cost->int_load[2] + ix86_cost->int_store[2]) - (ix86_cost->sse_load[sse_cost_idx] + ix86_cost->sse_store[sse_cost_idx])); switch (GET_CODE (src)) { case ASHIFT: case ASHIFTRT: case LSHIFTRT: if (m == 2) { if (INTVAL (XEXP (src, 1)) >= 32) igain += ix86_cost->add; /* Gain for extend highpart case. */ else if (GET_CODE (XEXP (src, 0)) == ASHIFT) igain += ix86_cost->shift_const - ix86_cost->sse_op; else igain += ix86_cost->shift_const; } igain += ix86_cost->shift_const - ix86_cost->sse_op; if (CONST_INT_P (XEXP (src, 0))) igain -= vector_const_cost (XEXP (src, 0)); break; case ROTATE: case ROTATERT: igain += m * ix86_cost->shift_const; if (TARGET_AVX512VL) igain -= ix86_cost->sse_op; else if (smode == DImode) { int bits = INTVAL (XEXP (src, 1)); if ((bits & 0x0f) == 0) igain -= ix86_cost->sse_op; else if ((bits & 0x07) == 0) igain -= 2 * ix86_cost->sse_op; else igain -= 3 * ix86_cost->sse_op; } else if (INTVAL (XEXP (src, 1)) == 16) igain -= ix86_cost->sse_op; else igain -= 2 * ix86_cost->sse_op; break; case AND: case IOR: case XOR: case PLUS: case MINUS: igain += m * ix86_cost->add - ix86_cost->sse_op; /* Additional gain for andnot for targets without BMI. */ if (GET_CODE (XEXP (src, 0)) == NOT && !TARGET_BMI) igain += m * ix86_cost->add; if (CONST_INT_P (XEXP (src, 0))) igain -= vector_const_cost (XEXP (src, 0)); if (CONST_INT_P (XEXP (src, 1))) igain -= vector_const_cost (XEXP (src, 1)); if (MEM_P (XEXP (src, 1))) { if (optimize_insn_for_size_p ()) igain -= COSTS_N_BYTES (m == 2 ? 3 : 5); else igain += m * ix86_cost->int_load[2] - ix86_cost->sse_load[sse_cost_idx]; } break; case NEG: case NOT: igain -= ix86_cost->sse_op + COSTS_N_INSNS (1); if (GET_CODE (XEXP (src, 0)) != ABS) { igain += m * ix86_cost->add; break; } /* FALLTHRU */ case ABS: case SMAX: case SMIN: case UMAX: case UMIN: /* We do not have any conditional move cost, estimate it as a reg-reg move. Comparisons are costed as adds. */ igain += m * (COSTS_N_INSNS (2) + ix86_cost->add); /* Integer SSE ops are all costed the same. */ igain -= ix86_cost->sse_op; break; case COMPARE: if (XEXP (src, 1) != const0_rtx) { /* cmp vs. pxor;pshufd;ptest. */ igain += COSTS_N_INSNS (m - 3); } else if (GET_CODE (XEXP (src, 0)) != AND) { /* test vs. pshufd;ptest. */ igain += COSTS_N_INSNS (m - 2); } else if (GET_CODE (XEXP (XEXP (src, 0), 0)) != NOT) { /* and;test vs. pshufd;ptest. */ igain += COSTS_N_INSNS (2 * m - 2); } else if (TARGET_BMI) { /* andn;test vs. pandn;pshufd;ptest. */ igain += COSTS_N_INSNS (2 * m - 3); } else { /* not;and;test vs. pandn;pshufd;ptest. */ igain += COSTS_N_INSNS (3 * m - 3); } break; case CONST_INT: if (REG_P (dst)) { if (optimize_insn_for_size_p ()) { /* xor (2 bytes) vs. xorps (3 bytes). */ if (src == const0_rtx) igain -= COSTS_N_BYTES (1); /* movdi_internal vs. movv2di_internal. */ /* => mov (5 bytes) vs. movaps (7 bytes). */ else if (x86_64_immediate_operand (src, SImode)) igain -= COSTS_N_BYTES (2); else /* ??? Larger immediate constants are placed in the constant pool, where the size benefit/impact of STV conversion is affected by whether and how often each constant pool entry is shared/reused. The value below is empirically derived from the CSiBE benchmark (and the optimal value may drift over time). */ igain += COSTS_N_BYTES (0); } else { /* DImode can be immediate for TARGET_64BIT and SImode always. */ igain += m * COSTS_N_INSNS (1); igain -= vector_const_cost (src); } } else if (MEM_P (dst)) { igain += (m * ix86_cost->int_store[2] - ix86_cost->sse_store[sse_cost_idx]); igain -= vector_const_cost (src); } break; case VEC_SELECT: if (XVECEXP (XEXP (src, 1), 0, 0) == const0_rtx) { // movd (4 bytes) replaced with movdqa (4 bytes). if (!optimize_insn_for_size_p ()) igain += ix86_cost->sse_to_integer - ix86_cost->xmm_move; } else { // pshufd; movd replaced with pshufd. if (optimize_insn_for_size_p ()) igain += COSTS_N_BYTES (4); else igain += ix86_cost->sse_to_integer; } break; default: gcc_unreachable (); } } if (igain != 0 && dump_file) { fprintf (dump_file, " Instruction gain %d for ", igain); dump_insn_slim (dump_file, insn); } gain += igain; } if (dump_file) fprintf (dump_file, " Instruction conversion gain: %d\n", gain); /* Cost the integer to sse and sse to integer moves. */ if (!optimize_function_for_size_p (cfun)) { cost += n_sse_to_integer * ix86_cost->sse_to_integer; /* ??? integer_to_sse but we only have that in the RA cost table. Assume sse_to_integer/integer_to_sse are the same which they are at the moment. */ cost += n_integer_to_sse * ix86_cost->sse_to_integer; } else if (TARGET_64BIT || smode == SImode) { cost += n_sse_to_integer * COSTS_N_BYTES (4); cost += n_integer_to_sse * COSTS_N_BYTES (4); } else if (TARGET_SSE4_1) { /* vmovd (4 bytes) + vpextrd (6 bytes). */ cost += n_sse_to_integer * COSTS_N_BYTES (10); /* vmovd (4 bytes) + vpinsrd (6 bytes). */ cost += n_integer_to_sse * COSTS_N_BYTES (10); } else { /* movd (4 bytes) + psrlq (5 bytes) + movd (4 bytes). */ cost += n_sse_to_integer * COSTS_N_BYTES (13); /* movd (4 bytes) + movd (4 bytes) + unpckldq (4 bytes). */ cost += n_integer_to_sse * COSTS_N_BYTES (12); } if (dump_file) fprintf (dump_file, " Registers conversion cost: %d\n", cost); gain -= cost; if (dump_file) fprintf (dump_file, " Total gain: %d\n", gain); return gain; } /* Insert generated conversion instruction sequence INSNS after instruction AFTER. New BB may be required in case instruction has EH region attached. */ void scalar_chain::emit_conversion_insns (rtx insns, rtx_insn *after) { if (!control_flow_insn_p (after)) { emit_insn_after (insns, after); return; } basic_block bb = BLOCK_FOR_INSN (after); edge e = find_fallthru_edge (bb->succs); gcc_assert (e); basic_block new_bb = split_edge (e); emit_insn_after (insns, BB_HEAD (new_bb)); } } // anon namespace /* Generate the canonical SET_SRC to move GPR to a VMODE vector register, zeroing the upper parts. */ static rtx gen_gpr_to_xmm_move_src (enum machine_mode vmode, rtx gpr) { switch (GET_MODE_NUNITS (vmode)) { case 1: return gen_rtx_SUBREG (vmode, gpr, 0); case 2: return gen_rtx_VEC_CONCAT (vmode, gpr, CONST0_RTX (GET_MODE_INNER (vmode))); default: return gen_rtx_VEC_MERGE (vmode, gen_rtx_VEC_DUPLICATE (vmode, gpr), CONST0_RTX (vmode), GEN_INT (HOST_WIDE_INT_1U)); } } /* Make vector copies for all register REGNO definitions and replace its uses in a chain. */ void scalar_chain::make_vector_copies (rtx_insn *insn, rtx reg) { rtx vreg = *defs_map.get (reg); start_sequence (); if (!TARGET_INTER_UNIT_MOVES_TO_VEC) { rtx tmp = assign_386_stack_local (smode, SLOT_STV_TEMP); if (smode == DImode && !TARGET_64BIT) { emit_move_insn (adjust_address (tmp, SImode, 0), gen_rtx_SUBREG (SImode, reg, 0)); emit_move_insn (adjust_address (tmp, SImode, 4), gen_rtx_SUBREG (SImode, reg, 4)); } else emit_move_insn (copy_rtx (tmp), reg); emit_insn (gen_rtx_SET (gen_rtx_SUBREG (vmode, vreg, 0), gen_gpr_to_xmm_move_src (vmode, tmp))); } else if (!TARGET_64BIT && smode == DImode) { if (TARGET_SSE4_1) { emit_insn (gen_sse2_loadld (gen_rtx_SUBREG (V4SImode, vreg, 0), CONST0_RTX (V4SImode), gen_rtx_SUBREG (SImode, reg, 0))); emit_insn (gen_sse4_1_pinsrd (gen_rtx_SUBREG (V4SImode, vreg, 0), gen_rtx_SUBREG (V4SImode, vreg, 0), gen_rtx_SUBREG (SImode, reg, 4), GEN_INT (2))); } else { rtx tmp = gen_reg_rtx (DImode); emit_insn (gen_sse2_loadld (gen_rtx_SUBREG (V4SImode, vreg, 0), CONST0_RTX (V4SImode), gen_rtx_SUBREG (SImode, reg, 0))); emit_insn (gen_sse2_loadld (gen_rtx_SUBREG (V4SImode, tmp, 0), CONST0_RTX (V4SImode), gen_rtx_SUBREG (SImode, reg, 4))); emit_insn (gen_vec_interleave_lowv4si (gen_rtx_SUBREG (V4SImode, vreg, 0), gen_rtx_SUBREG (V4SImode, vreg, 0), gen_rtx_SUBREG (V4SImode, tmp, 0))); } } else emit_insn (gen_rtx_SET (gen_rtx_SUBREG (vmode, vreg, 0), gen_gpr_to_xmm_move_src (vmode, reg))); rtx_insn *seq = get_insns (); end_sequence (); emit_conversion_insns (seq, insn); if (dump_file) fprintf (dump_file, " Copied r%d to a vector register r%d for insn %d\n", REGNO (reg), REGNO (vreg), INSN_UID (insn)); } /* Copy the definition SRC of INSN inside the chain to DST for scalar uses outside of the chain. */ void scalar_chain::convert_reg (rtx_insn *insn, rtx dst, rtx src) { start_sequence (); if (!TARGET_INTER_UNIT_MOVES_FROM_VEC) { rtx tmp = assign_386_stack_local (smode, SLOT_STV_TEMP); emit_move_insn (tmp, src); if (!TARGET_64BIT && smode == DImode) { emit_move_insn (gen_rtx_SUBREG (SImode, dst, 0), adjust_address (tmp, SImode, 0)); emit_move_insn (gen_rtx_SUBREG (SImode, dst, 4), adjust_address (tmp, SImode, 4)); } else emit_move_insn (dst, copy_rtx (tmp)); } else if (!TARGET_64BIT && smode == DImode) { if (TARGET_SSE4_1) { rtx tmp = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (1, const0_rtx)); emit_insn (gen_rtx_SET (gen_rtx_SUBREG (SImode, dst, 0), gen_rtx_VEC_SELECT (SImode, gen_rtx_SUBREG (V4SImode, src, 0), tmp))); tmp = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (1, const1_rtx)); emit_insn (gen_rtx_SET (gen_rtx_SUBREG (SImode, dst, 4), gen_rtx_VEC_SELECT (SImode, gen_rtx_SUBREG (V4SImode, src, 0), tmp))); } else { rtx vcopy = gen_reg_rtx (V2DImode); emit_move_insn (vcopy, gen_rtx_SUBREG (V2DImode, src, 0)); emit_move_insn (gen_rtx_SUBREG (SImode, dst, 0), gen_rtx_SUBREG (SImode, vcopy, 0)); emit_move_insn (vcopy, gen_rtx_LSHIFTRT (V2DImode, vcopy, GEN_INT (32))); emit_move_insn (gen_rtx_SUBREG (SImode, dst, 4), gen_rtx_SUBREG (SImode, vcopy, 0)); } } else emit_move_insn (dst, src); rtx_insn *seq = get_insns (); end_sequence (); emit_conversion_insns (seq, insn); if (dump_file) fprintf (dump_file, " Copied r%d to a scalar register r%d for insn %d\n", REGNO (src), REGNO (dst), INSN_UID (insn)); } /* Helper function to convert immediate constant X to vmode. */ static rtx smode_convert_cst (rtx x, enum machine_mode vmode) { /* Prefer all ones vector in case of -1. */ if (constm1_operand (x, GET_MODE (x))) return CONSTM1_RTX (vmode); unsigned n = GET_MODE_NUNITS (vmode); rtx *v = XALLOCAVEC (rtx, n); v[0] = x; for (unsigned i = 1; i < n; ++i) v[i] = const0_rtx; return gen_rtx_CONST_VECTOR (vmode, gen_rtvec_v (n, v)); } /* Convert operand OP in INSN. We should handle memory operands and uninitialized registers. All other register uses are converted during registers conversion. */ void scalar_chain::convert_op (rtx *op, rtx_insn *insn) { rtx tmp; if (GET_MODE (*op) == V1TImode) return; *op = copy_rtx_if_shared (*op); if (GET_CODE (*op) == NOT || GET_CODE (*op) == ASHIFT) { convert_op (&XEXP (*op, 0), insn); PUT_MODE (*op, vmode); } else if (MEM_P (*op)) { rtx_insn *movabs = NULL; /* Emit MOVABS to load from a 64-bit absolute address to a GPR. */ if (!memory_operand (*op, GET_MODE (*op))) { tmp = gen_reg_rtx (GET_MODE (*op)); movabs = emit_insn_before (gen_rtx_SET (tmp, *op), insn); *op = tmp; } tmp = gen_rtx_SUBREG (vmode, gen_reg_rtx (GET_MODE (*op)), 0); rtx_insn *eh_insn = emit_insn_before (gen_rtx_SET (copy_rtx (tmp), gen_gpr_to_xmm_move_src (vmode, *op)), insn); if (cfun->can_throw_non_call_exceptions) { /* Handle REG_EH_REGION note. */ rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX); if (note) { if (movabs) eh_insn = movabs; control_flow_insns.safe_push (eh_insn); add_reg_note (eh_insn, REG_EH_REGION, XEXP (note, 0)); } } *op = tmp; if (dump_file) fprintf (dump_file, " Preloading operand for insn %d into r%d\n", INSN_UID (insn), REGNO (tmp)); } else if (REG_P (*op)) *op = gen_rtx_SUBREG (vmode, *op, 0); else if (CONST_SCALAR_INT_P (*op)) { rtx vec_cst = smode_convert_cst (*op, vmode); if (!standard_sse_constant_p (vec_cst, vmode)) { start_sequence (); vec_cst = validize_mem (force_const_mem (vmode, vec_cst)); rtx_insn *seq = get_insns (); end_sequence (); emit_insn_before (seq, insn); } tmp = gen_rtx_SUBREG (vmode, gen_reg_rtx (smode), 0); emit_insn_before (gen_move_insn (copy_rtx (tmp), vec_cst), insn); *op = tmp; } else { gcc_assert (SUBREG_P (*op)); gcc_assert (GET_MODE (*op) == vmode); } } /* Convert CCZmode COMPARE to vector mode. */ rtx scalar_chain::convert_compare (rtx op1, rtx op2, rtx_insn *insn) { rtx src, tmp; /* Handle any REG_EQUAL notes. */ tmp = find_reg_equal_equiv_note (insn); if (tmp) { if (GET_CODE (XEXP (tmp, 0)) == COMPARE && GET_MODE (XEXP (tmp, 0)) == CCZmode && REG_P (XEXP (XEXP (tmp, 0), 0))) { rtx *op = &XEXP (XEXP (tmp, 0), 1); if (CONST_SCALAR_INT_P (*op)) { if (constm1_operand (*op, GET_MODE (*op))) *op = CONSTM1_RTX (vmode); else { unsigned n = GET_MODE_NUNITS (vmode); rtx *v = XALLOCAVEC (rtx, n); v[0] = *op; for (unsigned i = 1; i < n; ++i) v[i] = const0_rtx; *op = gen_rtx_CONST_VECTOR (vmode, gen_rtvec_v (n, v)); } tmp = NULL_RTX; } else if (REG_P (*op)) tmp = NULL_RTX; } if (tmp) remove_note (insn, tmp); } /* Comparison against anything other than zero, requires an XOR. */ if (op2 != const0_rtx) { convert_op (&op1, insn); convert_op (&op2, insn); /* If both operands are MEMs, explicitly load the OP1 into TMP. */ if (MEM_P (op1) && MEM_P (op2)) { tmp = gen_reg_rtx (vmode); emit_insn_before (gen_rtx_SET (tmp, op1), insn); src = tmp; } else src = op1; src = gen_rtx_XOR (vmode, src, op2); } else if (GET_CODE (op1) == AND && GET_CODE (XEXP (op1, 0)) == NOT) { rtx op11 = XEXP (XEXP (op1, 0), 0); rtx op12 = XEXP (op1, 1); convert_op (&op11, insn); convert_op (&op12, insn); if (!REG_P (op11)) { tmp = gen_reg_rtx (vmode); emit_insn_before (gen_rtx_SET (tmp, op11), insn); op11 = tmp; } src = gen_rtx_AND (vmode, gen_rtx_NOT (vmode, op11), op12); } else if (GET_CODE (op1) == AND) { rtx op11 = XEXP (op1, 0); rtx op12 = XEXP (op1, 1); convert_op (&op11, insn); convert_op (&op12, insn); if (!REG_P (op11)) { tmp = gen_reg_rtx (vmode); emit_insn_before (gen_rtx_SET (tmp, op11), insn); op11 = tmp; } return gen_rtx_UNSPEC (CCZmode, gen_rtvec (2, op11, op12), UNSPEC_PTEST); } else { convert_op (&op1, insn); src = op1; } if (!REG_P (src)) { tmp = gen_reg_rtx (vmode); emit_insn_before (gen_rtx_SET (tmp, src), insn); src = tmp; } if (vmode == V2DImode) { tmp = gen_reg_rtx (vmode); emit_insn_before (gen_vec_interleave_lowv2di (tmp, src, src), insn); src = tmp; } else if (vmode == V4SImode) { tmp = gen_reg_rtx (vmode); emit_insn_before (gen_sse2_pshufd (tmp, src, const0_rtx), insn); src = tmp; } return gen_rtx_UNSPEC (CCZmode, gen_rtvec (2, src, src), UNSPEC_PTEST); } /* Helper function for converting INSN to vector mode. */ void scalar_chain::convert_insn_common (rtx_insn *insn) { /* Generate copies for out-of-chain uses of defs and adjust debug uses. */ for (df_ref ref = DF_INSN_DEFS (insn); ref; ref = DF_REF_NEXT_LOC (ref)) if (bitmap_bit_p (defs_conv, DF_REF_REGNO (ref))) { df_link *use; for (use = DF_REF_CHAIN (ref); use; use = use->next) if (NONDEBUG_INSN_P (DF_REF_INSN (use->ref)) && (DF_REF_REG_MEM_P (use->ref) || !bitmap_bit_p (insns, DF_REF_INSN_UID (use->ref)))) break; if (use) convert_reg (insn, DF_REF_REG (ref), *defs_map.get (regno_reg_rtx [DF_REF_REGNO (ref)])); else if (MAY_HAVE_DEBUG_BIND_INSNS) { /* If we generated a scalar copy we can leave debug-insns as-is, if not, we have to adjust them. */ auto_vec to_reset_debug_insns; for (use = DF_REF_CHAIN (ref); use; use = use->next) if (DEBUG_INSN_P (DF_REF_INSN (use->ref))) { rtx_insn *debug_insn = DF_REF_INSN (use->ref); /* If there's a reaching definition outside of the chain we have to reset. */ df_link *def; for (def = DF_REF_CHAIN (use->ref); def; def = def->next) if (!bitmap_bit_p (insns, DF_REF_INSN_UID (def->ref))) break; if (def) to_reset_debug_insns.safe_push (debug_insn); else { *DF_REF_REAL_LOC (use->ref) = *defs_map.get (regno_reg_rtx [DF_REF_REGNO (ref)]); df_insn_rescan (debug_insn); } } /* Have to do the reset outside of the DF_CHAIN walk to not disrupt it. */ while (!to_reset_debug_insns.is_empty ()) { rtx_insn *debug_insn = to_reset_debug_insns.pop (); INSN_VAR_LOCATION_LOC (debug_insn) = gen_rtx_UNKNOWN_VAR_LOC (); df_insn_rescan_debug_internal (debug_insn); } } } /* Replace uses in this insn with the defs we use in the chain. */ for (df_ref ref = DF_INSN_USES (insn); ref; ref = DF_REF_NEXT_LOC (ref)) if (!DF_REF_REG_MEM_P (ref)) if (rtx *vreg = defs_map.get (regno_reg_rtx[DF_REF_REGNO (ref)])) { /* Also update a corresponding REG_DEAD note. */ rtx note = find_reg_note (insn, REG_DEAD, DF_REF_REG (ref)); if (note) XEXP (note, 0) = *vreg; *DF_REF_REAL_LOC (ref) = *vreg; } } /* Convert INSN which is an SImode or DImode rotation by a constant to vector mode. CODE is either ROTATE or ROTATERT with operands OP0 and OP1. Returns the SET_SRC of the last instruction in the resulting sequence, which is emitted before INSN. */ rtx general_scalar_chain::convert_rotate (enum rtx_code code, rtx op0, rtx op1, rtx_insn *insn) { int bits = INTVAL (op1); rtx pat, result; convert_op (&op0, insn); if (bits == 0) return op0; if (smode == DImode) { if (code == ROTATE) bits = 64 - bits; if (bits == 32) { rtx tmp1 = gen_reg_rtx (V4SImode); pat = gen_sse2_pshufd (tmp1, gen_lowpart (V4SImode, op0), GEN_INT (225)); emit_insn_before (pat, insn); result = gen_lowpart (V2DImode, tmp1); } else if (TARGET_AVX512VL) result = simplify_gen_binary (code, V2DImode, op0, op1); else if (bits == 16 || bits == 48) { rtx tmp1 = gen_reg_rtx (V8HImode); pat = gen_sse2_pshuflw (tmp1, gen_lowpart (V8HImode, op0), GEN_INT (bits == 16 ? 57 : 147)); emit_insn_before (pat, insn); result = gen_lowpart (V2DImode, tmp1); } else if ((bits & 0x07) == 0) { rtx tmp1 = gen_reg_rtx (V4SImode); pat = gen_sse2_pshufd (tmp1, gen_lowpart (V4SImode, op0), GEN_INT (68)); emit_insn_before (pat, insn); rtx tmp2 = gen_reg_rtx (V1TImode); pat = gen_sse2_lshrv1ti3 (tmp2, gen_lowpart (V1TImode, tmp1), GEN_INT (bits)); emit_insn_before (pat, insn); result = gen_lowpart (V2DImode, tmp2); } else { rtx tmp1 = gen_reg_rtx (V4SImode); pat = gen_sse2_pshufd (tmp1, gen_lowpart (V4SImode, op0), GEN_INT (20)); emit_insn_before (pat, insn); rtx tmp2 = gen_reg_rtx (V2DImode); pat = gen_lshrv2di3 (tmp2, gen_lowpart (V2DImode, tmp1), GEN_INT (bits & 31)); emit_insn_before (pat, insn); rtx tmp3 = gen_reg_rtx (V4SImode); pat = gen_sse2_pshufd (tmp3, gen_lowpart (V4SImode, tmp2), GEN_INT (bits > 32 ? 34 : 136)); emit_insn_before (pat, insn); result = gen_lowpart (V2DImode, tmp3); } } else if (bits == 16) { rtx tmp1 = gen_reg_rtx (V8HImode); pat = gen_sse2_pshuflw (tmp1, gen_lowpart (V8HImode, op0), GEN_INT (225)); emit_insn_before (pat, insn); result = gen_lowpart (V4SImode, tmp1); } else if (TARGET_AVX512VL) result = simplify_gen_binary (code, V4SImode, op0, op1); else { if (code == ROTATE) bits = 32 - bits; rtx tmp1 = gen_reg_rtx (V4SImode); emit_insn_before (gen_sse2_pshufd (tmp1, op0, GEN_INT (224)), insn); rtx tmp2 = gen_reg_rtx (V2DImode); pat = gen_lshrv2di3 (tmp2, gen_lowpart (V2DImode, tmp1), GEN_INT (bits)); emit_insn_before (pat, insn); result = gen_lowpart (V4SImode, tmp2); } return result; } /* Convert INSN to vector mode. */ void general_scalar_chain::convert_insn (rtx_insn *insn) { rtx def_set = single_set (insn); rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); rtx subreg; if (MEM_P (dst) && !REG_P (src)) { /* There are no scalar integer instructions and therefore temporary register usage is required. */ rtx tmp = gen_reg_rtx (smode); emit_conversion_insns (gen_move_insn (dst, tmp), insn); dst = gen_rtx_SUBREG (vmode, tmp, 0); } else if (REG_P (dst) && GET_MODE (dst) == smode) { /* Replace the definition with a SUBREG to the definition we use inside the chain. */ rtx *vdef = defs_map.get (dst); if (vdef) dst = *vdef; dst = gen_rtx_SUBREG (vmode, dst, 0); /* IRA doesn't like to have REG_EQUAL/EQUIV notes when the SET_DEST is a non-REG_P. So kill those off. */ rtx note = find_reg_equal_equiv_note (insn); if (note) remove_note (insn, note); } switch (GET_CODE (src)) { case PLUS: case MINUS: case IOR: case XOR: case AND: case SMAX: case SMIN: case UMAX: case UMIN: convert_op (&XEXP (src, 1), insn); /* FALLTHRU */ case ABS: case ASHIFT: case ASHIFTRT: case LSHIFTRT: convert_op (&XEXP (src, 0), insn); PUT_MODE (src, vmode); break; case ROTATE: case ROTATERT: src = convert_rotate (GET_CODE (src), XEXP (src, 0), XEXP (src, 1), insn); break; case NEG: src = XEXP (src, 0); if (GET_CODE (src) == ABS) { src = XEXP (src, 0); convert_op (&src, insn); subreg = gen_reg_rtx (vmode); emit_insn_before (gen_rtx_SET (subreg, gen_rtx_ABS (vmode, src)), insn); src = subreg; } else convert_op (&src, insn); subreg = gen_reg_rtx (vmode); emit_insn_before (gen_move_insn (subreg, CONST0_RTX (vmode)), insn); src = gen_rtx_MINUS (vmode, subreg, src); break; case NOT: src = XEXP (src, 0); convert_op (&src, insn); subreg = gen_reg_rtx (vmode); emit_insn_before (gen_move_insn (subreg, CONSTM1_RTX (vmode)), insn); src = gen_rtx_XOR (vmode, src, subreg); break; case MEM: if (!REG_P (dst)) convert_op (&src, insn); break; case REG: if (!MEM_P (dst)) convert_op (&src, insn); break; case SUBREG: gcc_assert (GET_MODE (src) == vmode); break; case COMPARE: dst = gen_rtx_REG (CCZmode, FLAGS_REG); src = convert_compare (XEXP (src, 0), XEXP (src, 1), insn); break; case CONST_INT: convert_op (&src, insn); break; case VEC_SELECT: if (XVECEXP (XEXP (src, 1), 0, 0) == const0_rtx) src = XEXP (src, 0); else if (smode == DImode) { rtx tmp = gen_lowpart (V1TImode, XEXP (src, 0)); dst = gen_lowpart (V1TImode, dst); src = gen_rtx_LSHIFTRT (V1TImode, tmp, GEN_INT (64)); } else { rtx tmp = XVECEXP (XEXP (src, 1), 0, 0); rtvec vec = gen_rtvec (4, tmp, tmp, tmp, tmp); rtx par = gen_rtx_PARALLEL (VOIDmode, vec); src = gen_rtx_VEC_SELECT (vmode, XEXP (src, 0), par); } break; default: gcc_unreachable (); } SET_SRC (def_set) = src; SET_DEST (def_set) = dst; /* Drop possible dead definitions. */ PATTERN (insn) = def_set; INSN_CODE (insn) = -1; int patt = recog_memoized (insn); if (patt == -1) fatal_insn_not_found (insn); df_insn_rescan (insn); } /* Compute a gain for chain conversion. */ int timode_scalar_chain::compute_convert_gain () { /* Assume that if we have to move TImode values between units, then transforming this chain isn't worth it. */ if (n_sse_to_integer || n_integer_to_sse) return -1; bitmap_iterator bi; unsigned insn_uid; /* Split ties to prefer V1TImode when not optimizing for size. */ int gain = optimize_size ? 0 : 1; if (dump_file) fprintf (dump_file, "Computing gain for chain #%d...\n", chain_id); EXECUTE_IF_SET_IN_BITMAP (insns, 0, insn_uid, bi) { rtx_insn *insn = DF_INSN_UID_GET (insn_uid)->insn; rtx def_set = single_set (insn); rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); HOST_WIDE_INT op1val; int scost, vcost; int igain = 0; switch (GET_CODE (src)) { case REG: if (optimize_insn_for_size_p ()) igain = MEM_P (dst) ? COSTS_N_BYTES (6) : COSTS_N_BYTES (3); else igain = COSTS_N_INSNS (1); break; case MEM: igain = optimize_insn_for_size_p () ? COSTS_N_BYTES (7) : COSTS_N_INSNS (1); break; case CONST_INT: if (MEM_P (dst) && standard_sse_constant_p (src, V1TImode)) igain = optimize_insn_for_size_p() ? COSTS_N_BYTES (11) : 1; break; case NOT: if (MEM_P (dst)) igain = -COSTS_N_INSNS (1); break; case AND: case XOR: case IOR: if (!MEM_P (dst)) igain = COSTS_N_INSNS (1); break; case ASHIFT: case LSHIFTRT: /* See ix86_expand_v1ti_shift. */ op1val = INTVAL (XEXP (src, 1)); if (optimize_insn_for_size_p ()) { if (op1val == 64 || op1val == 65) scost = COSTS_N_BYTES (5); else if (op1val >= 66) scost = COSTS_N_BYTES (6); else if (op1val == 1) scost = COSTS_N_BYTES (8); else scost = COSTS_N_BYTES (9); if ((op1val & 7) == 0) vcost = COSTS_N_BYTES (5); else if (op1val > 64) vcost = COSTS_N_BYTES (10); else vcost = TARGET_AVX ? COSTS_N_BYTES (19) : COSTS_N_BYTES (23); } else { scost = COSTS_N_INSNS (2); if ((op1val & 7) == 0) vcost = COSTS_N_INSNS (1); else if (op1val > 64) vcost = COSTS_N_INSNS (2); else vcost = TARGET_AVX ? COSTS_N_INSNS (4) : COSTS_N_INSNS (5); } igain = scost - vcost; break; case ASHIFTRT: /* See ix86_expand_v1ti_ashiftrt. */ op1val = INTVAL (XEXP (src, 1)); if (optimize_insn_for_size_p ()) { if (op1val == 64 || op1val == 127) scost = COSTS_N_BYTES (7); else if (op1val == 1) scost = COSTS_N_BYTES (8); else if (op1val == 65) scost = COSTS_N_BYTES (10); else if (op1val >= 66) scost = COSTS_N_BYTES (11); else scost = COSTS_N_BYTES (9); if (op1val == 127) vcost = COSTS_N_BYTES (10); else if (op1val == 64) vcost = COSTS_N_BYTES (14); else if (op1val == 96) vcost = COSTS_N_BYTES (18); else if (op1val >= 111) vcost = COSTS_N_BYTES (15); else if (TARGET_AVX2 && op1val == 32) vcost = COSTS_N_BYTES (16); else if (TARGET_SSE4_1 && op1val == 32) vcost = COSTS_N_BYTES (20); else if (op1val >= 96) vcost = COSTS_N_BYTES (23); else if ((op1val & 7) == 0) vcost = COSTS_N_BYTES (28); else if (TARGET_AVX2 && op1val < 32) vcost = COSTS_N_BYTES (30); else if (op1val == 1 || op1val >= 64) vcost = COSTS_N_BYTES (42); else vcost = COSTS_N_BYTES (47); } else { if (op1val >= 65 && op1val <= 126) scost = COSTS_N_INSNS (3); else scost = COSTS_N_INSNS (2); if (op1val == 127) vcost = COSTS_N_INSNS (2); else if (op1val == 64) vcost = COSTS_N_INSNS (3); else if (op1val == 96) vcost = COSTS_N_INSNS (4); else if (op1val >= 111) vcost = COSTS_N_INSNS (3); else if (TARGET_AVX2 && op1val == 32) vcost = COSTS_N_INSNS (3); else if (TARGET_SSE4_1 && op1val == 32) vcost = COSTS_N_INSNS (4); else if (op1val >= 96) vcost = COSTS_N_INSNS (5); else if ((op1val & 7) == 0) vcost = COSTS_N_INSNS (6); else if (TARGET_AVX2 && op1val < 32) vcost = COSTS_N_INSNS (6); else if (op1val == 1 || op1val >= 64) vcost = COSTS_N_INSNS (9); else vcost = COSTS_N_INSNS (10); } igain = scost - vcost; break; case ROTATE: case ROTATERT: /* See ix86_expand_v1ti_rotate. */ op1val = INTVAL (XEXP (src, 1)); if (optimize_insn_for_size_p ()) { scost = COSTS_N_BYTES (13); if ((op1val & 31) == 0) vcost = COSTS_N_BYTES (5); else if ((op1val & 7) == 0) vcost = TARGET_AVX ? COSTS_N_BYTES (13) : COSTS_N_BYTES (18); else if (op1val > 32 && op1val < 96) vcost = COSTS_N_BYTES (24); else vcost = COSTS_N_BYTES (19); } else { scost = COSTS_N_INSNS (3); if ((op1val & 31) == 0) vcost = COSTS_N_INSNS (1); else if ((op1val & 7) == 0) vcost = TARGET_AVX ? COSTS_N_INSNS (3) : COSTS_N_INSNS (4); else if (op1val > 32 && op1val < 96) vcost = COSTS_N_INSNS (5); else vcost = COSTS_N_INSNS (1); } igain = scost - vcost; break; case COMPARE: if (XEXP (src, 1) == const0_rtx) { if (GET_CODE (XEXP (src, 0)) == AND) /* and;and;or (9 bytes) vs. ptest (5 bytes). */ igain = optimize_insn_for_size_p() ? COSTS_N_BYTES (4) : COSTS_N_INSNS (2); /* or (3 bytes) vs. ptest (5 bytes). */ else if (optimize_insn_for_size_p ()) igain = -COSTS_N_BYTES (2); } else if (XEXP (src, 1) == const1_rtx) /* and;cmp -1 (7 bytes) vs. pcmpeqd;pxor;ptest (13 bytes). */ igain = optimize_insn_for_size_p() ? -COSTS_N_BYTES (6) : -COSTS_N_INSNS (1); break; default: break; } if (igain != 0 && dump_file) { fprintf (dump_file, " Instruction gain %d for ", igain); dump_insn_slim (dump_file, insn); } gain += igain; } if (dump_file) fprintf (dump_file, " Total gain: %d\n", gain); return gain; } /* Fix uses of converted REG in debug insns. */ void timode_scalar_chain::fix_debug_reg_uses (rtx reg) { if (!flag_var_tracking) return; df_ref ref, next; for (ref = DF_REG_USE_CHAIN (REGNO (reg)); ref; ref = next) { rtx_insn *insn = DF_REF_INSN (ref); /* Make sure the next ref is for a different instruction, so that we're not affected by the rescan. */ next = DF_REF_NEXT_REG (ref); while (next && DF_REF_INSN (next) == insn) next = DF_REF_NEXT_REG (next); if (DEBUG_INSN_P (insn)) { /* It may be a debug insn with a TImode variable in register. */ bool changed = false; for (; ref != next; ref = DF_REF_NEXT_REG (ref)) { rtx *loc = DF_REF_LOC (ref); if (REG_P (*loc) && GET_MODE (*loc) == V1TImode) { *loc = gen_rtx_SUBREG (TImode, *loc, 0); changed = true; } } if (changed) df_insn_rescan (insn); } } } /* Convert INSN from TImode to V1T1mode. */ void timode_scalar_chain::convert_insn (rtx_insn *insn) { rtx def_set = single_set (insn); rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); rtx tmp; switch (GET_CODE (dst)) { case REG: if (GET_MODE (dst) == TImode) { PUT_MODE (dst, V1TImode); fix_debug_reg_uses (dst); } if (GET_MODE (dst) == V1TImode) { /* It might potentially be helpful to convert REG_EQUAL notes, but for now we just remove them. */ rtx note = find_reg_equal_equiv_note (insn); if (note) remove_note (insn, note); } break; case MEM: PUT_MODE (dst, V1TImode); break; default: gcc_unreachable (); } switch (GET_CODE (src)) { case REG: if (GET_MODE (src) == TImode) { PUT_MODE (src, V1TImode); fix_debug_reg_uses (src); } break; case MEM: PUT_MODE (src, V1TImode); break; case CONST_WIDE_INT: if (NONDEBUG_INSN_P (insn)) { /* Since there are no instructions to store 128-bit constant, temporary register usage is required. */ bool use_move; start_sequence (); tmp = ix86_convert_const_wide_int_to_broadcast (TImode, src); if (tmp) { src = lowpart_subreg (V1TImode, tmp, TImode); use_move = true; } else { src = smode_convert_cst (src, V1TImode); src = validize_mem (force_const_mem (V1TImode, src)); use_move = MEM_P (dst); } rtx_insn *seq = get_insns (); end_sequence (); if (seq) emit_insn_before (seq, insn); if (use_move) { tmp = gen_reg_rtx (V1TImode); emit_insn_before (gen_rtx_SET (tmp, src), insn); src = tmp; } } break; case CONST_INT: switch (standard_sse_constant_p (src, TImode)) { case 1: src = CONST0_RTX (GET_MODE (dst)); break; case 2: src = CONSTM1_RTX (GET_MODE (dst)); break; default: gcc_unreachable (); } if (MEM_P (dst)) { tmp = gen_reg_rtx (V1TImode); emit_insn_before (gen_rtx_SET (tmp, src), insn); src = tmp; } break; case AND: if (GET_CODE (XEXP (src, 0)) == NOT) { convert_op (&XEXP (XEXP (src, 0), 0), insn); convert_op (&XEXP (src, 1), insn); PUT_MODE (XEXP (src, 0), V1TImode); PUT_MODE (src, V1TImode); break; } /* FALLTHRU */ case XOR: case IOR: convert_op (&XEXP (src, 0), insn); convert_op (&XEXP (src, 1), insn); PUT_MODE (src, V1TImode); if (MEM_P (dst)) { tmp = gen_reg_rtx (V1TImode); emit_insn_before (gen_rtx_SET (tmp, src), insn); src = tmp; } break; case NOT: src = XEXP (src, 0); convert_op (&src, insn); tmp = gen_reg_rtx (V1TImode); emit_insn_before (gen_move_insn (tmp, CONSTM1_RTX (V1TImode)), insn); src = gen_rtx_XOR (V1TImode, src, tmp); if (MEM_P (dst)) { tmp = gen_reg_rtx (V1TImode); emit_insn_before (gen_rtx_SET (tmp, src), insn); src = tmp; } break; case COMPARE: dst = gen_rtx_REG (CCZmode, FLAGS_REG); src = convert_compare (XEXP (src, 0), XEXP (src, 1), insn); break; case ASHIFT: case LSHIFTRT: case ASHIFTRT: case ROTATERT: case ROTATE: convert_op (&XEXP (src, 0), insn); PUT_MODE (src, V1TImode); break; default: gcc_unreachable (); } SET_SRC (def_set) = src; SET_DEST (def_set) = dst; /* Drop possible dead definitions. */ PATTERN (insn) = def_set; INSN_CODE (insn) = -1; recog_memoized (insn); df_insn_rescan (insn); } /* Generate copies from defs used by the chain but not defined therein. Also populates defs_map which is used later by convert_insn. */ void scalar_chain::convert_registers () { bitmap_iterator bi; unsigned id; EXECUTE_IF_SET_IN_BITMAP (defs_conv, 0, id, bi) { rtx chain_reg = gen_reg_rtx (smode); defs_map.put (regno_reg_rtx[id], chain_reg); } EXECUTE_IF_SET_IN_BITMAP (insns_conv, 0, id, bi) for (df_ref ref = DF_INSN_UID_DEFS (id); ref; ref = DF_REF_NEXT_LOC (ref)) if (bitmap_bit_p (defs_conv, DF_REF_REGNO (ref))) make_vector_copies (DF_REF_INSN (ref), DF_REF_REAL_REG (ref)); } /* Convert whole chain creating required register conversions and copies. */ int scalar_chain::convert () { bitmap_iterator bi; unsigned id; int converted_insns = 0; if (!dbg_cnt (stv_conversion)) return 0; if (dump_file) fprintf (dump_file, "Converting chain #%d...\n", chain_id); convert_registers (); EXECUTE_IF_SET_IN_BITMAP (insns, 0, id, bi) { rtx_insn *insn = DF_INSN_UID_GET (id)->insn; convert_insn_common (insn); convert_insn (insn); converted_insns++; } return converted_insns; } /* Return the SET expression if INSN doesn't reference hard register. Return NULL if INSN uses or defines a hard register, excluding pseudo register pushes, hard register uses in a memory address, clobbers and flags definitions. */ static rtx pseudo_reg_set (rtx_insn *insn) { rtx set = single_set (insn); if (!set) return NULL; /* Check pseudo register push first. */ machine_mode mode = TARGET_64BIT ? TImode : DImode; if (REG_P (SET_SRC (set)) && !HARD_REGISTER_P (SET_SRC (set)) && push_operand (SET_DEST (set), mode)) return set; df_ref ref; FOR_EACH_INSN_DEF (ref, insn) if (HARD_REGISTER_P (DF_REF_REAL_REG (ref)) && !DF_REF_FLAGS_IS_SET (ref, DF_REF_MUST_CLOBBER) && DF_REF_REGNO (ref) != FLAGS_REG) return NULL; FOR_EACH_INSN_USE (ref, insn) if (!DF_REF_REG_MEM_P (ref) && HARD_REGISTER_P (DF_REF_REAL_REG (ref))) return NULL; return set; } /* Return true if the register REG is defined in a single DEF chain. If it is defined in more than one DEF chains, we may not be able to convert it in all chains. */ static bool single_def_chain_p (rtx reg) { df_ref ref = DF_REG_DEF_CHAIN (REGNO (reg)); if (!ref) return false; return DF_REF_NEXT_REG (ref) == nullptr; } /* Check if comparison INSN may be transformed into vector comparison. Currently we transform equality/inequality checks which look like: (set (reg:CCZ 17 flags) (compare:CCZ (reg:TI x) (reg:TI y))) */ static bool convertible_comparison_p (rtx_insn *insn, enum machine_mode mode) { if (mode != (TARGET_64BIT ? TImode : DImode)) return false; if (!TARGET_SSE4_1) return false; rtx def_set = single_set (insn); gcc_assert (def_set); rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); gcc_assert (GET_CODE (src) == COMPARE); if (GET_CODE (dst) != REG || REGNO (dst) != FLAGS_REG || GET_MODE (dst) != CCZmode) return false; rtx op1 = XEXP (src, 0); rtx op2 = XEXP (src, 1); /* *cmp_doubleword. */ if ((CONST_SCALAR_INT_P (op1) || ((REG_P (op1) || MEM_P (op1)) && GET_MODE (op1) == mode)) && (CONST_SCALAR_INT_P (op2) || ((REG_P (op2) || MEM_P (op2)) && GET_MODE (op2) == mode))) return true; /* *testti_doubleword. */ if (op2 == const0_rtx && GET_CODE (op1) == AND && REG_P (XEXP (op1, 0))) { rtx op12 = XEXP (op1, 1); return GET_MODE (XEXP (op1, 0)) == TImode && (CONST_SCALAR_INT_P (op12) || ((REG_P (op12) || MEM_P (op12)) && GET_MODE (op12) == TImode)); } /* *test_not_doubleword. */ if (op2 == const0_rtx && GET_CODE (op1) == AND && GET_CODE (XEXP (op1, 0)) == NOT) { rtx op11 = XEXP (XEXP (op1, 0), 0); rtx op12 = XEXP (op1, 1); return (REG_P (op11) || MEM_P (op11)) && (REG_P (op12) || MEM_P (op12)) && GET_MODE (op11) == mode && GET_MODE (op12) == mode; } return false; } /* The general version of scalar_to_vector_candidate_p. */ static bool general_scalar_to_vector_candidate_p (rtx_insn *insn, enum machine_mode mode) { rtx def_set = pseudo_reg_set (insn); if (!def_set) return false; rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); if (GET_CODE (src) == COMPARE) return convertible_comparison_p (insn, mode); /* We are interested in "mode" only. */ if ((GET_MODE (src) != mode && !CONST_INT_P (src)) || GET_MODE (dst) != mode) return false; if (!REG_P (dst) && !MEM_P (dst)) return false; switch (GET_CODE (src)) { case ASHIFTRT: if (mode == DImode && !TARGET_AVX512VL) return false; /* FALLTHRU */ case ASHIFT: case LSHIFTRT: case ROTATE: case ROTATERT: if (!CONST_INT_P (XEXP (src, 1)) || !IN_RANGE (INTVAL (XEXP (src, 1)), 0, GET_MODE_BITSIZE (mode)-1)) return false; /* Check for extend highpart case. */ if (mode != DImode || GET_CODE (src) != ASHIFTRT || GET_CODE (XEXP (src, 0)) != ASHIFT) break; src = XEXP (src, 0); break; case SMAX: case SMIN: case UMAX: case UMIN: if ((mode == DImode && !TARGET_AVX512VL) || (mode == SImode && !TARGET_SSE4_1)) return false; /* Fallthru. */ case AND: case IOR: case XOR: case PLUS: case MINUS: if (!REG_P (XEXP (src, 1)) && !MEM_P (XEXP (src, 1)) && !CONST_INT_P (XEXP (src, 1))) return false; if (GET_MODE (XEXP (src, 1)) != mode && !CONST_INT_P (XEXP (src, 1))) return false; /* Check for andnot case. */ if (GET_CODE (src) != AND || GET_CODE (XEXP (src, 0)) != NOT) break; src = XEXP (src, 0); /* FALLTHRU */ case NOT: break; case NEG: /* Check for nabs case. */ if (GET_CODE (XEXP (src, 0)) != ABS) break; src = XEXP (src, 0); /* FALLTHRU */ case ABS: if ((mode == DImode && !TARGET_AVX512VL) || (mode == SImode && !TARGET_SSSE3)) return false; break; case REG: return true; case MEM: case CONST_INT: return REG_P (dst); case VEC_SELECT: /* Excluding MEM_P (dst) avoids intefering with vpextr[dq]. */ return REG_P (dst) && REG_P (XEXP (src, 0)) && GET_MODE (XEXP (src, 0)) == (mode == DImode ? V2DImode : V4SImode) && GET_CODE (XEXP (src, 1)) == PARALLEL && XVECLEN (XEXP (src, 1), 0) == 1 && CONST_INT_P (XVECEXP (XEXP (src, 1), 0, 0)); default: return false; } if (!REG_P (XEXP (src, 0)) && !MEM_P (XEXP (src, 0)) && !CONST_INT_P (XEXP (src, 0))) return false; if (GET_MODE (XEXP (src, 0)) != mode && !CONST_INT_P (XEXP (src, 0))) return false; return true; } /* Check for a suitable TImode memory operand. */ static bool timode_mem_p (rtx x) { return MEM_P (x) && (TARGET_SSE_UNALIGNED_LOAD_OPTIMAL || !misaligned_operand (x, TImode)); } /* The TImode version of scalar_to_vector_candidate_p. */ static bool timode_scalar_to_vector_candidate_p (rtx_insn *insn) { rtx def_set = pseudo_reg_set (insn); if (!def_set) return false; rtx src = SET_SRC (def_set); rtx dst = SET_DEST (def_set); if (GET_CODE (src) == COMPARE) return convertible_comparison_p (insn, TImode); if (GET_MODE (dst) != TImode || (GET_MODE (src) != TImode && !CONST_SCALAR_INT_P (src))) return false; if (!REG_P (dst) && !MEM_P (dst)) return false; if (MEM_P (dst) && misaligned_operand (dst, TImode) && !TARGET_SSE_UNALIGNED_STORE_OPTIMAL) return false; if (REG_P (dst) && !single_def_chain_p (dst)) return false; switch (GET_CODE (src)) { case REG: return single_def_chain_p (src); case CONST_WIDE_INT: return true; case CONST_INT: /* ??? Verify performance impact before enabling CONST_INT for __int128 store. */ return standard_sse_constant_p (src, TImode); case MEM: /* Memory must be aligned or unaligned load is optimal. */ return (REG_P (dst) && (!misaligned_operand (src, TImode) || TARGET_SSE_UNALIGNED_LOAD_OPTIMAL)); case AND: if (!MEM_P (dst) && GET_CODE (XEXP (src, 0)) == NOT && REG_P (XEXP (XEXP (src, 0), 0)) && (REG_P (XEXP (src, 1)) || CONST_SCALAR_INT_P (XEXP (src, 1)) || timode_mem_p (XEXP (src, 1)))) return true; return REG_P (XEXP (src, 0)) && (REG_P (XEXP (src, 1)) || CONST_SCALAR_INT_P (XEXP (src, 1)) || timode_mem_p (XEXP (src, 1))); case IOR: case XOR: return REG_P (XEXP (src, 0)) && (REG_P (XEXP (src, 1)) || CONST_SCALAR_INT_P (XEXP (src, 1)) || timode_mem_p (XEXP (src, 1))); case NOT: return REG_P (XEXP (src, 0)) || timode_mem_p (XEXP (src, 0)); case ASHIFT: case LSHIFTRT: case ASHIFTRT: case ROTATERT: case ROTATE: /* Handle shifts/rotates by integer constants between 0 and 127. */ return REG_P (XEXP (src, 0)) && CONST_INT_P (XEXP (src, 1)) && (INTVAL (XEXP (src, 1)) & ~0x7f) == 0; default: return false; } } /* For a register REGNO, scan instructions for its defs and uses. Put REGNO in REGS if a def or use isn't in CANDIDATES. */ static void timode_check_non_convertible_regs (bitmap candidates, bitmap regs, unsigned int regno) { /* Do nothing if REGNO is already in REGS or is a hard reg. */ if (bitmap_bit_p (regs, regno) || HARD_REGISTER_NUM_P (regno)) return; for (df_ref def = DF_REG_DEF_CHAIN (regno); def; def = DF_REF_NEXT_REG (def)) { if (!bitmap_bit_p (candidates, DF_REF_INSN_UID (def))) { if (dump_file) fprintf (dump_file, "r%d has non convertible def in insn %d\n", regno, DF_REF_INSN_UID (def)); bitmap_set_bit (regs, regno); break; } } for (df_ref ref = DF_REG_USE_CHAIN (regno); ref; ref = DF_REF_NEXT_REG (ref)) { /* Debug instructions are skipped. */ if (NONDEBUG_INSN_P (DF_REF_INSN (ref)) && !bitmap_bit_p (candidates, DF_REF_INSN_UID (ref))) { if (dump_file) fprintf (dump_file, "r%d has non convertible use in insn %d\n", regno, DF_REF_INSN_UID (ref)); bitmap_set_bit (regs, regno); break; } } } /* For a given bitmap of insn UIDs scans all instructions and remove insn from CANDIDATES in case it has both convertible and not convertible definitions. All insns in a bitmap are conversion candidates according to scalar_to_vector_candidate_p. Currently it implies all insns are single_set. */ static void timode_remove_non_convertible_regs (bitmap candidates) { bitmap_iterator bi; unsigned id; bitmap regs = BITMAP_ALLOC (NULL); bool changed; do { changed = false; EXECUTE_IF_SET_IN_BITMAP (candidates, 0, id, bi) { rtx_insn *insn = DF_INSN_UID_GET (id)->insn; df_ref ref; FOR_EACH_INSN_DEF (ref, insn) if (!DF_REF_REG_MEM_P (ref) && GET_MODE (DF_REF_REG (ref)) == TImode) timode_check_non_convertible_regs (candidates, regs, DF_REF_REGNO (ref)); FOR_EACH_INSN_USE (ref, insn) if (!DF_REF_REG_MEM_P (ref) && GET_MODE (DF_REF_REG (ref)) == TImode) timode_check_non_convertible_regs (candidates, regs, DF_REF_REGNO (ref)); } EXECUTE_IF_SET_IN_BITMAP (regs, 0, id, bi) { for (df_ref def = DF_REG_DEF_CHAIN (id); def; def = DF_REF_NEXT_REG (def)) if (bitmap_bit_p (candidates, DF_REF_INSN_UID (def))) { if (dump_file) fprintf (dump_file, "Removing insn %d from candidates list\n", DF_REF_INSN_UID (def)); bitmap_clear_bit (candidates, DF_REF_INSN_UID (def)); changed = true; } for (df_ref ref = DF_REG_USE_CHAIN (id); ref; ref = DF_REF_NEXT_REG (ref)) if (bitmap_bit_p (candidates, DF_REF_INSN_UID (ref))) { if (dump_file) fprintf (dump_file, "Removing insn %d from candidates list\n", DF_REF_INSN_UID (ref)); bitmap_clear_bit (candidates, DF_REF_INSN_UID (ref)); changed = true; } } } while (changed); BITMAP_FREE (regs); } /* Main STV pass function. Find and convert scalar instructions into vector mode when profitable. */ static unsigned int convert_scalars_to_vector (bool timode_p) { basic_block bb; int converted_insns = 0; auto_vec control_flow_insns; bitmap_obstack_initialize (NULL); const machine_mode cand_mode[3] = { SImode, DImode, TImode }; const machine_mode cand_vmode[3] = { V4SImode, V2DImode, V1TImode }; bitmap_head candidates[3]; /* { SImode, DImode, TImode } */ for (unsigned i = 0; i < 3; ++i) bitmap_initialize (&candidates[i], &bitmap_default_obstack); calculate_dominance_info (CDI_DOMINATORS); df_set_flags (DF_DEFER_INSN_RESCAN | DF_RD_PRUNE_DEAD_DEFS); df_chain_add_problem (DF_DU_CHAIN | DF_UD_CHAIN); df_analyze (); /* Find all instructions we want to convert into vector mode. */ if (dump_file) fprintf (dump_file, "Searching for mode conversion candidates...\n"); FOR_EACH_BB_FN (bb, cfun) { rtx_insn *insn; FOR_BB_INSNS (bb, insn) if (timode_p && timode_scalar_to_vector_candidate_p (insn)) { if (dump_file) fprintf (dump_file, " insn %d is marked as a TImode candidate\n", INSN_UID (insn)); bitmap_set_bit (&candidates[2], INSN_UID (insn)); } else if (!timode_p) { /* Check {SI,DI}mode. */ for (unsigned i = 0; i <= 1; ++i) if (general_scalar_to_vector_candidate_p (insn, cand_mode[i])) { if (dump_file) fprintf (dump_file, " insn %d is marked as a %s candidate\n", INSN_UID (insn), i == 0 ? "SImode" : "DImode"); bitmap_set_bit (&candidates[i], INSN_UID (insn)); break; } } } if (timode_p) timode_remove_non_convertible_regs (&candidates[2]); for (unsigned i = 0; i <= 2; ++i) if (!bitmap_empty_p (&candidates[i])) break; else if (i == 2 && dump_file) fprintf (dump_file, "There are no candidates for optimization.\n"); for (unsigned i = 0; i <= 2; ++i) { auto_bitmap disallowed; bitmap_tree_view (&candidates[i]); while (!bitmap_empty_p (&candidates[i])) { unsigned uid = bitmap_first_set_bit (&candidates[i]); scalar_chain *chain; if (cand_mode[i] == TImode) chain = new timode_scalar_chain; else chain = new general_scalar_chain (cand_mode[i], cand_vmode[i]); /* Find instructions chain we want to convert to vector mode. Check all uses and definitions to estimate all required conversions. */ if (chain->build (&candidates[i], uid, disallowed)) { if (chain->compute_convert_gain () > 0) converted_insns += chain->convert (); else if (dump_file) fprintf (dump_file, "Chain #%d conversion is not profitable\n", chain->chain_id); } rtx_insn* iter_insn; unsigned int ii; FOR_EACH_VEC_ELT (chain->control_flow_insns, ii, iter_insn) control_flow_insns.safe_push (iter_insn); delete chain; } } if (dump_file) fprintf (dump_file, "Total insns converted: %d\n", converted_insns); for (unsigned i = 0; i <= 2; ++i) bitmap_release (&candidates[i]); bitmap_obstack_release (NULL); df_process_deferred_rescans (); /* Conversion means we may have 128bit register spills/fills which require aligned stack. */ if (converted_insns) { if (crtl->stack_alignment_needed < 128) crtl->stack_alignment_needed = 128; if (crtl->stack_alignment_estimated < 128) crtl->stack_alignment_estimated = 128; crtl->stack_realign_needed = INCOMING_STACK_BOUNDARY < crtl->stack_alignment_estimated; crtl->stack_realign_tried = crtl->stack_realign_needed; crtl->stack_realign_processed = true; if (!crtl->drap_reg) { rtx drap_rtx = targetm.calls.get_drap_rtx (); /* stack_realign_drap and drap_rtx must match. */ gcc_assert ((stack_realign_drap != 0) == (drap_rtx != NULL)); /* Do nothing if NULL is returned, which means DRAP is not needed. */ if (drap_rtx != NULL) { crtl->args.internal_arg_pointer = drap_rtx; /* Call fixup_tail_calls to clean up REG_EQUIV note if DRAP is needed. */ fixup_tail_calls (); } } /* Fix up DECL_RTL/DECL_INCOMING_RTL of arguments. */ if (TARGET_64BIT) for (tree parm = DECL_ARGUMENTS (current_function_decl); parm; parm = DECL_CHAIN (parm)) { if (TYPE_MODE (TREE_TYPE (parm)) != TImode) continue; if (DECL_RTL_SET_P (parm) && GET_MODE (DECL_RTL (parm)) == V1TImode) { rtx r = DECL_RTL (parm); if (REG_P (r)) SET_DECL_RTL (parm, gen_rtx_SUBREG (TImode, r, 0)); } if (DECL_INCOMING_RTL (parm) && GET_MODE (DECL_INCOMING_RTL (parm)) == V1TImode) { rtx r = DECL_INCOMING_RTL (parm); if (REG_P (r)) DECL_INCOMING_RTL (parm) = gen_rtx_SUBREG (TImode, r, 0); } } if (!control_flow_insns.is_empty ()) { free_dominance_info (CDI_DOMINATORS); unsigned int i; rtx_insn* insn; FOR_EACH_VEC_ELT (control_flow_insns, i, insn) if (control_flow_insn_p (insn)) { /* Split the block after insn. There will be a fallthru edge, which is OK so we keep it. We have to create the exception edges ourselves. */ bb = BLOCK_FOR_INSN (insn); split_block (bb, insn); rtl_make_eh_edge (NULL, bb, BB_END (bb)); } } } return 0; } static unsigned int rest_of_handle_insert_vzeroupper (void) { /* vzeroupper instructions are inserted immediately after reload and postreload_cse to clean up after it a little bit to account for possible spills from 256bit or 512bit registers. The pass reuses mode switching infrastructure by re-running mode insertion pass, so disable entities that have already been processed. */ for (int i = 0; i < MAX_386_ENTITIES; i++) ix86_optimize_mode_switching[i] = 0; ix86_optimize_mode_switching[AVX_U128] = 1; /* Call optimize_mode_switching. */ g->get_passes ()->execute_pass_mode_switching (); /* LRA removes all REG_DEAD/REG_UNUSED notes and normally they reappear in the IL only at the start of pass_rtl_dse2, which does df_note_add_problem (); df_analyze (); The vzeroupper is scheduled after postreload_cse pass and mode switching computes the notes as well, the problem is that e.g. pass_gcse2 doesn't maintain the notes, see PR113059 and PR112760. Remove the notes now to restore status quo ante until we figure out how to maintain the notes or what else to do. */ basic_block bb; rtx_insn *insn; FOR_EACH_BB_FN (bb, cfun) FOR_BB_INSNS (bb, insn) if (NONDEBUG_INSN_P (insn)) { rtx *pnote = ®_NOTES (insn); while (*pnote != 0) { if (REG_NOTE_KIND (*pnote) == REG_DEAD || REG_NOTE_KIND (*pnote) == REG_UNUSED) *pnote = XEXP (*pnote, 1); else pnote = &XEXP (*pnote, 1); } } df_remove_problem (df_note); df_analyze (); return 0; } namespace { const pass_data pass_data_insert_vzeroupper = { RTL_PASS, /* type */ "vzeroupper", /* name */ OPTGROUP_NONE, /* optinfo_flags */ TV_MACH_DEP, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_df_finish, /* todo_flags_finish */ }; class pass_insert_vzeroupper : public rtl_opt_pass { public: pass_insert_vzeroupper(gcc::context *ctxt) : rtl_opt_pass(pass_data_insert_vzeroupper, ctxt) {} /* opt_pass methods: */ bool gate (function *) final override { return TARGET_AVX && TARGET_VZEROUPPER; } unsigned int execute (function *) final override { return rest_of_handle_insert_vzeroupper (); } }; // class pass_insert_vzeroupper const pass_data pass_data_stv = { RTL_PASS, /* type */ "stv", /* name */ OPTGROUP_NONE, /* optinfo_flags */ TV_MACH_DEP, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_df_finish, /* todo_flags_finish */ }; class pass_stv : public rtl_opt_pass { public: pass_stv (gcc::context *ctxt) : rtl_opt_pass (pass_data_stv, ctxt), timode_p (false) {} /* opt_pass methods: */ bool gate (function *) final override { return ((!timode_p || TARGET_64BIT) && TARGET_STV && TARGET_SSE2 && optimize > 1); } unsigned int execute (function *) final override { return convert_scalars_to_vector (timode_p); } opt_pass *clone () final override { return new pass_stv (m_ctxt); } void set_pass_param (unsigned int n, bool param) final override { gcc_assert (n == 0); timode_p = param; } private: bool timode_p; }; // class pass_stv } // anon namespace rtl_opt_pass * make_pass_insert_vzeroupper (gcc::context *ctxt) { return new pass_insert_vzeroupper (ctxt); } rtl_opt_pass * make_pass_stv (gcc::context *ctxt) { return new pass_stv (ctxt); } /* Inserting ENDBR and pseudo patchable-area instructions. */ static void rest_of_insert_endbr_and_patchable_area (bool need_endbr, unsigned int patchable_area_size) { rtx endbr; rtx_insn *insn; rtx_insn *endbr_insn = NULL; basic_block bb; if (need_endbr) { /* Currently emit EB if it's a tracking function, i.e. 'nocf_check' is absent among function attributes. Later an optimization will be introduced to make analysis if an address of a static function is taken. A static function whose address is not taken will get a nocf_check attribute. This will allow to reduce the number of EB. */ if (!lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (TREE_TYPE (cfun->decl))) && (!flag_manual_endbr || lookup_attribute ("cf_check", DECL_ATTRIBUTES (cfun->decl))) && (!cgraph_node::get (cfun->decl)->only_called_directly_p () || ix86_cmodel == CM_LARGE || ix86_cmodel == CM_LARGE_PIC || flag_force_indirect_call || (TARGET_DLLIMPORT_DECL_ATTRIBUTES && DECL_DLLIMPORT_P (cfun->decl)))) { if (crtl->profile && flag_fentry) { /* Queue ENDBR insertion to x86_function_profiler. NB: Any patchable-area insn will be inserted after ENDBR. */ cfun->machine->insn_queued_at_entrance = TYPE_ENDBR; } else { endbr = gen_nop_endbr (); bb = ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb; rtx_insn *insn = BB_HEAD (bb); endbr_insn = emit_insn_before (endbr, insn); } } } if (patchable_area_size) { if (crtl->profile && flag_fentry) { /* Queue patchable-area insertion to x86_function_profiler. NB: If there is a queued ENDBR, x86_function_profiler will also handle patchable-area. */ if (!cfun->machine->insn_queued_at_entrance) cfun->machine->insn_queued_at_entrance = TYPE_PATCHABLE_AREA; } else { rtx patchable_area = gen_patchable_area (GEN_INT (patchable_area_size), GEN_INT (crtl->patch_area_entry == 0)); if (endbr_insn) emit_insn_after (patchable_area, endbr_insn); else { bb = ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb; insn = BB_HEAD (bb); emit_insn_before (patchable_area, insn); } } } if (!need_endbr) return; bb = 0; FOR_EACH_BB_FN (bb, cfun) { for (insn = BB_HEAD (bb); insn != NEXT_INSN (BB_END (bb)); insn = NEXT_INSN (insn)) { if (CALL_P (insn)) { need_endbr = find_reg_note (insn, REG_SETJMP, NULL) != NULL; if (!need_endbr && !SIBLING_CALL_P (insn)) { rtx call = get_call_rtx_from (insn); rtx fnaddr = XEXP (call, 0); tree fndecl = NULL_TREE; /* Also generate ENDBRANCH for non-tail call which may return via indirect branch. */ if (GET_CODE (XEXP (fnaddr, 0)) == SYMBOL_REF) fndecl = SYMBOL_REF_DECL (XEXP (fnaddr, 0)); if (fndecl == NULL_TREE) fndecl = MEM_EXPR (fnaddr); if (fndecl && TREE_CODE (TREE_TYPE (fndecl)) != FUNCTION_TYPE && TREE_CODE (TREE_TYPE (fndecl)) != METHOD_TYPE) fndecl = NULL_TREE; if (fndecl && TYPE_ARG_TYPES (TREE_TYPE (fndecl))) { tree fntype = TREE_TYPE (fndecl); if (lookup_attribute ("indirect_return", TYPE_ATTRIBUTES (fntype))) need_endbr = true; } } if (!need_endbr) continue; /* Generate ENDBRANCH after CALL, which can return more than twice, setjmp-like functions. */ endbr = gen_nop_endbr (); emit_insn_after_setloc (endbr, insn, INSN_LOCATION (insn)); continue; } if (JUMP_P (insn) && flag_cet_switch) { rtx target = JUMP_LABEL (insn); if (target == NULL_RTX || ANY_RETURN_P (target)) continue; /* Check the jump is a switch table. */ rtx_insn *label = as_a (target); rtx_insn *table = next_insn (label); if (table == NULL_RTX || !JUMP_TABLE_DATA_P (table)) continue; /* For the indirect jump find out all places it jumps and insert ENDBRANCH there. It should be done under a special flag to control ENDBRANCH generation for switch stmts. */ edge_iterator ei; edge e; basic_block dest_blk; FOR_EACH_EDGE (e, ei, bb->succs) { rtx_insn *insn; dest_blk = e->dest; insn = BB_HEAD (dest_blk); gcc_assert (LABEL_P (insn)); endbr = gen_nop_endbr (); emit_insn_after (endbr, insn); } continue; } if (LABEL_P (insn) && LABEL_PRESERVE_P (insn)) { endbr = gen_nop_endbr (); emit_insn_after (endbr, insn); continue; } } } return; } namespace { const pass_data pass_data_insert_endbr_and_patchable_area = { RTL_PASS, /* type. */ "endbr_and_patchable_area", /* name. */ OPTGROUP_NONE, /* optinfo_flags. */ TV_MACH_DEP, /* tv_id. */ 0, /* properties_required. */ 0, /* properties_provided. */ 0, /* properties_destroyed. */ 0, /* todo_flags_start. */ 0, /* todo_flags_finish. */ }; class pass_insert_endbr_and_patchable_area : public rtl_opt_pass { public: pass_insert_endbr_and_patchable_area (gcc::context *ctxt) : rtl_opt_pass (pass_data_insert_endbr_and_patchable_area, ctxt) {} /* opt_pass methods: */ bool gate (function *) final override { need_endbr = (flag_cf_protection & CF_BRANCH) != 0; patchable_area_size = crtl->patch_area_size - crtl->patch_area_entry; return need_endbr || patchable_area_size; } unsigned int execute (function *) final override { timevar_push (TV_MACH_DEP); rest_of_insert_endbr_and_patchable_area (need_endbr, patchable_area_size); timevar_pop (TV_MACH_DEP); return 0; } private: bool need_endbr; unsigned int patchable_area_size; }; // class pass_insert_endbr_and_patchable_area } // anon namespace rtl_opt_pass * make_pass_insert_endbr_and_patchable_area (gcc::context *ctxt) { return new pass_insert_endbr_and_patchable_area (ctxt); } /* At entry of the nearest common dominator for basic blocks with conversions/rcp/sqrt/rsqrt/round, generate a single vxorps %xmmN, %xmmN, %xmmN for all vcvtss2sd op, %xmmN, %xmmX vcvtsd2ss op, %xmmN, %xmmX vcvtsi2ss op, %xmmN, %xmmX vcvtsi2sd op, %xmmN, %xmmX NB: We want to generate only a single vxorps to cover the whole function. The LCM algorithm isn't appropriate here since it may place a vxorps inside the loop. */ static unsigned int remove_partial_avx_dependency (void) { timevar_push (TV_MACH_DEP); bitmap_obstack_initialize (NULL); bitmap convert_bbs = BITMAP_ALLOC (NULL); basic_block bb; rtx_insn *insn, *set_insn; rtx set; rtx v4sf_const0 = NULL_RTX; auto_vec control_flow_insns; /* We create invalid RTL initially so defer rescans. */ df_set_flags (DF_DEFER_INSN_RESCAN); FOR_EACH_BB_FN (bb, cfun) { FOR_BB_INSNS (bb, insn) { if (!NONDEBUG_INSN_P (insn)) continue; set = single_set (insn); if (!set) continue; if (get_attr_avx_partial_xmm_update (insn) != AVX_PARTIAL_XMM_UPDATE_TRUE) continue; /* Convert PARTIAL_XMM_UPDATE_TRUE insns, DF -> SF, SF -> DF, SI -> SF, SI -> DF, DI -> SF, DI -> DF, sqrt, rsqrt, rcp, round, to vec_dup and vec_merge with subreg. */ rtx src = SET_SRC (set); rtx dest = SET_DEST (set); machine_mode dest_mode = GET_MODE (dest); bool convert_p = false; switch (GET_CODE (src)) { case FLOAT: case FLOAT_EXTEND: case FLOAT_TRUNCATE: case UNSIGNED_FLOAT: convert_p = true; break; default: break; } /* Only hanlde conversion here. */ machine_mode src_mode = convert_p ? GET_MODE (XEXP (src, 0)) : VOIDmode; switch (src_mode) { case E_SFmode: case E_DFmode: if (TARGET_USE_VECTOR_FP_CONVERTS || !TARGET_SSE_PARTIAL_REG_FP_CONVERTS_DEPENDENCY) continue; break; case E_SImode: case E_DImode: if (TARGET_USE_VECTOR_CONVERTS || !TARGET_SSE_PARTIAL_REG_CONVERTS_DEPENDENCY) continue; break; case E_VOIDmode: gcc_assert (!convert_p); break; default: gcc_unreachable (); } if (!v4sf_const0) v4sf_const0 = gen_reg_rtx (V4SFmode); rtx zero; machine_mode dest_vecmode; switch (dest_mode) { case E_HFmode: dest_vecmode = V8HFmode; zero = gen_rtx_SUBREG (V8HFmode, v4sf_const0, 0); break; case E_SFmode: dest_vecmode = V4SFmode; zero = v4sf_const0; break; case E_DFmode: dest_vecmode = V2DFmode; zero = gen_rtx_SUBREG (V2DFmode, v4sf_const0, 0); break; default: gcc_unreachable (); } /* Change source to vector mode. */ src = gen_rtx_VEC_DUPLICATE (dest_vecmode, src); src = gen_rtx_VEC_MERGE (dest_vecmode, src, zero, GEN_INT (HOST_WIDE_INT_1U)); /* Change destination to vector mode. */ rtx vec = gen_reg_rtx (dest_vecmode); /* Generate an XMM vector SET. */ set = gen_rtx_SET (vec, src); set_insn = emit_insn_before (set, insn); df_insn_rescan (set_insn); if (cfun->can_throw_non_call_exceptions) { /* Handle REG_EH_REGION note. */ rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX); if (note) { control_flow_insns.safe_push (set_insn); add_reg_note (set_insn, REG_EH_REGION, XEXP (note, 0)); } } src = gen_rtx_SUBREG (dest_mode, vec, 0); set = gen_rtx_SET (dest, src); /* Drop possible dead definitions. */ PATTERN (insn) = set; INSN_CODE (insn) = -1; recog_memoized (insn); df_insn_rescan (insn); bitmap_set_bit (convert_bbs, bb->index); } } if (v4sf_const0) { /* (Re-)discover loops so that bb->loop_father can be used in the analysis below. */ calculate_dominance_info (CDI_DOMINATORS); loop_optimizer_init (AVOID_CFG_MODIFICATIONS); /* Generate a vxorps at entry of the nearest dominator for basic blocks with conversions, which is in the fake loop that contains the whole function, so that there is only a single vxorps in the whole function. */ bb = nearest_common_dominator_for_set (CDI_DOMINATORS, convert_bbs); while (bb->loop_father->latch != EXIT_BLOCK_PTR_FOR_FN (cfun)) bb = get_immediate_dominator (CDI_DOMINATORS, bb->loop_father->header); set = gen_rtx_SET (v4sf_const0, CONST0_RTX (V4SFmode)); insn = BB_HEAD (bb); while (insn && !NONDEBUG_INSN_P (insn)) { if (insn == BB_END (bb)) { insn = NULL; break; } insn = NEXT_INSN (insn); } if (insn == BB_HEAD (bb)) set_insn = emit_insn_before (set, insn); else set_insn = emit_insn_after (set, insn ? PREV_INSN (insn) : BB_END (bb)); df_insn_rescan (set_insn); loop_optimizer_finalize (); if (!control_flow_insns.is_empty ()) { free_dominance_info (CDI_DOMINATORS); unsigned int i; FOR_EACH_VEC_ELT (control_flow_insns, i, insn) if (control_flow_insn_p (insn)) { /* Split the block after insn. There will be a fallthru edge, which is OK so we keep it. We have to create the exception edges ourselves. */ bb = BLOCK_FOR_INSN (insn); split_block (bb, insn); rtl_make_eh_edge (NULL, bb, BB_END (bb)); } } } df_process_deferred_rescans (); df_clear_flags (DF_DEFER_INSN_RESCAN); bitmap_obstack_release (NULL); BITMAP_FREE (convert_bbs); timevar_pop (TV_MACH_DEP); return 0; } namespace { const pass_data pass_data_remove_partial_avx_dependency = { RTL_PASS, /* type */ "rpad", /* name */ OPTGROUP_NONE, /* optinfo_flags */ TV_MACH_DEP, /* tv_id */ 0, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ 0, /* todo_flags_finish */ }; class pass_remove_partial_avx_dependency : public rtl_opt_pass { public: pass_remove_partial_avx_dependency (gcc::context *ctxt) : rtl_opt_pass (pass_data_remove_partial_avx_dependency, ctxt) {} /* opt_pass methods: */ bool gate (function *) final override { return (TARGET_AVX && TARGET_SSE_PARTIAL_REG_DEPENDENCY && TARGET_SSE_MATH && optimize && optimize_function_for_speed_p (cfun)); } unsigned int execute (function *) final override { return remove_partial_avx_dependency (); } }; // class pass_rpad } // anon namespace rtl_opt_pass * make_pass_remove_partial_avx_dependency (gcc::context *ctxt) { return new pass_remove_partial_avx_dependency (ctxt); } /* This compares the priority of target features in function DECL1 and DECL2. It returns positive value if DECL1 is higher priority, negative value if DECL2 is higher priority and 0 if they are the same. */ int ix86_compare_version_priority (tree decl1, tree decl2) { unsigned int priority1 = get_builtin_code_for_version (decl1, NULL); unsigned int priority2 = get_builtin_code_for_version (decl2, NULL); return (int)priority1 - (int)priority2; } /* V1 and V2 point to function versions with different priorities based on the target ISA. This function compares their priorities. */ static int feature_compare (const void *v1, const void *v2) { typedef struct _function_version_info { tree version_decl; tree predicate_chain; unsigned int dispatch_priority; } function_version_info; const function_version_info c1 = *(const function_version_info *)v1; const function_version_info c2 = *(const function_version_info *)v2; return (c2.dispatch_priority - c1.dispatch_priority); } /* This adds a condition to the basic_block NEW_BB in function FUNCTION_DECL to return a pointer to VERSION_DECL if the outcome of the expression formed by PREDICATE_CHAIN is true. This function will be called during version dispatch to decide which function version to execute. It returns the basic block at the end, to which more conditions can be added. */ static basic_block add_condition_to_bb (tree function_decl, tree version_decl, tree predicate_chain, basic_block new_bb) { gimple *return_stmt; tree convert_expr, result_var; gimple *convert_stmt; gimple *call_cond_stmt; gimple *if_else_stmt; basic_block bb1, bb2, bb3; edge e12, e23; tree cond_var, and_expr_var = NULL_TREE; gimple_seq gseq; tree predicate_decl, predicate_arg; push_cfun (DECL_STRUCT_FUNCTION (function_decl)); gcc_assert (new_bb != NULL); gseq = bb_seq (new_bb); convert_expr = build1 (CONVERT_EXPR, ptr_type_node, build_fold_addr_expr (version_decl)); result_var = create_tmp_var (ptr_type_node); convert_stmt = gimple_build_assign (result_var, convert_expr); return_stmt = gimple_build_return (result_var); if (predicate_chain == NULL_TREE) { gimple_seq_add_stmt (&gseq, convert_stmt); gimple_seq_add_stmt (&gseq, return_stmt); set_bb_seq (new_bb, gseq); gimple_set_bb (convert_stmt, new_bb); gimple_set_bb (return_stmt, new_bb); pop_cfun (); return new_bb; } while (predicate_chain != NULL) { cond_var = create_tmp_var (integer_type_node); predicate_decl = TREE_PURPOSE (predicate_chain); predicate_arg = TREE_VALUE (predicate_chain); call_cond_stmt = gimple_build_call (predicate_decl, 1, predicate_arg); gimple_call_set_lhs (call_cond_stmt, cond_var); gimple_set_block (call_cond_stmt, DECL_INITIAL (function_decl)); gimple_set_bb (call_cond_stmt, new_bb); gimple_seq_add_stmt (&gseq, call_cond_stmt); predicate_chain = TREE_CHAIN (predicate_chain); if (and_expr_var == NULL) and_expr_var = cond_var; else { gimple *assign_stmt; /* Use MIN_EXPR to check if any integer is zero?. and_expr_var = min_expr */ assign_stmt = gimple_build_assign (and_expr_var, build2 (MIN_EXPR, integer_type_node, cond_var, and_expr_var)); gimple_set_block (assign_stmt, DECL_INITIAL (function_decl)); gimple_set_bb (assign_stmt, new_bb); gimple_seq_add_stmt (&gseq, assign_stmt); } } if_else_stmt = gimple_build_cond (GT_EXPR, and_expr_var, integer_zero_node, NULL_TREE, NULL_TREE); gimple_set_block (if_else_stmt, DECL_INITIAL (function_decl)); gimple_set_bb (if_else_stmt, new_bb); gimple_seq_add_stmt (&gseq, if_else_stmt); gimple_seq_add_stmt (&gseq, convert_stmt); gimple_seq_add_stmt (&gseq, return_stmt); set_bb_seq (new_bb, gseq); bb1 = new_bb; e12 = split_block (bb1, if_else_stmt); bb2 = e12->dest; e12->flags &= ~EDGE_FALLTHRU; e12->flags |= EDGE_TRUE_VALUE; e23 = split_block (bb2, return_stmt); gimple_set_bb (convert_stmt, bb2); gimple_set_bb (return_stmt, bb2); bb3 = e23->dest; make_edge (bb1, bb3, EDGE_FALSE_VALUE); remove_edge (e23); make_edge (bb2, EXIT_BLOCK_PTR_FOR_FN (cfun), 0); pop_cfun (); return bb3; } /* This function generates the dispatch function for multi-versioned functions. DISPATCH_DECL is the function which will contain the dispatch logic. FNDECLS are the function choices for dispatch, and is a tree chain. EMPTY_BB is the basic block pointer in DISPATCH_DECL in which the dispatch code is generated. */ static int dispatch_function_versions (tree dispatch_decl, void *fndecls_p, basic_block *empty_bb) { tree default_decl; gimple *ifunc_cpu_init_stmt; gimple_seq gseq; int ix; tree ele; vec *fndecls; unsigned int num_versions = 0; unsigned int actual_versions = 0; unsigned int i; struct _function_version_info { tree version_decl; tree predicate_chain; unsigned int dispatch_priority; }*function_version_info; gcc_assert (dispatch_decl != NULL && fndecls_p != NULL && empty_bb != NULL); /*fndecls_p is actually a vector. */ fndecls = static_cast *> (fndecls_p); /* At least one more version other than the default. */ num_versions = fndecls->length (); gcc_assert (num_versions >= 2); function_version_info = (struct _function_version_info *) XNEWVEC (struct _function_version_info, (num_versions - 1)); /* The first version in the vector is the default decl. */ default_decl = (*fndecls)[0]; push_cfun (DECL_STRUCT_FUNCTION (dispatch_decl)); gseq = bb_seq (*empty_bb); /* Function version dispatch is via IFUNC. IFUNC resolvers fire before constructors, so explicity call __builtin_cpu_init here. */ ifunc_cpu_init_stmt = gimple_build_call_vec (get_ix86_builtin (IX86_BUILTIN_CPU_INIT), vNULL); gimple_seq_add_stmt (&gseq, ifunc_cpu_init_stmt); gimple_set_bb (ifunc_cpu_init_stmt, *empty_bb); set_bb_seq (*empty_bb, gseq); pop_cfun (); for (ix = 1; fndecls->iterate (ix, &ele); ++ix) { tree version_decl = ele; tree predicate_chain = NULL_TREE; unsigned int priority; /* Get attribute string, parse it and find the right predicate decl. The predicate function could be a lengthy combination of many features, like arch-type and various isa-variants. */ priority = get_builtin_code_for_version (version_decl, &predicate_chain); if (predicate_chain == NULL_TREE) continue; function_version_info [actual_versions].version_decl = version_decl; function_version_info [actual_versions].predicate_chain = predicate_chain; function_version_info [actual_versions].dispatch_priority = priority; actual_versions++; } /* Sort the versions according to descending order of dispatch priority. The priority is based on the ISA. This is not a perfect solution. There could still be ambiguity. If more than one function version is suitable to execute, which one should be dispatched? In future, allow the user to specify a dispatch priority next to the version. */ qsort (function_version_info, actual_versions, sizeof (struct _function_version_info), feature_compare); for (i = 0; i < actual_versions; ++i) *empty_bb = add_condition_to_bb (dispatch_decl, function_version_info[i].version_decl, function_version_info[i].predicate_chain, *empty_bb); /* dispatch default version at the end. */ *empty_bb = add_condition_to_bb (dispatch_decl, default_decl, NULL, *empty_bb); free (function_version_info); return 0; } /* This function changes the assembler name for functions that are versions. If DECL is a function version and has a "target" attribute, it appends the attribute string to its assembler name. */ static tree ix86_mangle_function_version_assembler_name (tree decl, tree id) { tree version_attr; const char *orig_name, *version_string; char *attr_str, *assembler_name; if (DECL_DECLARED_INLINE_P (decl) && lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))) error_at (DECL_SOURCE_LOCATION (decl), "function versions cannot be marked as %," " bodies have to be generated"); if (DECL_VIRTUAL_P (decl) || DECL_VINDEX (decl)) sorry ("virtual function multiversioning not supported"); version_attr = lookup_attribute ("target", DECL_ATTRIBUTES (decl)); /* target attribute string cannot be NULL. */ gcc_assert (version_attr != NULL_TREE); orig_name = IDENTIFIER_POINTER (id); version_string = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (version_attr))); if (strcmp (version_string, "default") == 0) return id; attr_str = sorted_attr_string (TREE_VALUE (version_attr)); assembler_name = XNEWVEC (char, strlen (orig_name) + strlen (attr_str) + 2); sprintf (assembler_name, "%s.%s", orig_name, attr_str); /* Allow assembler name to be modified if already set. */ if (DECL_ASSEMBLER_NAME_SET_P (decl)) SET_DECL_RTL (decl, NULL); tree ret = get_identifier (assembler_name); XDELETEVEC (attr_str); XDELETEVEC (assembler_name); return ret; } tree ix86_mangle_decl_assembler_name (tree decl, tree id) { /* For function version, add the target suffix to the assembler name. */ if (TREE_CODE (decl) == FUNCTION_DECL && DECL_FUNCTION_VERSIONED (decl)) id = ix86_mangle_function_version_assembler_name (decl, id); #ifdef SUBTARGET_MANGLE_DECL_ASSEMBLER_NAME id = SUBTARGET_MANGLE_DECL_ASSEMBLER_NAME (decl, id); #endif return id; } /* Make a dispatcher declaration for the multi-versioned function DECL. Calls to DECL function will be replaced with calls to the dispatcher by the front-end. Returns the decl of the dispatcher function. */ tree ix86_get_function_versions_dispatcher (void *decl) { tree fn = (tree) decl; struct cgraph_node *node = NULL; struct cgraph_node *default_node = NULL; struct cgraph_function_version_info *node_v = NULL; struct cgraph_function_version_info *first_v = NULL; tree dispatch_decl = NULL; struct cgraph_function_version_info *default_version_info = NULL; gcc_assert (fn != NULL && DECL_FUNCTION_VERSIONED (fn)); node = cgraph_node::get (fn); gcc_assert (node != NULL); node_v = node->function_version (); gcc_assert (node_v != NULL); if (node_v->dispatcher_resolver != NULL) return node_v->dispatcher_resolver; /* Find the default version and make it the first node. */ first_v = node_v; /* Go to the beginning of the chain. */ while (first_v->prev != NULL) first_v = first_v->prev; default_version_info = first_v; while (default_version_info != NULL) { if (is_function_default_version (default_version_info->this_node->decl)) break; default_version_info = default_version_info->next; } /* If there is no default node, just return NULL. */ if (default_version_info == NULL) return NULL; /* Make default info the first node. */ if (first_v != default_version_info) { default_version_info->prev->next = default_version_info->next; if (default_version_info->next) default_version_info->next->prev = default_version_info->prev; first_v->prev = default_version_info; default_version_info->next = first_v; default_version_info->prev = NULL; } default_node = default_version_info->this_node; #if defined (ASM_OUTPUT_TYPE_DIRECTIVE) if (targetm.has_ifunc_p ()) { struct cgraph_function_version_info *it_v = NULL; struct cgraph_node *dispatcher_node = NULL; struct cgraph_function_version_info *dispatcher_version_info = NULL; /* Right now, the dispatching is done via ifunc. */ dispatch_decl = make_dispatcher_decl (default_node->decl); TREE_NOTHROW (dispatch_decl) = TREE_NOTHROW (fn); dispatcher_node = cgraph_node::get_create (dispatch_decl); gcc_assert (dispatcher_node != NULL); dispatcher_node->dispatcher_function = 1; dispatcher_version_info = dispatcher_node->insert_new_function_version (); dispatcher_version_info->next = default_version_info; dispatcher_node->definition = 1; /* Set the dispatcher for all the versions. */ it_v = default_version_info; while (it_v != NULL) { it_v->dispatcher_resolver = dispatch_decl; it_v = it_v->next; } } else #endif { error_at (DECL_SOURCE_LOCATION (default_node->decl), "multiversioning needs % which is not supported " "on this target"); } return dispatch_decl; } /* Make the resolver function decl to dispatch the versions of a multi-versioned function, DEFAULT_DECL. IFUNC_ALIAS_DECL is ifunc alias that will point to the created resolver. Create an empty basic block in the resolver and store the pointer in EMPTY_BB. Return the decl of the resolver function. */ static tree make_resolver_func (const tree default_decl, const tree ifunc_alias_decl, basic_block *empty_bb) { tree decl, type, t; /* Create resolver function name based on default_decl. */ tree decl_name = clone_function_name (default_decl, "resolver"); const char *resolver_name = IDENTIFIER_POINTER (decl_name); /* The resolver function should return a (void *). */ type = build_function_type_list (ptr_type_node, NULL_TREE); decl = build_fn_decl (resolver_name, type); SET_DECL_ASSEMBLER_NAME (decl, decl_name); DECL_NAME (decl) = decl_name; TREE_USED (decl) = 1; DECL_ARTIFICIAL (decl) = 1; DECL_IGNORED_P (decl) = 1; TREE_PUBLIC (decl) = 0; DECL_UNINLINABLE (decl) = 1; /* Resolver is not external, body is generated. */ DECL_EXTERNAL (decl) = 0; DECL_EXTERNAL (ifunc_alias_decl) = 0; DECL_CONTEXT (decl) = NULL_TREE; DECL_INITIAL (decl) = make_node (BLOCK); DECL_STATIC_CONSTRUCTOR (decl) = 0; if (DECL_COMDAT_GROUP (default_decl) || TREE_PUBLIC (default_decl)) { /* In this case, each translation unit with a call to this versioned function will put out a resolver. Ensure it is comdat to keep just one copy. */ DECL_COMDAT (decl) = 1; make_decl_one_only (decl, DECL_ASSEMBLER_NAME (decl)); } else TREE_PUBLIC (ifunc_alias_decl) = 0; /* Build result decl and add to function_decl. */ t = build_decl (UNKNOWN_LOCATION, RESULT_DECL, NULL_TREE, ptr_type_node); DECL_CONTEXT (t) = decl; DECL_ARTIFICIAL (t) = 1; DECL_IGNORED_P (t) = 1; DECL_RESULT (decl) = t; gimplify_function_tree (decl); push_cfun (DECL_STRUCT_FUNCTION (decl)); *empty_bb = init_lowered_empty_function (decl, false, profile_count::uninitialized ()); cgraph_node::add_new_function (decl, true); symtab->call_cgraph_insertion_hooks (cgraph_node::get_create (decl)); pop_cfun (); gcc_assert (ifunc_alias_decl != NULL); /* Mark ifunc_alias_decl as "ifunc" with resolver as resolver_name. */ DECL_ATTRIBUTES (ifunc_alias_decl) = make_attribute ("ifunc", resolver_name, DECL_ATTRIBUTES (ifunc_alias_decl)); /* Create the alias for dispatch to resolver here. */ cgraph_node::create_same_body_alias (ifunc_alias_decl, decl); return decl; } /* Generate the dispatching code body to dispatch multi-versioned function DECL. The target hook is called to process the "target" attributes and provide the code to dispatch the right function at run-time. NODE points to the dispatcher decl whose body will be created. */ tree ix86_generate_version_dispatcher_body (void *node_p) { tree resolver_decl; basic_block empty_bb; tree default_ver_decl; struct cgraph_node *versn; struct cgraph_node *node; struct cgraph_function_version_info *node_version_info = NULL; struct cgraph_function_version_info *versn_info = NULL; node = (cgraph_node *)node_p; node_version_info = node->function_version (); gcc_assert (node->dispatcher_function && node_version_info != NULL); if (node_version_info->dispatcher_resolver) return node_version_info->dispatcher_resolver; /* The first version in the chain corresponds to the default version. */ default_ver_decl = node_version_info->next->this_node->decl; /* node is going to be an alias, so remove the finalized bit. */ node->definition = false; resolver_decl = make_resolver_func (default_ver_decl, node->decl, &empty_bb); node_version_info->dispatcher_resolver = resolver_decl; push_cfun (DECL_STRUCT_FUNCTION (resolver_decl)); auto_vec fn_ver_vec; for (versn_info = node_version_info->next; versn_info; versn_info = versn_info->next) { versn = versn_info->this_node; /* Check for virtual functions here again, as by this time it should have been determined if this function needs a vtable index or not. This happens for methods in derived classes that override virtual methods in base classes but are not explicitly marked as virtual. */ if (DECL_VINDEX (versn->decl)) sorry ("virtual function multiversioning not supported"); fn_ver_vec.safe_push (versn->decl); } dispatch_function_versions (resolver_decl, &fn_ver_vec, &empty_bb); cgraph_edge::rebuild_edges (); pop_cfun (); return resolver_decl; }