Lines Matching refs:tcode

131 ix86_get_builtin_type (enum ix86_builtin_type tcode)  in ix86_get_builtin_type()  argument
136 gcc_assert ((unsigned)tcode < ARRAY_SIZE(ix86_builtin_type_tab)); in ix86_get_builtin_type()
138 type = ix86_builtin_type_tab[(int) tcode]; in ix86_get_builtin_type()
142 gcc_assert (tcode > IX86_BT_LAST_PRIM); in ix86_get_builtin_type()
143 if (tcode <= IX86_BT_LAST_VECT) in ix86_get_builtin_type()
147 index = tcode - IX86_BT_LAST_PRIM - 1; in ix86_get_builtin_type()
157 index = tcode - IX86_BT_LAST_VECT - 1; in ix86_get_builtin_type()
158 if (tcode <= IX86_BT_LAST_PTR) in ix86_get_builtin_type()
170 ix86_builtin_type_tab[(int) tcode] = type; in ix86_get_builtin_type()
181 ix86_get_builtin_func_type (enum ix86_builtin_func_type tcode) in ix86_get_builtin_func_type() argument
185 gcc_assert ((unsigned)tcode < ARRAY_SIZE (ix86_builtin_func_type_tab)); in ix86_get_builtin_func_type()
187 type = ix86_builtin_func_type_tab[(int) tcode]; in ix86_get_builtin_func_type()
191 if (tcode <= IX86_BT_LAST_FUNC) in ix86_get_builtin_func_type()
193 unsigned start = ix86_builtin_func_start[(int) tcode]; in ix86_get_builtin_func_type()
194 unsigned after = ix86_builtin_func_start[(int) tcode + 1]; in ix86_get_builtin_func_type()
209 unsigned index = tcode - IX86_BT_LAST_FUNC - 1; in ix86_get_builtin_func_type()
216 ix86_builtin_func_type_tab[(int) tcode] = type; in ix86_get_builtin_func_type()
254 enum ix86_builtin_func_type tcode, in def_builtin() argument
281 tree type = ix86_get_builtin_func_type (tcode); in def_builtin()
294 ix86_builtins_isa[(int) code].tcode = tcode; in def_builtin()
309 enum ix86_builtin_func_type tcode, enum ix86_builtins code) in def_builtin_const() argument
311 tree decl = def_builtin (mask, mask2, name, tcode, code); in def_builtin_const()
324 enum ix86_builtin_func_type tcode, enum ix86_builtins code) in def_builtin_pure() argument
326 tree decl = def_builtin (mask, mask2, name, tcode, code); in def_builtin_pure()
374 type = ix86_get_builtin_func_type (ix86_builtins_isa[i].tcode); in ix86_add_new_builtins()