]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/internal-fn.c
c-output-mod-2.c: Fix for -fPIC.
[thirdparty/gcc.git] / gcc / internal-fn.c
CommitLineData
25583c4f 1/* Internal functions.
d1e082c2 2 Copyright (C) 2011-2013 Free Software Foundation, Inc.
25583c4f
RS
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
23#include "internal-fn.h"
24#include "tree.h"
25#include "expr.h"
26#include "optabs.h"
27#include "gimple.h"
28
29/* The names of each internal function, indexed by function number. */
30const char *const internal_fn_name_array[] = {
31#define DEF_INTERNAL_FN(CODE, FLAGS) #CODE,
32#include "internal-fn.def"
33#undef DEF_INTERNAL_FN
34 "<invalid-fn>"
35};
36
37/* The ECF_* flags of each internal function, indexed by function number. */
38const int internal_fn_flags_array[] = {
39#define DEF_INTERNAL_FN(CODE, FLAGS) FLAGS,
40#include "internal-fn.def"
41#undef DEF_INTERNAL_FN
42 0
43};
44
272c6793
RS
45/* ARRAY_TYPE is an array of vector modes. Return the associated insn
46 for load-lanes-style optab OPTAB. The insn must exist. */
47
48static enum insn_code
49get_multi_vector_move (tree array_type, convert_optab optab)
50{
51 enum insn_code icode;
52 enum machine_mode imode;
53 enum machine_mode vmode;
54
55 gcc_assert (TREE_CODE (array_type) == ARRAY_TYPE);
56 imode = TYPE_MODE (array_type);
57 vmode = TYPE_MODE (TREE_TYPE (array_type));
58
59 icode = convert_optab_handler (optab, imode, vmode);
60 gcc_assert (icode != CODE_FOR_nothing);
61 return icode;
62}
63
64/* Expand LOAD_LANES call STMT. */
65
66static void
67expand_LOAD_LANES (gimple stmt)
68{
69 struct expand_operand ops[2];
70 tree type, lhs, rhs;
71 rtx target, mem;
72
73 lhs = gimple_call_lhs (stmt);
74 rhs = gimple_call_arg (stmt, 0);
75 type = TREE_TYPE (lhs);
76
77 target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
78 mem = expand_normal (rhs);
79
80 gcc_assert (MEM_P (mem));
81 PUT_MODE (mem, TYPE_MODE (type));
82
83 create_output_operand (&ops[0], target, TYPE_MODE (type));
84 create_fixed_operand (&ops[1], mem);
85 expand_insn (get_multi_vector_move (type, vec_load_lanes_optab), 2, ops);
86}
87
88/* Expand STORE_LANES call STMT. */
89
90static void
91expand_STORE_LANES (gimple stmt)
92{
93 struct expand_operand ops[2];
94 tree type, lhs, rhs;
95 rtx target, reg;
96
97 lhs = gimple_call_lhs (stmt);
98 rhs = gimple_call_arg (stmt, 0);
99 type = TREE_TYPE (rhs);
100
101 target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE);
102 reg = expand_normal (rhs);
103
104 gcc_assert (MEM_P (target));
105 PUT_MODE (target, TYPE_MODE (type));
106
107 create_fixed_operand (&ops[0], target);
108 create_input_operand (&ops[1], reg, TYPE_MODE (type));
109 expand_insn (get_multi_vector_move (type, vec_store_lanes_optab), 2, ops);
110}
111
74bf76ed
JJ
112/* This should get expanded in adjust_simduid_builtins. */
113
114static void
115expand_GOMP_SIMD_LANE (gimple stmt ATTRIBUTE_UNUSED)
116{
117 gcc_unreachable ();
118}
119
120/* This should get expanded in adjust_simduid_builtins. */
121
122static void
123expand_GOMP_SIMD_VF (gimple stmt ATTRIBUTE_UNUSED)
124{
125 gcc_unreachable ();
126}
127
128/* This should get expanded in adjust_simduid_builtins. */
129
130static void
131expand_GOMP_SIMD_LAST_LANE (gimple stmt ATTRIBUTE_UNUSED)
132{
133 gcc_unreachable ();
134}
135
25583c4f
RS
136/* Routines to expand each internal function, indexed by function number.
137 Each routine has the prototype:
138
139 expand_<NAME> (gimple stmt)
140
141 where STMT is the statement that performs the call. */
142static void (*const internal_fn_expanders[]) (gimple) = {
143#define DEF_INTERNAL_FN(CODE, FLAGS) expand_##CODE,
144#include "internal-fn.def"
145#undef DEF_INTERNAL_FN
146 0
147};
148
149/* Expand STMT, which is a call to internal function FN. */
150
151void
152expand_internal_call (gimple stmt)
153{
154 internal_fn_expanders[(int) gimple_call_internal_fn (stmt)] (stmt);
155}