1 /* Library interface to C++ front end.
2 Copyright (C) 2014-2024 Free Software Foundation, Inc.
4 This file is part of GCC. As it interacts with GDB through libcc1,
5 they all become a single program as regards the GNU GPL's requirements.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include <cc1plugin-config.h>
25 #undef PACKAGE_TARNAME
26 #undef PACKAGE_VERSION
28 #include "../gcc/config.h"
32 #undef PACKAGE_TARNAME
33 #undef PACKAGE_VERSION
35 #define INCLUDE_MEMORY
36 #define INCLUDE_VECTOR
37 #include "gcc-plugin.h"
39 #include "coretypes.h"
40 #include "stringpool.h"
42 #include "gcc-interface.h"
45 #include "double-int.h"
53 #include "fold-const.h"
54 #include "stor-layout.h"
58 #include "hash-table.h"
60 #include "c-family/c-pragma.h"
61 // #include "c-lang.h"
62 #include "diagnostic.h"
63 #include "langhooks.h"
64 #include "langhooks-def.h"
67 #undef cfun // we want to assign to it, and function.h won't let us
69 #include "callbacks.hh"
70 #include "connection.hh"
71 #include "marshall-cp.hh"
75 using namespace cc1_plugin
;
79 static_assert (GCC_CP_SYMBOL_MASK
>= GCC_CP_SYMBOL_END
,
80 "GCC_CP_SYMBOL_MASK >= GCC_CP_SYMBOL_END");
85 plugin_binding_oracle (enum cp_oracle_request kind
, tree identifier
)
87 enum gcc_cp_oracle_request request
;
89 gcc_assert (current_context
!= NULL
);
93 case CP_ORACLE_IDENTIFIER
:
94 request
= GCC_CP_ORACLE_IDENTIFIER
;
101 cc1_plugin::call (current_context
, "binding_oracle", &ignore
,
102 request
, IDENTIFIER_POINTER (identifier
));
105 static int push_count
;
107 /* at_function_scope_p () tests cfun, indicating we're actually
108 compiling the function, but we don't even set it when pretending to
109 enter a function scope. We use this distinction to tell these two
110 cases apart: we don't want to define e.g. class names in the user
111 expression function's scope, when they're local to the original
112 function, because they'd get the wrong linkage name. */
115 at_fake_function_scope_p ()
117 return (!cfun
|| cfun
->decl
!= current_function_decl
)
118 && current_scope () == current_function_decl
;
122 push_fake_function (tree fndecl
, scope_kind kind
= sk_function_parms
)
124 current_function_decl
= fndecl
;
125 begin_scope (kind
, fndecl
);
127 begin_scope (sk_block
, NULL
);
133 if (toplevel_bindings_p () && current_namespace
== global_namespace
)
134 pop_from_top_level ();
135 else if (at_namespace_scope_p ())
137 else if (at_class_scope_p ())
141 gcc_assert (at_fake_function_scope_p ());
142 gcc_assert (!at_function_scope_p ());
143 gcc_assert (current_binding_level
->kind
== sk_block
144 && current_binding_level
->this_entity
== NULL
);
147 gcc_assert (current_binding_level
->this_entity
148 == current_function_decl
);
150 current_function_decl
= NULL
;
151 for (cp_binding_level
*scope
= current_binding_level
;
152 scope
; scope
= scope
->level_chain
)
153 if (scope
->kind
== sk_function_parms
)
155 current_function_decl
= scope
->this_entity
;
162 supplement_binding (cxx_binding
*binding
, tree decl
)
164 /* FIXME: this is pretty much a copy of supplement_binding_1 in
165 ../gcc/cp/name-lookup.c; the few replaced/removed bits are marked
167 tree bval
= binding
->value
;
169 tree target_bval
= strip_using_decl (bval
);
170 tree target_decl
= strip_using_decl (decl
);
172 if (TREE_CODE (target_decl
) == TYPE_DECL
&& DECL_ARTIFICIAL (target_decl
)
173 && target_decl
!= target_bval
174 && (TREE_CODE (target_bval
) != TYPE_DECL
175 /* We allow pushing an enum multiple times in a class
176 template in order to handle late matching of underlying
177 type on an opaque-enum-declaration followed by an
179 || (processing_template_decl
180 && TREE_CODE (TREE_TYPE (target_decl
)) == ENUMERAL_TYPE
181 && TREE_CODE (TREE_TYPE (target_bval
)) == ENUMERAL_TYPE
182 && (dependent_type_p (ENUM_UNDERLYING_TYPE
183 (TREE_TYPE (target_decl
)))
184 || dependent_type_p (ENUM_UNDERLYING_TYPE
185 (TREE_TYPE (target_bval
)))))))
186 /* The new name is the type name. */
187 binding
->type
= decl
;
188 else if (/* TARGET_BVAL is null when push_class_level_binding moves
189 an inherited type-binding out of the way to make room
190 for a new value binding. */
192 /* TARGET_BVAL is error_mark_node when TARGET_DECL's name
193 has been used in a non-class scope prior declaration.
194 In that case, we should have already issued a
195 diagnostic; for graceful error recovery purpose, pretend
196 this was the intended declaration for that name. */
197 || target_bval
== error_mark_node
198 /* If TARGET_BVAL is anticipated but has not yet been
199 declared, pretend it is not there at all. */
200 || (TREE_CODE (target_bval
) == FUNCTION_DECL
201 && DECL_IS_UNDECLARED_BUILTIN (target_bval
)))
202 binding
->value
= decl
;
203 else if (TREE_CODE (target_bval
) == TYPE_DECL
204 && DECL_ARTIFICIAL (target_bval
)
205 && target_decl
!= target_bval
206 && (TREE_CODE (target_decl
) != TYPE_DECL
207 || same_type_p (TREE_TYPE (target_decl
),
208 TREE_TYPE (target_bval
))))
210 /* The old binding was a type name. It was placed in
211 VALUE field because it was thought, at the point it was
212 declared, to be the only entity with such a name. Move the
213 type name into the type slot; it is now hidden by the new
215 binding
->type
= bval
;
216 binding
->value
= decl
;
217 binding
->value_is_inherited
= false;
219 else if (TREE_CODE (target_bval
) == TYPE_DECL
220 && TREE_CODE (target_decl
) == TYPE_DECL
221 && DECL_NAME (target_decl
) == DECL_NAME (target_bval
)
222 && binding
->scope
->kind
!= sk_class
223 && (same_type_p (TREE_TYPE (target_decl
), TREE_TYPE (target_bval
))
224 /* If either type involves template parameters, we must
225 wait until instantiation. */
226 || uses_template_parms (TREE_TYPE (target_decl
))
227 || uses_template_parms (TREE_TYPE (target_bval
))))
228 /* We have two typedef-names, both naming the same type to have
229 the same name. In general, this is OK because of:
233 In a given scope, a typedef specifier can be used to redefine
234 the name of any type declared in that scope to refer to the
235 type to which it already refers.
237 However, in class scopes, this rule does not apply due to the
238 stricter language in [class.mem] prohibiting redeclarations of
241 /* There can be two block-scope declarations of the same variable,
242 so long as they are `extern' declarations. However, there cannot
243 be two declarations of the same static data member:
247 A member shall not be declared twice in the
248 member-specification. */
249 else if (VAR_P (target_decl
)
250 && VAR_P (target_bval
)
251 && DECL_EXTERNAL (target_decl
) && DECL_EXTERNAL (target_bval
)
252 && !DECL_CLASS_SCOPE_P (target_decl
))
254 duplicate_decls (decl
, binding
->value
);
257 else if (TREE_CODE (decl
) == NAMESPACE_DECL
258 && TREE_CODE (bval
) == NAMESPACE_DECL
259 && DECL_NAMESPACE_ALIAS (decl
)
260 && DECL_NAMESPACE_ALIAS (bval
)
261 && ORIGINAL_NAMESPACE (bval
) == ORIGINAL_NAMESPACE (decl
))
264 In a declarative region, a namespace-alias-definition can be
265 used to redefine a namespace-alias declared in that declarative
266 region to refer only to the namespace to which it already
271 // _1: diagnose_name_conflict (decl, bval);
275 gcc_assert (ok
); // _1: return ok;
279 reactivate_decl (tree decl
, cp_binding_level
*b
)
281 bool in_function_p
= TREE_CODE (b
->this_entity
) == FUNCTION_DECL
;
282 gcc_assert (in_function_p
283 || (b
== current_binding_level
284 && !at_class_scope_p ()));
286 tree id
= DECL_NAME (decl
);
287 tree type
= NULL_TREE
;
288 if (TREE_CODE (decl
) == TYPE_DECL
)
289 type
= TREE_TYPE (decl
);
291 if (type
&& TYPE_NAME (type
) == decl
292 && (RECORD_OR_UNION_CODE_P (TREE_CODE (type
))
293 || TREE_CODE (type
) == ENUMERAL_TYPE
))
295 gcc_assert (in_function_p
&& DECL_CONTEXT (decl
) == b
->this_entity
);
296 type
= TREE_TYPE (decl
);
300 gcc_assert (DECL_CONTEXT (decl
) == b
->this_entity
301 || DECL_CONTEXT (decl
) == global_namespace
302 || TREE_CODE (DECL_CONTEXT (decl
)) == FUNCTION_DECL
);
306 /* Adjust IDENTIFIER_BINDING to what it would have been if we were
307 at binding level B. Save the binding chain up to that point in
308 [binding, *chainp), and take note of the outermost bindings found
310 cxx_binding
*binding
= IDENTIFIER_BINDING (id
), **chainp
= NULL
;
311 tree
*shadowing_type_p
= NULL
;
314 cp_binding_level
*bc
= current_binding_level
;
315 for (cxx_binding
*prev_binding
= binding
;
316 prev_binding
; prev_binding
= prev_binding
->previous
)
318 while (bc
!= b
&& bc
!= prev_binding
->scope
)
319 bc
= bc
->level_chain
;
326 chainp
= &prev_binding
->previous
;
328 for (tree tshadow
= prev_binding
->scope
->type_shadowed
;
329 tshadow
; tshadow
= TREE_CHAIN (tshadow
))
330 if (TREE_PURPOSE (tshadow
) == id
)
332 shadowing_type_p
= &TREE_VALUE (tshadow
);
339 IDENTIFIER_BINDING (id
) = *chainp
;
343 /* Like push_local_binding, supplement or add a binding to the
345 if (IDENTIFIER_BINDING (id
) && IDENTIFIER_BINDING (id
)->scope
== b
)
346 supplement_binding (IDENTIFIER_BINDING (id
), decl
);
348 push_binding (id
, decl
, b
);
350 /* Now restore the binding chain we'd temporarily removed. */
353 *chainp
= IDENTIFIER_BINDING (id
);
354 IDENTIFIER_BINDING (id
) = binding
;
358 /* Insert the new type binding in the shadowing_type_p
360 tree shadowed_type
= NULL_TREE
;
361 if (shadowing_type_p
)
363 shadowed_type
= *shadowing_type_p
;
364 *shadowing_type_p
= type
;
367 b
->type_shadowed
= tree_cons (id
, shadowed_type
, b
->type_shadowed
);
368 TREE_TYPE (b
->type_shadowed
) = type
;
373 /* Our new binding is the active one, so shadow the earlier
375 b
->type_shadowed
= tree_cons (id
, REAL_IDENTIFIER_TYPE_VALUE (id
),
377 TREE_TYPE (b
->type_shadowed
) = type
;
378 SET_IDENTIFIER_TYPE_VALUE (id
, type
);
381 /* Record that we have a binding for ID, like add_decl_to_level. */
382 tree node
= build_tree_list (NULL_TREE
, decl
);
383 TREE_CHAIN (node
) = b
->names
;
388 plugin_pragma_push_user_expression (cpp_reader
*)
393 gcc_assert (!current_class_ptr
);
394 gcc_assert (!current_class_ref
);
396 gcc_assert (!cp_binding_oracle
);
397 cp_binding_oracle
= plugin_binding_oracle
;
399 /* Make the function containing the user expression a global
400 friend, so as to bypass access controls in it. */
401 if (at_function_scope_p ())
402 set_global_friend (current_function_decl
);
404 gcc_assert (at_function_scope_p ());
405 function
*save_cfun
= cfun
;
406 cp_binding_level
*orig_binding_level
= current_binding_level
;
409 cc1_plugin::call (current_context
, "enter_scope", &success
);
411 gcc_assert (at_fake_function_scope_p () || at_function_scope_p ());
413 function
*unchanged_cfun
= cfun
;
414 tree changed_func_decl
= current_function_decl
;
416 gcc_assert (current_class_type
== DECL_CONTEXT (current_function_decl
)
417 || !(RECORD_OR_UNION_CODE_P
418 (TREE_CODE (DECL_CONTEXT (current_function_decl
)))));
419 push_fake_function (save_cfun
->decl
, sk_block
);
420 current_class_type
= NULL_TREE
;
423 /* If we get here, GDB did NOT change the context. */
424 gcc_assert (cfun
== save_cfun
);
425 gcc_assert (at_function_scope_p ());
426 gcc_assert (orig_binding_level
427 == current_binding_level
->level_chain
->level_chain
);
432 gcc_assert (at_function_scope_p ());
434 cp_binding_level
*b
= current_binding_level
->level_chain
;
435 gcc_assert (b
->this_entity
== cfun
->decl
);
437 /* Reactivate local names from the previous context. Use
438 IDENTIFIER_MARKED to avoid reactivating shadowed names. */
439 for (cp_binding_level
*level
= orig_binding_level
;;)
441 for (tree name
= level
->names
;
442 name
; name
= TREE_CHAIN (name
))
445 if (TREE_CODE (decl
) == TREE_LIST
)
446 decl
= TREE_VALUE (decl
);
447 if (IDENTIFIER_MARKED (DECL_NAME (decl
)))
449 IDENTIFIER_MARKED (DECL_NAME (decl
)) = 1;
450 reactivate_decl (decl
, b
);
452 if (level
->kind
== sk_function_parms
453 && level
->this_entity
== cfun
->decl
)
455 gcc_assert (!level
->this_entity
);
456 level
= level
->level_chain
;
459 /* Now, clear the markers. */
460 for (tree name
= b
->names
; name
; name
= TREE_CHAIN (name
))
463 if (TREE_CODE (decl
) == TREE_LIST
)
464 decl
= TREE_VALUE (decl
);
465 gcc_assert (IDENTIFIER_MARKED (DECL_NAME (decl
)));
466 IDENTIFIER_MARKED (DECL_NAME (decl
)) = 0;
470 if (unchanged_cfun
|| DECL_OBJECT_MEMBER_FUNCTION_P (changed_func_decl
))
472 /* Check whether the oracle supplies us with a "this", and if
473 so, arrange for data members and this itself to be
475 tree this_val
= lookup_name (get_identifier ("this"));
476 current_class_ref
= !this_val
? NULL_TREE
477 : cp_build_indirect_ref (input_location
, this_val
, RO_NULL
,
478 tf_warning_or_error
);
479 current_class_ptr
= this_val
;
484 plugin_pragma_pop_user_expression (cpp_reader
*)
489 gcc_assert (cp_binding_oracle
);
491 gcc_assert (at_function_scope_p ());
492 function
*save_cfun
= cfun
;
493 current_class_ptr
= NULL_TREE
;
494 current_class_ref
= NULL_TREE
;
498 if (RECORD_OR_UNION_CODE_P (TREE_CODE (DECL_CONTEXT (current_function_decl
))))
499 current_class_type
= DECL_CONTEXT (current_function_decl
);
502 cc1_plugin::call (current_context
, "leave_scope", &success
);
507 gcc_assert (cfun
== save_cfun
);
509 cp_binding_oracle
= NULL
;
510 gcc_assert (at_function_scope_p ());
514 plugin_init_extra_pragmas (void *, void *)
516 c_register_pragma ("GCC", "push_user_expression", plugin_pragma_push_user_expression
);
517 c_register_pragma ("GCC", "pop_user_expression", plugin_pragma_pop_user_expression
);
518 /* FIXME: this one should go once we get GDB to use push and pop. */
519 c_register_pragma ("GCC", "user_expression", plugin_pragma_push_user_expression
);
524 static decl_addr_value
525 build_decl_addr_value (tree decl
, gcc_address address
)
527 decl_addr_value value
= {
529 build_int_cst_type (ptr_type_node
, address
)
534 static decl_addr_value
*
535 record_decl_address (plugin_context
*ctx
, decl_addr_value value
)
537 decl_addr_value
**slot
= ctx
->address_map
.find_slot (&value
, INSERT
);
538 gcc_assert (*slot
== NULL
);
540 = static_cast<decl_addr_value
*> (xmalloc (sizeof (decl_addr_value
)));
542 /* We don't want GCC to warn about e.g. static functions
543 without a code definition. */
544 suppress_warning (value
.decl
);
548 // Maybe rewrite a decl to its address.
550 address_rewriter (tree
*in
, int *walk_subtrees
, void *arg
)
552 plugin_context
*ctx
= (plugin_context
*) arg
;
555 || TREE_CODE (*in
) == NAMESPACE_DECL
556 || DECL_NAME (*in
) == NULL_TREE
)
559 decl_addr_value value
;
561 decl_addr_value
*found_value
= ctx
->address_map
.find (&value
);
562 if (found_value
!= NULL
)
564 else if (HAS_DECL_ASSEMBLER_NAME_P (*in
))
568 if (!cc1_plugin::call (ctx
, "address_oracle", &address
,
569 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (*in
))))
574 // Insert the decl into the address map in case it is referenced
576 value
= build_decl_addr_value (value
.decl
, address
);
577 found_value
= record_decl_address (ctx
, value
);
582 if (found_value
->address
!= error_mark_node
)
584 // We have an address for the decl, so rewrite the tree.
585 tree ptr_type
= build_pointer_type (TREE_TYPE (*in
));
586 *in
= fold_build1 (INDIRECT_REF
, TREE_TYPE (*in
),
587 fold_build1 (CONVERT_EXPR
, ptr_type
,
588 found_value
->address
));
596 // When generating code for gdb, we want to be able to use absolute
597 // addresses to refer to otherwise external objects that gdb knows
598 // about. gdb passes in these addresses when building decls, and then
599 // before gimplification we go through the trees, rewriting uses to
600 // the equivalent of "*(TYPE *) ADDR".
602 rewrite_decls_to_addresses (void *function_in
, void *)
604 tree function
= (tree
) function_in
;
606 // Do nothing if we're not in gdb.
607 if (current_context
== NULL
)
610 walk_tree (&DECL_SAVED_TREE (function
), address_rewriter
, current_context
,
617 safe_push_template_decl (tree decl
)
619 void (*save_oracle
) (enum cp_oracle_request
, tree identifier
);
621 save_oracle
= cp_binding_oracle
;
622 cp_binding_oracle
= NULL
;
624 tree ret
= push_template_decl (decl
);
626 cp_binding_oracle
= save_oracle
;
632 safe_pushtag (tree name
, tree type
)
634 void (*save_oracle
) (enum cp_oracle_request
, tree identifier
);
636 save_oracle
= cp_binding_oracle
;
637 cp_binding_oracle
= NULL
;
639 tree ret
= pushtag (name
, type
);
641 cp_binding_oracle
= save_oracle
;
647 safe_pushdecl (tree decl
)
649 void (*save_oracle
) (enum cp_oracle_request
, tree identifier
);
651 save_oracle
= cp_binding_oracle
;
652 cp_binding_oracle
= NULL
;
654 tree ret
= pushdecl (decl
);
656 cp_binding_oracle
= save_oracle
;
664 plugin_push_namespace (cc1_plugin::connection
*,
668 push_to_top_level ();
670 push_namespace (name
? get_identifier (name
) : NULL
);
676 plugin_push_class (cc1_plugin::connection
*,
679 tree type
= convert_in (type_in
);
680 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (type
)));
681 gcc_assert (TYPE_CONTEXT (type
) == FROB_CONTEXT (current_scope ()));
689 plugin_push_function (cc1_plugin::connection
*,
690 gcc_decl function_decl_in
)
692 tree fndecl
= convert_in (function_decl_in
);
693 gcc_assert (TREE_CODE (fndecl
) == FUNCTION_DECL
);
694 gcc_assert (DECL_CONTEXT (fndecl
) == FROB_CONTEXT (current_scope ()));
696 push_fake_function (fndecl
);
702 plugin_pop_binding_level (cc1_plugin::connection
*)
709 plugin_reactivate_decl (cc1_plugin::connection
*,
713 tree decl
= convert_in (decl_in
);
714 tree scope
= convert_in (scope_in
);
715 gcc_assert (VAR_P (decl
)
716 || TREE_CODE (decl
) == FUNCTION_DECL
717 || TREE_CODE (decl
) == TYPE_DECL
);
721 gcc_assert (TREE_CODE (scope
) == FUNCTION_DECL
);
722 for (b
= current_binding_level
;
723 b
->this_entity
!= scope
;
725 gcc_assert (b
->this_entity
!= global_namespace
);
729 gcc_assert (!at_class_scope_p ());
730 b
= current_binding_level
;
733 reactivate_decl (decl
, b
);
742 if (at_namespace_scope_p ())
743 decl
= current_namespace
;
744 else if (at_class_scope_p ())
745 decl
= TYPE_NAME (current_class_type
);
746 else if (at_fake_function_scope_p () || at_function_scope_p ())
747 decl
= current_function_decl
;
755 plugin_get_current_binding_level_decl (cc1_plugin::connection
*)
757 tree decl
= get_current_scope ();
759 return convert_out (decl
);
763 plugin_make_namespace_inline (cc1_plugin::connection
*)
765 tree inline_ns
= current_namespace
;
767 gcc_assert (toplevel_bindings_p ());
768 gcc_assert (inline_ns
!= global_namespace
);
770 tree parent_ns
= CP_DECL_CONTEXT (inline_ns
);
772 if (DECL_NAMESPACE_INLINE_P (inline_ns
))
775 DECL_NAMESPACE_INLINE_P (inline_ns
) = true;
776 vec_safe_push (DECL_NAMESPACE_INLINEES (parent_ns
), inline_ns
);
782 plugin_add_using_namespace (cc1_plugin::connection
*,
785 tree used_ns
= convert_in (used_ns_in
);
787 gcc_assert (TREE_CODE (used_ns
) == NAMESPACE_DECL
);
789 finish_using_directive (used_ns
, NULL_TREE
);
795 plugin_add_namespace_alias (cc1_plugin::connection
*,
799 tree name
= get_identifier (id
);
800 tree target
= convert_in (target_in
);
802 do_namespace_alias (name
, target
);
808 set_access_flags (tree decl
, enum gcc_cp_symbol_kind flags
)
810 gcc_assert (!(flags
& GCC_CP_ACCESS_MASK
) == !DECL_CLASS_SCOPE_P (decl
));
812 switch (flags
& GCC_CP_ACCESS_MASK
)
814 case GCC_CP_ACCESS_PRIVATE
:
815 TREE_PRIVATE (decl
) = true;
816 current_access_specifier
= access_private_node
;
819 case GCC_CP_ACCESS_PROTECTED
:
820 TREE_PROTECTED (decl
) = true;
821 current_access_specifier
= access_protected_node
;
824 case GCC_CP_ACCESS_PUBLIC
:
825 current_access_specifier
= access_public_node
;
834 plugin_add_using_decl (cc1_plugin::connection
*,
835 enum gcc_cp_symbol_kind flags
,
838 tree target
= convert_in (target_in
);
839 gcc_assert ((flags
& GCC_CP_SYMBOL_MASK
) == GCC_CP_SYMBOL_USING
);
840 gcc_assert (!(flags
& GCC_CP_FLAG_MASK
));
841 enum gcc_cp_symbol_kind acc_flags
;
842 acc_flags
= (enum gcc_cp_symbol_kind
) (flags
& GCC_CP_ACCESS_MASK
);
844 gcc_assert (!template_parm_scope_p ());
846 bool class_member_p
= at_class_scope_p ();
847 gcc_assert (!(acc_flags
& GCC_CP_ACCESS_MASK
) == !class_member_p
);
849 tree identifier
= DECL_NAME (target
);
850 tree tcontext
= DECL_CONTEXT (target
);
852 if (UNSCOPED_ENUM_P (tcontext
))
853 tcontext
= CP_TYPE_CONTEXT (tcontext
);
857 tree decl
= do_class_using_decl (tcontext
, identifier
);
859 set_access_flags (decl
, flags
);
861 finish_member_declaration (decl
);
865 /* We can't be at local scope. */
866 gcc_assert (at_namespace_scope_p ());
867 finish_nonmember_using_decl (tcontext
, identifier
);
874 build_named_class_type (enum tree_code code
,
878 /* See at_fake_function_scope_p. */
879 gcc_assert (!at_function_scope_p ());
880 tree type
= make_class_type (code
);
881 tree type_decl
= build_decl (loc
, TYPE_DECL
, id
, type
);
882 TYPE_NAME (type
) = type_decl
;
883 TYPE_STUB_DECL (type
) = type_decl
;
884 DECL_CONTEXT (type_decl
) = TYPE_CONTEXT (type
);
889 /* Abuse an unused field of the dummy template parms entry to hold the
891 #define TP_PARM_LIST TREE_TYPE (current_template_parms)
894 plugin_build_decl (cc1_plugin::connection
*self
,
896 enum gcc_cp_symbol_kind sym_kind
,
897 gcc_type sym_type_in
,
898 const char *substitution_name
,
900 const char *filename
,
901 unsigned int line_number
)
903 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
904 gcc_assert (!name
|| !strchr (name
, ':')); // FIXME: this can go eventually.
908 tree sym_type
= convert_in (sym_type_in
);
909 enum gcc_cp_symbol_kind sym_flags
;
910 sym_flags
= (enum gcc_cp_symbol_kind
) (sym_kind
& GCC_CP_FLAG_MASK
);
911 enum gcc_cp_symbol_kind acc_flags
;
912 acc_flags
= (enum gcc_cp_symbol_kind
) (sym_kind
& GCC_CP_ACCESS_MASK
);
913 sym_kind
= (enum gcc_cp_symbol_kind
) (sym_kind
& GCC_CP_SYMBOL_MASK
);
917 case GCC_CP_SYMBOL_FUNCTION
:
918 code
= FUNCTION_DECL
;
919 gcc_assert (!(sym_flags
& ~GCC_CP_FLAG_MASK_FUNCTION
));
922 case GCC_CP_SYMBOL_VARIABLE
:
924 gcc_assert (!(sym_flags
& ~GCC_CP_FLAG_MASK_VARIABLE
));
927 case GCC_CP_SYMBOL_TYPEDEF
:
929 gcc_assert (!sym_flags
);
932 case GCC_CP_SYMBOL_CLASS
:
934 gcc_assert (!(sym_flags
& ~GCC_CP_FLAG_MASK_CLASS
));
935 gcc_assert (!sym_type
);
938 case GCC_CP_SYMBOL_UNION
:
940 gcc_assert (!sym_flags
);
941 gcc_assert (!sym_type
);
948 bool template_decl_p
= template_parm_scope_p ();
952 gcc_assert (code
== FUNCTION_DECL
|| code
== RECORD_TYPE
953 || code
== TYPE_DECL
);
955 /* Finish the template parm list that started this template parm. */
956 end_template_parm_list (TP_PARM_LIST
);
958 gcc_assert (!address
);
959 gcc_assert (!substitution_name
);
962 location_t loc
= ctx
->get_location_t (filename
, line_number
);
963 bool class_member_p
= at_class_scope_p ();
964 bool ctor
= false, dtor
= false, assop
= false;
965 tree_code opcode
= ERROR_MARK
;
967 gcc_assert (!(acc_flags
& GCC_CP_ACCESS_MASK
) == !class_member_p
);
970 if (code
!= FUNCTION_DECL
971 || !(sym_flags
& GCC_CP_FLAG_SPECIAL_FUNCTION
))
974 identifier
= get_identifier (name
);
977 gcc_assert (RECORD_OR_UNION_CODE_P (code
));
978 identifier
= make_anon_name ();
982 if (code
== FUNCTION_DECL
)
984 if (sym_flags
& GCC_CP_FLAG_SPECIAL_FUNCTION
)
986 #define CHARS2(f,s) (((unsigned char)f << CHAR_BIT) | (unsigned char)s)
987 switch (CHARS2 (name
[0], name
[1]))
989 case CHARS2 ('C', 0x0): // ctor base declaration
990 case CHARS2 ('C', ' '):
991 case CHARS2 ('C', '1'):
992 case CHARS2 ('C', '2'):
993 case CHARS2 ('C', '4'):
996 gcc_assert (!address
);
997 gcc_assert (!substitution_name
);
998 identifier
= DECL_NAME (TYPE_NAME (current_class_type
));
1000 case CHARS2 ('D', 0x0): // dtor base declaration
1001 case CHARS2 ('D', ' '):
1002 case CHARS2 ('D', '0'):
1003 case CHARS2 ('D', '1'):
1004 case CHARS2 ('D', '2'):
1005 case CHARS2 ('D', '4'):
1006 gcc_assert (!template_decl_p
);
1009 case CHARS2 ('n', 'w'): // operator new
1012 case CHARS2 ('n', 'a'): // operator new[]
1013 opcode
= VEC_NEW_EXPR
;
1015 case CHARS2 ('d', 'l'): // operator delete
1016 opcode
= DELETE_EXPR
;
1018 case CHARS2 ('d', 'a'): // operator delete[]
1019 opcode
= VEC_DELETE_EXPR
;
1021 case CHARS2 ('p', 's'): // operator + (unary)
1024 case CHARS2 ('n', 'g'): // operator - (unary)
1025 opcode
= MINUS_EXPR
;
1027 case CHARS2 ('a', 'd'): // operator & (unary)
1028 opcode
= BIT_AND_EXPR
;
1030 case CHARS2 ('d', 'e'): // operator * (unary)
1033 case CHARS2 ('c', 'o'): // operator ~
1034 opcode
= BIT_NOT_EXPR
;
1036 case CHARS2 ('p', 'l'): // operator +
1039 case CHARS2 ('m', 'i'): // operator -
1040 opcode
= MINUS_EXPR
;
1042 case CHARS2 ('m', 'l'): // operator *
1045 case CHARS2 ('d', 'v'): // operator /
1046 opcode
= TRUNC_DIV_EXPR
;
1048 case CHARS2 ('r', 'm'): // operator %
1049 opcode
= TRUNC_MOD_EXPR
;
1051 case CHARS2 ('a', 'n'): // operator &
1052 opcode
= BIT_AND_EXPR
;
1054 case CHARS2 ('o', 'r'): // operator |
1055 opcode
= BIT_IOR_EXPR
;
1057 case CHARS2 ('e', 'o'): // operator ^
1058 opcode
= BIT_XOR_EXPR
;
1060 case CHARS2 ('a', 'S'): // operator =
1064 case CHARS2 ('p', 'L'): // operator +=
1068 case CHARS2 ('m', 'I'): // operator -=
1069 opcode
= MINUS_EXPR
;
1072 case CHARS2 ('m', 'L'): // operator *=
1076 case CHARS2 ('d', 'V'): // operator /=
1077 opcode
= TRUNC_DIV_EXPR
;
1080 case CHARS2 ('r', 'M'): // operator %=
1081 opcode
= TRUNC_MOD_EXPR
;
1084 case CHARS2 ('a', 'N'): // operator &=
1085 opcode
= BIT_AND_EXPR
;
1088 case CHARS2 ('o', 'R'): // operator |=
1089 opcode
= BIT_IOR_EXPR
;
1092 case CHARS2 ('e', 'O'): // operator ^=
1093 opcode
= BIT_XOR_EXPR
;
1096 case CHARS2 ('l', 's'): // operator <<
1097 opcode
= LSHIFT_EXPR
;
1099 case CHARS2 ('r', 's'): // operator >>
1100 opcode
= RSHIFT_EXPR
;
1102 case CHARS2 ('l', 'S'): // operator <<=
1103 opcode
= LSHIFT_EXPR
;
1106 case CHARS2 ('r', 'S'): // operator >>=
1107 opcode
= RSHIFT_EXPR
;
1110 case CHARS2 ('e', 'q'): // operator ==
1113 case CHARS2 ('n', 'e'): // operator !=
1116 case CHARS2 ('l', 't'): // operator <
1119 case CHARS2 ('g', 't'): // operator >
1122 case CHARS2 ('l', 'e'): // operator <=
1125 case CHARS2 ('g', 'e'): // operator >=
1128 case CHARS2 ('n', 't'): // operator !
1129 opcode
= TRUTH_NOT_EXPR
;
1131 case CHARS2 ('a', 'a'): // operator &&
1132 opcode
= TRUTH_ANDIF_EXPR
;
1134 case CHARS2 ('o', 'o'): // operator ||
1135 opcode
= TRUTH_ORIF_EXPR
;
1137 case CHARS2 ('p', 'p'): // operator ++
1138 opcode
= POSTINCREMENT_EXPR
;
1140 case CHARS2 ('m', 'm'): // operator --
1141 /* This stands for either one as an operator name, and
1142 "pp" and "mm" stand for POST??CREMENT, but for some
1143 reason the parser uses this opcode name for
1144 operator--; let's follow their practice. */
1145 opcode
= PREDECREMENT_EXPR
;
1147 case CHARS2 ('c', 'm'): // operator ,
1148 opcode
= COMPOUND_EXPR
;
1150 case CHARS2 ('p', 'm'): // operator ->*
1151 opcode
= MEMBER_REF
;
1153 case CHARS2 ('p', 't'): // operator ->
1154 opcode
= COMPONENT_REF
;
1156 case CHARS2 ('c', 'l'): // operator ()
1159 case CHARS2 ('i', 'x'): // operator []
1162 case CHARS2 ('c', 'v'): // operator <T> (conversion operator)
1163 identifier
= make_conv_op_name (TREE_TYPE (sym_type
));
1166 case CHARS2 ('l', 'i'): // operator "" <id>
1168 char *id
= (char *)name
+ 2;
1169 bool freeid
= false;
1170 if (*id
>= '0' && *id
<= '9')
1179 while (*id
&& *id
>= '0' && *id
<= '9');
1180 id
= xstrndup (id
, len
);
1183 identifier
= cp_literal_operator_id (id
);
1188 case CHARS2 ('q', 'u'): // ternary operator, not overloadable.
1193 if (opcode
!= ERROR_MARK
)
1194 identifier
= ovl_op_identifier (assop
, opcode
);
1196 decl
= build_lang_decl_loc (loc
, code
, identifier
, sym_type
);
1197 /* FIXME: current_lang_name is lang_name_c while compiling an
1198 extern "C" function, and we haven't switched to a global
1199 context at this point, and this breaks function
1201 SET_DECL_LANGUAGE (decl
, lang_cplusplus
);
1202 if (TREE_CODE (sym_type
) == METHOD_TYPE
)
1203 DECL_ARGUMENTS (decl
) = build_this_parm (decl
, current_class_type
,
1204 cp_type_quals (sym_type
));
1205 for (tree arg
= TREE_CODE (sym_type
) == METHOD_TYPE
1206 ? TREE_CHAIN (TYPE_ARG_TYPES (sym_type
))
1207 : TYPE_ARG_TYPES (sym_type
);
1208 arg
&& arg
!= void_list_node
;
1209 arg
= TREE_CHAIN (arg
))
1211 tree parm
= cp_build_parm_decl (decl
, NULL_TREE
, TREE_VALUE (arg
));
1212 DECL_CHAIN (parm
) = DECL_ARGUMENTS (decl
);
1213 DECL_ARGUMENTS (decl
) = parm
;
1215 DECL_ARGUMENTS (decl
) = nreverse (DECL_ARGUMENTS (decl
));
1218 if (TREE_CODE (sym_type
) == FUNCTION_TYPE
)
1219 DECL_STATIC_FUNCTION_P (decl
) = 1;
1220 if (sym_flags
& GCC_CP_FLAG_VIRTUAL_FUNCTION
)
1222 DECL_VIRTUAL_P (decl
) = 1;
1223 if (sym_flags
& GCC_CP_FLAG_PURE_VIRTUAL_FUNCTION
)
1224 DECL_PURE_VIRTUAL_P (decl
) = 1;
1225 if (sym_flags
& GCC_CP_FLAG_FINAL_VIRTUAL_FUNCTION
)
1226 DECL_FINAL_P (decl
) = 1;
1229 gcc_assert (!(sym_flags
& (GCC_CP_FLAG_PURE_VIRTUAL_FUNCTION
1230 | GCC_CP_FLAG_FINAL_VIRTUAL_FUNCTION
)));
1234 gcc_assert (!(sym_flags
& (GCC_CP_FLAG_VIRTUAL_FUNCTION
1235 | GCC_CP_FLAG_PURE_VIRTUAL_FUNCTION
1236 | GCC_CP_FLAG_FINAL_VIRTUAL_FUNCTION
)));
1237 gcc_assert (!ctor
&& !dtor
&& !assop
);
1239 if (sym_flags
& GCC_CP_FLAG_EXPLICIT_FUNCTION
)
1240 DECL_NONCONVERTING_P (decl
) = 1;
1241 if (sym_flags
& GCC_CP_FLAG_DEFAULTED_FUNCTION
)
1243 DECL_INITIAL (decl
) = ridpointers
[(int)RID_DEFAULT
];
1244 DECL_DEFAULTED_FN (decl
) = 1;
1246 if (sym_flags
& GCC_CP_FLAG_DELETED_FUNCTION
)
1248 // DECL_INITIAL (decl) = ridpointers[(int)RID_DELETE];
1249 DECL_DELETED_FN (decl
) = 1;
1250 DECL_DECLARED_INLINE_P (decl
) = 1;
1251 DECL_INITIAL (decl
) = error_mark_node
;
1255 DECL_CXX_CONSTRUCTOR_P (decl
) = 1;
1257 DECL_CXX_DESTRUCTOR_P (decl
) = 1;
1258 else if ((sym_flags
& GCC_CP_FLAG_SPECIAL_FUNCTION
)
1259 && opcode
!= ERROR_MARK
)
1260 DECL_OVERLOADED_OPERATOR_CODE_RAW (decl
) = ovl_op_mapping
[opcode
];
1262 else if (RECORD_OR_UNION_CODE_P (code
))
1264 decl
= build_named_class_type (code
, identifier
, loc
);
1265 tree type
= TREE_TYPE (decl
);
1267 if (code
== RECORD_TYPE
1268 && !(sym_flags
& GCC_CP_FLAG_CLASS_IS_STRUCT
))
1269 CLASSTYPE_DECLARED_CLASS (type
) = true;
1271 else if (class_member_p
)
1273 decl
= build_lang_decl_loc (loc
, code
, identifier
, sym_type
);
1275 if (TREE_CODE (decl
) == VAR_DECL
)
1277 DECL_THIS_STATIC (decl
) = 1;
1278 // The remainder of this block does the same as:
1279 // set_linkage_for_static_data_member (decl);
1280 TREE_PUBLIC (decl
) = 1;
1281 TREE_STATIC (decl
) = 1;
1282 DECL_INTERFACE_KNOWN (decl
) = 1;
1284 // FIXME: sym_flags & GCC_CP_FLAG_THREAD_LOCAL_VARIABLE
1285 gcc_assert (!(sym_flags
& GCC_CP_FLAG_THREAD_LOCAL_VARIABLE
));
1287 if (sym_flags
& GCC_CP_FLAG_CONSTEXPR_VARIABLE
)
1288 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
1293 decl
= build_decl (loc
, code
, identifier
, sym_type
);
1295 if (TREE_CODE (decl
) == VAR_DECL
)
1297 // FIXME: sym_flags & GCC_CP_FLAG_THREAD_LOCAL_VARIABLE
1298 gcc_assert (!(sym_flags
& GCC_CP_FLAG_THREAD_LOCAL_VARIABLE
));
1300 if (sym_flags
& GCC_CP_FLAG_CONSTEXPR_VARIABLE
)
1301 DECL_DECLARED_CONSTEXPR_P (decl
) = true;
1304 TREE_USED (decl
) = 1;
1305 TREE_ADDRESSABLE (decl
) = 1;
1308 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_class_type
);
1309 else if (at_namespace_scope_p ())
1310 DECL_CONTEXT (decl
) = FROB_CONTEXT (current_decl_namespace ());
1312 set_access_flags (decl
, acc_flags
);
1314 /* If this is the typedef that names an otherwise anonymous type,
1315 propagate the typedef name to the type. In normal compilation,
1316 this is done in grokdeclarator. */
1317 if (sym_kind
== GCC_CP_SYMBOL_TYPEDEF
1319 && DECL_CONTEXT (decl
) == TYPE_CONTEXT (sym_type
)
1320 && TYPE_UNNAMED_P (sym_type
))
1321 name_unnamed_type (sym_type
, decl
);
1323 if (sym_kind
!= GCC_CP_SYMBOL_TYPEDEF
1324 && sym_kind
!= GCC_CP_SYMBOL_CLASS
1325 && sym_kind
!= GCC_CP_SYMBOL_UNION
1326 && !template_decl_p
&& !ctor
&& !dtor
)
1328 decl_addr_value value
;
1330 DECL_EXTERNAL (decl
) = 1;
1332 if (substitution_name
!= NULL
)
1334 // If the translator gave us a name without a binding,
1335 // we can just substitute error_mark_node, since we know the
1336 // translator will be reporting an error anyhow.
1338 = lookup_name (get_identifier (substitution_name
));
1339 if (value
.address
== NULL_TREE
)
1340 value
.address
= error_mark_node
;
1343 value
.address
= build_int_cst_type (ptr_type_node
, address
);
1345 value
.address
= NULL
;
1347 record_decl_address (ctx
, value
);
1350 if (class_member_p
&& code
== FUNCTION_DECL
)
1353 maybe_retrofit_in_chrg (decl
);
1355 grok_special_member_properties (decl
);
1358 if (template_decl_p
)
1360 if (RECORD_OR_UNION_CODE_P (code
))
1361 safe_pushtag (identifier
, TREE_TYPE (decl
));
1363 decl
= safe_push_template_decl (decl
);
1365 tree tdecl
= NULL_TREE
;
1367 tdecl
= finish_member_template_decl (decl
);
1369 end_template_decl ();
1371 /* We only support one level of templates, because we only
1372 support declaring generics; actual definitions are only of
1374 gcc_assert (!template_parm_scope_p ());
1377 finish_member_declaration (tdecl
);
1379 else if (RECORD_OR_UNION_CODE_P (code
))
1380 safe_pushtag (identifier
, TREE_TYPE (decl
));
1381 else if (class_member_p
)
1382 finish_member_declaration (decl
);
1384 decl
= safe_pushdecl (decl
);
1387 /* Don't crash after a duplicate declaration of a cdtor. */
1388 && TYPE_FIELDS (current_class_type
) == decl
)
1390 /* ctors and dtors clones are chained after DECL.
1391 However, we create the clones before TYPE_METHODS is
1392 reversed. We test for cloned methods after reversal,
1393 however, and the test requires the clones to follow
1394 DECL. So, we reverse the chain of clones now, so
1395 that it will come out in the right order after
1397 tree save
= DECL_CHAIN (decl
);
1398 DECL_CHAIN (decl
) = NULL_TREE
;
1399 clone_cdtor (decl
, /*update_methods=*/true);
1400 gcc_assert (TYPE_FIELDS (current_class_type
) == decl
);
1401 TYPE_FIELDS (current_class_type
)
1402 = nreverse (TYPE_FIELDS (current_class_type
));
1403 DECL_CHAIN (decl
) = save
;
1406 rest_of_decl_compilation (decl
, toplevel_bindings_p (), 0);
1408 return convert_out (ctx
->preserve (decl
));
1412 plugin_define_cdtor_clone (cc1_plugin::connection
*self
,
1415 gcc_address address
)
1417 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1418 tree decl
= convert_in (cdtor_in
);
1423 switch (CHARS2 (name
[0], name
[1]))
1425 case CHARS2 ('C', '1'): // in-charge constructor
1426 identifier
= complete_ctor_identifier
;
1429 case CHARS2 ('C', '2'): // not-in-charge constructor
1430 identifier
= base_ctor_identifier
;
1433 case CHARS2 ('C', '4'):
1434 identifier
= ctor_identifier
; // unified constructor
1437 case CHARS2 ('D', '0'): // deleting destructor
1438 identifier
= deleting_dtor_identifier
;
1441 case CHARS2 ('D', '1'): // in-charge destructor
1442 identifier
= complete_dtor_identifier
;
1445 case CHARS2 ('D', '2'): // not-in-charge destructor
1446 identifier
= base_dtor_identifier
;
1449 case CHARS2 ('D', '4'):
1450 identifier
= dtor_identifier
; // unified destructor
1458 gcc_assert (!ctor
!= !dtor
);
1460 ? (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl
)
1461 && DECL_NAME (decl
) == ctor_identifier
)
1462 : (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl
)
1463 && DECL_NAME (decl
) == dtor_identifier
));
1465 while (decl
&& DECL_NAME (decl
) != identifier
)
1467 decl
= DECL_CHAIN (decl
);
1468 if (decl
&& !DECL_CLONED_FUNCTION_P (decl
))
1473 record_decl_address (ctx
, build_decl_addr_value (decl
, address
));
1475 return convert_out (decl
);
1479 plugin_add_friend (cc1_plugin::connection
* /* self */,
1483 tree decl
= convert_in (decl_in
);
1484 tree type
= convert_in (type_in
);
1486 gcc_assert (type
|| at_class_scope_p ());
1489 type
= current_class_type
;
1491 gcc_assert (TREE_CODE (type
) == RECORD_TYPE
);
1494 make_friend_class (type
, TREE_TYPE (decl
), true);
1497 DECL_UNIQUE_FRIEND_P (decl
) = true;
1498 add_friend (type
, decl
, true);
1505 plugin_build_pointer_type (cc1_plugin::connection
*,
1508 // No need to preserve a pointer type as the base type is preserved.
1509 return convert_out (build_pointer_type (convert_in (base_type
)));
1513 plugin_build_reference_type (cc1_plugin::connection
*,
1514 gcc_type base_type_in
,
1515 enum gcc_cp_ref_qualifiers rquals
)
1521 case GCC_CP_REF_QUAL_LVALUE
:
1524 case GCC_CP_REF_QUAL_RVALUE
:
1527 case GCC_CP_REF_QUAL_NONE
:
1532 tree rtype
= cp_build_reference_type (convert_in (base_type_in
), rval
);
1534 return convert_out (rtype
);
1538 start_class_def (tree type
,
1539 const gcc_vbase_array
*base_classes
)
1544 for (int i
= 0; i
< base_classes
->n_elements
; i
++)
1548 gcc_assert ((base_classes
->flags
[i
] & GCC_CP_SYMBOL_MASK
)
1549 == GCC_CP_SYMBOL_BASECLASS
);
1551 switch (base_classes
->flags
[i
] & GCC_CP_ACCESS_MASK
)
1553 case GCC_CP_ACCESS_PRIVATE
:
1554 access
= ridpointers
[(int)RID_PRIVATE
];
1557 case GCC_CP_ACCESS_PROTECTED
:
1558 access
= ridpointers
[(int)RID_PROTECTED
];
1561 case GCC_CP_ACCESS_PUBLIC
:
1562 access
= ridpointers
[(int)RID_PUBLIC
];
1569 tree base
= finish_base_specifier
1570 (convert_in (base_classes
->elements
[i
]), access
,
1571 (base_classes
->flags
[i
] & GCC_CP_FLAG_BASECLASS_VIRTUAL
) != 0);
1572 TREE_CHAIN (base
) = bases
;
1575 bases
= nreverse (bases
);
1577 xref_basetypes (type
, bases
);
1578 begin_class_definition (type
);
1583 plugin_start_class_type (cc1_plugin::connection
*self
,
1584 gcc_decl typedecl_in
,
1585 const gcc_vbase_array
*base_classes
,
1586 const char *filename
,
1587 unsigned int line_number
)
1589 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1590 location_t loc
= ctx
->get_location_t (filename
, line_number
);
1591 tree typedecl
= convert_in (typedecl_in
);
1592 tree type
= TREE_TYPE (typedecl
);
1594 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (type
)));
1595 gcc_assert (!COMPLETE_TYPE_P (type
));
1597 DECL_SOURCE_LOCATION (typedecl
) = loc
;
1599 tree result
= start_class_def (type
, base_classes
);
1601 return convert_out (ctx
->preserve (result
));
1605 plugin_start_closure_class_type (cc1_plugin::connection
*self
,
1607 gcc_decl extra_scope_in
,
1608 enum gcc_cp_symbol_kind flags
,
1609 const char *filename
,
1610 unsigned int line_number
)
1612 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1613 tree extra_scope
= convert_in (extra_scope_in
);
1615 gcc_assert ((flags
& GCC_CP_SYMBOL_MASK
) == GCC_CP_SYMBOL_LAMBDA_CLOSURE
);
1616 gcc_assert ((flags
& (~(GCC_CP_SYMBOL_MASK
| GCC_CP_ACCESS_MASK
))) == 0);
1618 gcc_assert (!(flags
& GCC_CP_ACCESS_MASK
) == !at_class_scope_p ());
1620 /* See at_fake_function_scope_p. */
1621 gcc_assert (!at_function_scope_p ());
1625 if (TREE_CODE (extra_scope
) == PARM_DECL
)
1627 gcc_assert (at_fake_function_scope_p ());
1628 /* Check that the given extra_scope is one of the parameters of
1629 the current function. */
1630 for (tree parm
= DECL_ARGUMENTS (current_function_decl
);
1631 ; parm
= DECL_CHAIN (parm
))
1634 if (parm
== extra_scope
)
1638 else if (TREE_CODE (extra_scope
) == FIELD_DECL
)
1640 gcc_assert (at_class_scope_p ());
1641 gcc_assert (DECL_CONTEXT (extra_scope
) == current_class_type
);
1644 /* FIXME: does this ever really occur? */
1645 gcc_assert (TREE_CODE (extra_scope
) == VAR_DECL
);
1648 tree lambda_expr
= build_lambda_expr ();
1650 LAMBDA_EXPR_LOCATION (lambda_expr
) = ctx
->get_location_t (filename
,
1653 tree type
= begin_lambda_type (lambda_expr
);
1655 /* Instead of calling record_lambda_scope, do this: */
1656 LAMBDA_EXPR_EXTRA_SCOPE (lambda_expr
) = extra_scope
;
1657 LAMBDA_EXPR_SCOPE_ONLY_DISCRIMINATOR (lambda_expr
) = discriminator
;
1658 LAMBDA_EXPR_SCOPE_SIG_DISCRIMINATOR (lambda_expr
) = discriminator
;
1660 tree decl
= TYPE_NAME (type
);
1661 determine_visibility (decl
);
1662 set_access_flags (decl
, flags
);
1664 return convert_out (ctx
->preserve (type
));
1668 plugin_build_lambda_expr (cc1_plugin::connection
*self
,
1669 gcc_type closure_type_in
)
1671 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1672 tree closure_type
= convert_in (closure_type_in
);
1674 gcc_assert (LAMBDA_TYPE_P (closure_type
));
1676 tree lambda_expr
= CLASSTYPE_LAMBDA_EXPR (closure_type
);
1678 tree lambda_object
= build_lambda_object (lambda_expr
);
1680 return convert_out (ctx
->preserve (lambda_object
));
1684 plugin_build_field (cc1_plugin::connection
*,
1685 const char *field_name
,
1686 gcc_type field_type_in
,
1687 enum gcc_cp_symbol_kind flags
,
1688 unsigned long bitsize
,
1689 unsigned long bitpos
)
1691 tree record_or_union_type
= current_class_type
;
1692 tree field_type
= convert_in (field_type_in
);
1694 gcc_assert (at_class_scope_p ());
1695 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (record_or_union_type
)));
1696 gcc_assert ((flags
& GCC_CP_SYMBOL_MASK
) == GCC_CP_SYMBOL_FIELD
);
1697 gcc_assert ((flags
& (~(GCC_CP_SYMBOL_MASK
| GCC_CP_ACCESS_MASK
1698 | GCC_CP_FLAG_MASK_FIELD
))) == 0);
1699 gcc_assert ((flags
& GCC_CP_ACCESS_MASK
));
1701 /* Note that gdb does not preserve the location of field decls, so
1702 we can't provide a decent location here. */
1703 tree decl
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
,
1704 get_identifier (field_name
), field_type
);
1705 DECL_FIELD_CONTEXT (decl
) = record_or_union_type
;
1707 set_access_flags (decl
, flags
);
1709 if ((flags
& GCC_CP_FLAG_FIELD_MUTABLE
) != 0)
1710 DECL_MUTABLE_P (decl
) = 1;
1712 if (TREE_CODE (field_type
) == INTEGER_TYPE
1713 && TYPE_PRECISION (field_type
) != bitsize
)
1715 DECL_BIT_FIELD_TYPE (decl
) = field_type
;
1717 = c_build_bitfield_integer_type (bitsize
, TYPE_UNSIGNED (field_type
));
1720 SET_DECL_MODE (decl
, TYPE_MODE (TREE_TYPE (decl
)));
1722 // There's no way to recover this from DWARF.
1723 SET_DECL_OFFSET_ALIGN (decl
, TYPE_PRECISION (pointer_sized_int_node
));
1725 tree pos
= bitsize_int (bitpos
);
1726 pos_from_bit (&DECL_FIELD_OFFSET (decl
), &DECL_FIELD_BIT_OFFSET (decl
),
1727 DECL_OFFSET_ALIGN (decl
), pos
);
1729 DECL_SIZE (decl
) = bitsize_int (bitsize
);
1730 DECL_SIZE_UNIT (decl
) = size_int ((bitsize
+ BITS_PER_UNIT
- 1)
1733 DECL_CHAIN (decl
) = TYPE_FIELDS (record_or_union_type
);
1734 TYPE_FIELDS (record_or_union_type
) = decl
;
1736 return convert_out (decl
);
1740 plugin_finish_class_type (cc1_plugin::connection
*,
1741 unsigned long size_in_bytes
)
1743 tree record_or_union_type
= current_class_type
;
1745 gcc_assert (RECORD_OR_UNION_CODE_P (TREE_CODE (record_or_union_type
)));
1747 finish_struct (record_or_union_type
, NULL
);
1749 gcc_assert (compare_tree_int (TYPE_SIZE_UNIT (record_or_union_type
),
1750 size_in_bytes
) == 0);
1756 plugin_start_enum_type (cc1_plugin::connection
*self
,
1758 gcc_type underlying_int_type_in
,
1759 enum gcc_cp_symbol_kind flags
,
1760 const char *filename
,
1761 unsigned int line_number
)
1763 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1764 tree underlying_int_type
= convert_in (underlying_int_type_in
);
1766 gcc_assert ((flags
& GCC_CP_SYMBOL_MASK
) == GCC_CP_SYMBOL_ENUM
);
1767 gcc_assert ((flags
& (~(GCC_CP_SYMBOL_MASK
| GCC_CP_ACCESS_MASK
1768 | GCC_CP_FLAG_MASK_ENUM
))) == 0);
1769 gcc_assert (!(flags
& GCC_CP_ACCESS_MASK
) == !at_class_scope_p ());
1771 if (underlying_int_type
== error_mark_node
)
1772 return convert_out (error_mark_node
);
1774 bool is_new_type
= false;
1776 tree id
= name
? get_identifier (name
) : make_anon_name ();
1778 tree type
= start_enum (id
, NULL_TREE
,
1779 underlying_int_type
,
1780 /* attributes = */ NULL_TREE
,
1781 !!(flags
& GCC_CP_FLAG_ENUM_SCOPED
), &is_new_type
);
1783 gcc_assert (is_new_type
);
1785 location_t loc
= ctx
->get_location_t (filename
, line_number
);
1786 tree type_decl
= TYPE_NAME (type
);
1787 DECL_SOURCE_LOCATION (type_decl
) = loc
;
1788 SET_OPAQUE_ENUM_P (type
, false);
1790 set_access_flags (type_decl
, flags
);
1792 return convert_out (ctx
->preserve (type
));
1796 plugin_build_enum_constant (cc1_plugin::connection
*,
1797 gcc_type enum_type_in
,
1799 unsigned long value
)
1801 tree enum_type
= convert_in (enum_type_in
);
1803 gcc_assert (TREE_CODE (enum_type
) == ENUMERAL_TYPE
);
1805 build_enumerator (get_identifier (name
), build_int_cst (enum_type
, value
),
1806 enum_type
, NULL_TREE
, BUILTINS_LOCATION
);
1808 return convert_out (TREE_VALUE (TYPE_VALUES (enum_type
)));
1812 plugin_finish_enum_type (cc1_plugin::connection
*,
1813 gcc_type enum_type_in
)
1815 tree enum_type
= convert_in (enum_type_in
);
1817 finish_enum_value_list (enum_type
);
1818 finish_enum (enum_type
);
1824 plugin_build_function_type (cc1_plugin::connection
*self
,
1825 gcc_type return_type_in
,
1826 const struct gcc_type_array
*argument_types_in
,
1829 tree return_type
= convert_in (return_type_in
);
1832 std::vector
<tree
> argument_types (argument_types_in
->n_elements
);
1833 for (int i
= 0; i
< argument_types_in
->n_elements
; ++i
)
1834 argument_types
[i
] = convert_in (argument_types_in
->elements
[i
]);
1837 result
= build_varargs_function_type_array (return_type
,
1838 argument_types_in
->n_elements
,
1839 argument_types
.data ());
1841 result
= build_function_type_array (return_type
,
1842 argument_types_in
->n_elements
,
1843 argument_types
.data ());
1845 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1846 return convert_out (ctx
->preserve (result
));
1852 plugin_add_function_default_args (cc1_plugin::connection
*self
,
1853 gcc_type function_type_in
,
1854 const struct gcc_cp_function_args
*defaults
)
1856 tree function_type
= convert_in (function_type_in
);
1858 gcc_assert (TREE_CODE (function_type
) == FUNCTION_TYPE
);
1860 if (!defaults
|| !defaults
->n_elements
)
1861 return function_type_in
;
1863 tree pargs
= TYPE_ARG_TYPES (function_type
);
1864 tree nargs
= NULL_TREE
;
1866 /* Build a reversed copy of the list of default-less arguments in
1867 NARGS. At the end of the loop, PARGS will point to the end of
1868 the argument list, or to the first argument that had a default
1870 while (pargs
&& TREE_VALUE (pargs
) != void_list_node
1871 && !TREE_PURPOSE (pargs
))
1873 nargs
= tree_cons (NULL_TREE
, TREE_VALUE (pargs
), nargs
);
1874 pargs
= TREE_CHAIN (pargs
);
1877 /* Set the defaults in the now-leading NARGS, taking into account
1878 that NARGS is reversed but DEFAULTS->elements isn't. */
1879 tree ndargs
= nargs
;
1880 int i
= defaults
->n_elements
;
1883 gcc_assert (ndargs
);
1884 tree deflt
= convert_in (defaults
->elements
[i
]);
1886 deflt
= error_mark_node
;
1887 TREE_PURPOSE (ndargs
) = deflt
;
1888 ndargs
= TREE_CHAIN (ndargs
);
1891 /* Finally, reverse NARGS, and append the remaining PARGS that
1892 already had defaults. */
1893 nargs
= nreverse (nargs
);
1894 nargs
= chainon (nargs
, pargs
);
1896 tree result
= build_function_type (TREE_TYPE (function_type
), nargs
);
1898 /* Copy exceptions, attributes and whatnot. */
1899 result
= build_exception_variant (result
,
1900 TYPE_RAISES_EXCEPTIONS (function_type
));
1901 result
= cp_build_type_attribute_variant (result
,
1902 TYPE_ATTRIBUTES (function_type
));
1904 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1905 return convert_out (ctx
->preserve (result
));
1909 plugin_set_deferred_function_default_args (cc1_plugin::connection
*,
1910 gcc_decl function_in
,
1911 const struct gcc_cp_function_args
1914 tree function
= convert_in (function_in
);
1916 gcc_assert (TREE_CODE (function
) == FUNCTION_DECL
);
1918 if (!defaults
|| !defaults
->n_elements
)
1921 tree arg
= FUNCTION_FIRST_USER_PARMTYPE (function
);
1923 for (int i
= 0; i
< defaults
->n_elements
; i
++)
1925 while (arg
&& TREE_PURPOSE (arg
) != error_mark_node
)
1926 arg
= TREE_CHAIN (arg
);
1931 TREE_PURPOSE (arg
) = convert_in (defaults
->elements
[i
]);
1932 arg
= TREE_CHAIN (arg
);
1941 plugin_get_function_parameter_decl (cc1_plugin::connection
*,
1942 gcc_decl function_in
,
1945 tree function
= convert_in (function_in
);
1947 gcc_assert (TREE_CODE (function
) == FUNCTION_DECL
);
1951 gcc_assert (TREE_CODE (TREE_TYPE (function
)) == METHOD_TYPE
);
1953 return convert_out (DECL_ARGUMENTS (function
));
1956 gcc_assert (index
>= 0);
1958 tree args
= FUNCTION_FIRST_USER_PARM (function
);
1960 for (int i
= 0; args
&& i
< index
; i
++)
1961 args
= DECL_CHAIN (args
);
1963 return convert_out (args
);
1967 plugin_build_exception_spec_variant (cc1_plugin::connection
*self
,
1968 gcc_type function_type_in
,
1969 const struct gcc_type_array
*except_types_in
)
1971 tree function_type
= convert_in (function_type_in
);
1972 tree except_types
= NULL_TREE
;
1974 if (!except_types_in
)
1975 except_types
= noexcept_false_spec
;
1976 else if (!except_types_in
->n_elements
)
1977 except_types
= empty_except_spec
;
1979 for (int i
= 0; i
< except_types_in
->n_elements
; i
++)
1980 except_types
= add_exception_specifier (except_types
,
1982 (except_types_in
->elements
[i
]),
1985 function_type
= build_exception_variant (function_type
,
1988 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
1989 return convert_out (ctx
->preserve (function_type
));
1993 plugin_build_method_type (cc1_plugin::connection
*self
,
1994 gcc_type class_type_in
,
1995 gcc_type func_type_in
,
1996 enum gcc_cp_qualifiers quals_in
,
1997 enum gcc_cp_ref_qualifiers rquals_in
)
1999 tree class_type
= convert_in (class_type_in
);
2000 tree func_type
= convert_in (func_type_in
);
2001 cp_cv_quals quals
= 0;
2002 cp_ref_qualifier rquals
;
2004 if ((quals_in
& GCC_CP_QUALIFIER_CONST
) != 0)
2005 quals
|= TYPE_QUAL_CONST
;
2006 if ((quals_in
& GCC_CP_QUALIFIER_VOLATILE
) != 0)
2007 quals
|= TYPE_QUAL_VOLATILE
;
2008 gcc_assert ((quals_in
& GCC_CP_QUALIFIER_RESTRICT
) == 0);
2012 case GCC_CP_REF_QUAL_NONE
:
2013 rquals
= REF_QUAL_NONE
;
2015 case GCC_CP_REF_QUAL_LVALUE
:
2016 rquals
= REF_QUAL_LVALUE
;
2018 case GCC_CP_REF_QUAL_RVALUE
:
2019 rquals
= REF_QUAL_RVALUE
;
2025 tree method_type
= class_type
2026 ? build_memfn_type (func_type
, class_type
, quals
, rquals
)
2027 : apply_memfn_quals (func_type
, quals
, rquals
);
2029 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2030 return convert_out (ctx
->preserve (method_type
));
2034 plugin_build_pointer_to_member_type (cc1_plugin::connection
*self
,
2035 gcc_type class_type_in
,
2036 gcc_type member_type_in
)
2038 tree class_type
= convert_in (class_type_in
);
2039 tree member_type
= convert_in (member_type_in
);
2041 tree memptr_type
= build_ptrmem_type (class_type
, member_type
);
2043 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2044 return convert_out (ctx
->preserve (memptr_type
));
2048 plugin_start_template_decl (cc1_plugin::connection
*)
2050 begin_template_parm_list ();
2052 TP_PARM_LIST
= NULL_TREE
;
2058 plugin_get_type_decl (cc1_plugin::connection
*,
2061 tree type
= convert_in (type_in
);
2063 tree name
= TYPE_NAME (type
);
2066 return convert_out (name
);
2070 plugin_get_decl_type (cc1_plugin::connection
*,
2073 tree decl
= convert_in (decl_in
);
2075 tree type
= TREE_TYPE (decl
);
2078 return convert_out (type
);
2082 plugin_build_type_template_parameter (cc1_plugin::connection
*self
,
2084 int /* bool */ pack_p
,
2085 gcc_type default_type
,
2086 const char *filename
,
2087 unsigned int line_number
)
2089 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2090 location_t loc
= ctx
->get_location_t (filename
, line_number
);
2092 gcc_assert (template_parm_scope_p ());
2094 tree parm
= finish_template_type_parm (class_type_node
, get_identifier (id
));
2095 parm
= build_tree_list (convert_in (default_type
), parm
);
2097 gcc_assert (!(pack_p
&& default_type
));
2099 /* Create a type and a decl for the type parm, and add the decl to
2101 TP_PARM_LIST
= process_template_parm (TP_PARM_LIST
, loc
, parm
,
2102 /* is_non_type = */ false, pack_p
);
2104 /* Locate the decl of the newly-added, processed template parm. */
2105 parm
= TREE_VALUE (tree_last (TP_PARM_LIST
));
2107 /* Return its type. */
2108 return convert_out (ctx
->preserve (TREE_TYPE (parm
)));
2112 plugin_build_template_template_parameter (cc1_plugin::connection
*self
,
2114 int /* bool */ pack_p
,
2115 gcc_utempl default_templ
,
2116 const char *filename
,
2117 unsigned int line_number
)
2119 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2120 location_t loc
= ctx
->get_location_t (filename
, line_number
);
2122 gcc_assert (template_parm_scope_p ());
2124 /* Finish the template parm list that started this template parm. */
2125 end_template_parm_list (TP_PARM_LIST
);
2127 gcc_assert (template_parm_scope_p ());
2129 tree parm
= finish_template_template_parm (class_type_node
,
2130 get_identifier (id
));
2131 parm
= build_tree_list (convert_in (default_templ
), parm
);
2133 gcc_assert (!(pack_p
&& default_templ
));
2135 /* Create a type and a decl for the template parm, and add the decl
2137 TP_PARM_LIST
= process_template_parm (TP_PARM_LIST
, loc
, parm
,
2138 /* is_non_type = */ false, pack_p
);
2140 /* Locate the decl of the newly-added, processed template parm. */
2141 parm
= TREE_VALUE (tree_last (TP_PARM_LIST
));
2143 return convert_out (ctx
->preserve (parm
));
2147 plugin_build_value_template_parameter (cc1_plugin::connection
*self
,
2150 gcc_expr default_value
,
2151 const char *filename
,
2152 unsigned int line_number
)
2154 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2155 location_t loc
= ctx
->get_location_t (filename
, line_number
);
2157 gcc_assert (template_parm_scope_p ());
2159 cp_declarator declarator
;
2160 memset (&declarator
, 0, sizeof (declarator
));
2161 // &declarator = make_id_declarator (NULL, get_identifier (id), sfk_none):
2162 declarator
.kind
= cdk_id
;
2163 declarator
.u
.id
.qualifying_scope
= NULL
;
2164 declarator
.u
.id
.unqualified_name
= get_identifier (id
);
2165 declarator
.u
.id
.sfk
= sfk_none
;
2167 cp_decl_specifier_seq declspec
;
2168 memset (&declspec
, 0, sizeof (declspec
));
2169 // cp_parser_set_decl_spec_type (&declspec, convert_in (type), -token-, false):
2170 declspec
.any_specifiers_p
= declspec
.any_type_specifiers_p
= true;
2171 declspec
.type
= convert_in (type
);
2172 declspec
.locations
[ds_type_spec
] = loc
;
2174 tree parm
= grokdeclarator (&declarator
, &declspec
, TPARM
, 0, 0);
2175 parm
= build_tree_list (convert_in (default_value
), parm
);
2177 /* Create a type and a decl for the template parm, and add the decl
2179 TP_PARM_LIST
= process_template_parm (TP_PARM_LIST
, loc
, parm
,
2180 /* is_non_type = */ true, false);
2182 /* Locate the decl of the newly-added, processed template parm. */
2183 parm
= TREE_VALUE (tree_last (TP_PARM_LIST
));
2185 return convert_out (ctx
->preserve (parm
));
2189 targlist (const gcc_cp_template_args
*targs
)
2191 int n
= targs
->n_elements
;
2192 tree vec
= make_tree_vec (n
);
2195 switch (targs
->kinds
[n
])
2197 case GCC_CP_TPARG_VALUE
:
2198 TREE_VEC_ELT (vec
, n
) = convert_in (targs
->elements
[n
].value
);
2200 case GCC_CP_TPARG_CLASS
:
2201 TREE_VEC_ELT (vec
, n
) = convert_in (targs
->elements
[n
].type
);
2203 case GCC_CP_TPARG_TEMPL
:
2204 TREE_VEC_ELT (vec
, n
) = convert_in (targs
->elements
[n
].templ
);
2206 case GCC_CP_TPARG_PACK
:
2207 TREE_VEC_ELT (vec
, n
) = convert_in (targs
->elements
[n
].pack
);
2217 plugin_build_dependent_typename (cc1_plugin::connection
*self
,
2218 gcc_type enclosing_type
,
2220 const gcc_cp_template_args
*targs
)
2222 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2223 tree type
= convert_in (enclosing_type
);
2224 tree name
= get_identifier (id
);
2226 name
= build_min_nt_loc (/*loc=*/0, TEMPLATE_ID_EXPR
,
2227 name
, targlist (targs
));
2228 tree res
= make_typename_type (type
, name
, typename_type
,
2229 /*complain=*/tf_error
);
2230 return convert_out (ctx
->preserve (res
));
2234 plugin_build_dependent_class_template (cc1_plugin::connection
*self
,
2235 gcc_type enclosing_type
,
2238 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2239 tree type
= convert_in (enclosing_type
);
2240 tree name
= get_identifier (id
);
2241 tree res
= make_unbound_class_template (type
, name
, NULL_TREE
,
2242 /*complain=*/tf_error
);
2243 return convert_out (ctx
->preserve (res
));
2247 plugin_build_dependent_type_template_id (cc1_plugin::connection
*self
,
2248 gcc_utempl template_decl
,
2249 const gcc_cp_template_args
*targs
)
2251 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2252 tree type
= convert_in (template_decl
);
2253 tree decl
= finish_template_type (type
, targlist (targs
),
2254 /*entering_scope=*/false);
2255 return convert_out (ctx
->preserve (TREE_TYPE (decl
)));
2259 plugin_build_dependent_expr (cc1_plugin::connection
*self
,
2260 gcc_decl enclosing_scope
,
2261 enum gcc_cp_symbol_kind flags
,
2263 gcc_type conv_type_in
,
2264 const gcc_cp_template_args
*targs
)
2266 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2267 tree scope
= convert_in (enclosing_scope
);
2268 tree conv_type
= convert_in (conv_type_in
);
2271 if (TREE_CODE (scope
) != NAMESPACE_DECL
)
2273 tree type
= TREE_TYPE (scope
);
2274 gcc_assert (TYPE_NAME (type
) == scope
);
2278 if (flags
== (GCC_CP_SYMBOL_FUNCTION
| GCC_CP_FLAG_SPECIAL_FUNCTION
))
2280 bool assop
= false, convop
= false;
2281 tree_code opcode
= ERROR_MARK
;
2283 switch (CHARS2 (name
[0], name
[1]))
2285 case CHARS2 ('C', 0x0): // ctor base declaration
2286 case CHARS2 ('C', ' '):
2287 case CHARS2 ('C', '1'):
2288 case CHARS2 ('C', '2'):
2289 case CHARS2 ('C', '4'):
2290 identifier
= ctor_identifier
;
2292 case CHARS2 ('D', 0x0): // dtor base declaration
2293 case CHARS2 ('D', ' '):
2294 case CHARS2 ('D', '0'):
2295 case CHARS2 ('D', '1'):
2296 case CHARS2 ('D', '2'):
2297 case CHARS2 ('D', '4'):
2298 gcc_assert (!targs
);
2299 identifier
= dtor_identifier
;
2301 case CHARS2 ('n', 'w'): // operator new
2304 case CHARS2 ('n', 'a'): // operator new[]
2305 opcode
= VEC_NEW_EXPR
;
2307 case CHARS2 ('d', 'l'): // operator delete
2308 opcode
= DELETE_EXPR
;
2310 case CHARS2 ('d', 'a'): // operator delete[]
2311 opcode
= VEC_DELETE_EXPR
;
2313 case CHARS2 ('p', 's'): // operator + (unary)
2316 case CHARS2 ('n', 'g'): // operator - (unary)
2317 opcode
= MINUS_EXPR
;
2319 case CHARS2 ('a', 'd'): // operator & (unary)
2320 opcode
= BIT_AND_EXPR
;
2322 case CHARS2 ('d', 'e'): // operator * (unary)
2325 case CHARS2 ('c', 'o'): // operator ~
2326 opcode
= BIT_NOT_EXPR
;
2328 case CHARS2 ('p', 'l'): // operator +
2331 case CHARS2 ('m', 'i'): // operator -
2332 opcode
= MINUS_EXPR
;
2334 case CHARS2 ('m', 'l'): // operator *
2337 case CHARS2 ('d', 'v'): // operator /
2338 opcode
= TRUNC_DIV_EXPR
;
2340 case CHARS2 ('r', 'm'): // operator %
2341 opcode
= TRUNC_MOD_EXPR
;
2343 case CHARS2 ('a', 'n'): // operator &
2344 opcode
= BIT_AND_EXPR
;
2346 case CHARS2 ('o', 'r'): // operator |
2347 opcode
= BIT_IOR_EXPR
;
2349 case CHARS2 ('e', 'o'): // operator ^
2350 opcode
= BIT_XOR_EXPR
;
2352 case CHARS2 ('a', 'S'): // operator =
2356 case CHARS2 ('p', 'L'): // operator +=
2360 case CHARS2 ('m', 'I'): // operator -=
2361 opcode
= MINUS_EXPR
;
2364 case CHARS2 ('m', 'L'): // operator *=
2368 case CHARS2 ('d', 'V'): // operator /=
2369 opcode
= TRUNC_DIV_EXPR
;
2372 case CHARS2 ('r', 'M'): // operator %=
2373 opcode
= TRUNC_MOD_EXPR
;
2376 case CHARS2 ('a', 'N'): // operator &=
2377 opcode
= BIT_AND_EXPR
;
2380 case CHARS2 ('o', 'R'): // operator |=
2381 opcode
= BIT_IOR_EXPR
;
2384 case CHARS2 ('e', 'O'): // operator ^=
2385 opcode
= BIT_XOR_EXPR
;
2388 case CHARS2 ('l', 's'): // operator <<
2389 opcode
= LSHIFT_EXPR
;
2391 case CHARS2 ('r', 's'): // operator >>
2392 opcode
= RSHIFT_EXPR
;
2394 case CHARS2 ('l', 'S'): // operator <<=
2395 opcode
= LSHIFT_EXPR
;
2398 case CHARS2 ('r', 'S'): // operator >>=
2399 opcode
= RSHIFT_EXPR
;
2402 case CHARS2 ('e', 'q'): // operator ==
2405 case CHARS2 ('n', 'e'): // operator !=
2408 case CHARS2 ('l', 't'): // operator <
2411 case CHARS2 ('g', 't'): // operator >
2414 case CHARS2 ('l', 'e'): // operator <=
2417 case CHARS2 ('g', 'e'): // operator >=
2420 case CHARS2 ('n', 't'): // operator !
2421 opcode
= TRUTH_NOT_EXPR
;
2423 case CHARS2 ('a', 'a'): // operator &&
2424 opcode
= TRUTH_ANDIF_EXPR
;
2426 case CHARS2 ('o', 'o'): // operator ||
2427 opcode
= TRUTH_ORIF_EXPR
;
2429 case CHARS2 ('p', 'p'): // operator ++
2430 opcode
= POSTINCREMENT_EXPR
;
2432 case CHARS2 ('m', 'm'): // operator --
2433 opcode
= PREDECREMENT_EXPR
;
2435 case CHARS2 ('c', 'm'): // operator ,
2436 opcode
= COMPOUND_EXPR
;
2438 case CHARS2 ('p', 'm'): // operator ->*
2439 opcode
= MEMBER_REF
;
2441 case CHARS2 ('p', 't'): // operator ->
2442 opcode
= COMPONENT_REF
;
2444 case CHARS2 ('c', 'l'): // operator ()
2447 case CHARS2 ('i', 'x'): // operator []
2450 case CHARS2 ('c', 'v'): // operator <T> (conversion operator)
2452 identifier
= make_conv_op_name (conv_type
);
2455 case CHARS2 ('l', 'i'): // operator "" <id>
2457 char *id
= (char *)name
+ 2;
2458 bool freeid
= false;
2459 if (*id
>= '0' && *id
<= '9')
2468 while (*id
&& *id
>= '0' && *id
<= '9');
2469 id
= xstrndup (id
, len
);
2472 identifier
= cp_literal_operator_id (id
);
2477 case CHARS2 ('q', 'u'): // ternary operator, not overloadable.
2482 gcc_assert (convop
|| !conv_type
);
2484 if (opcode
!= ERROR_MARK
)
2485 identifier
= ovl_op_identifier (assop
, opcode
);
2487 gcc_assert (identifier
);
2491 gcc_assert (flags
== GCC_CP_SYMBOL_MASK
);
2492 gcc_assert (!conv_type
);
2493 identifier
= get_identifier (name
);
2495 tree res
= identifier
;
2497 res
= lookup_name (res
, LOOK_where::BLOCK_NAMESPACE
);
2498 else if (!TYPE_P (scope
) || !dependent_scope_p (scope
))
2500 res
= lookup_qualified_name (scope
, res
, LOOK_want::NORMAL
, true);
2501 /* We've already resolved the name in the scope, so skip the
2502 build_qualified_name call below. */
2506 res
= lookup_template_function (res
, targlist (targs
));
2508 res
= build_qualified_name (NULL_TREE
, scope
, res
, !!targs
);
2509 return convert_out (ctx
->preserve (res
));
2513 plugin_build_literal_expr (cc1_plugin::connection
*self
,
2514 gcc_type type
, unsigned long value
)
2516 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2517 tree t
= convert_in (type
);
2518 tree val
= build_int_cst_type (t
, (unsigned HOST_WIDE_INT
) value
);
2519 return convert_out (ctx
->preserve (val
));
2523 plugin_build_decl_expr (cc1_plugin::connection
*self
,
2527 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2528 tree decl
= convert_in (decl_in
);
2529 gcc_assert (DECL_P (decl
));
2533 gcc_assert (DECL_CLASS_SCOPE_P (decl
));
2534 result
= build_offset_ref (DECL_CONTEXT (decl
), decl
,
2535 /*address_p=*/true, tf_error
);
2537 return convert_out (ctx
->preserve (result
));
2541 plugin_build_unary_expr (cc1_plugin::connection
*self
,
2542 const char *unary_op
,
2545 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2546 tree op0
= convert_in (operand
);
2547 tree_code opcode
= ERROR_MARK
;
2548 bool global_scope_p
= false;
2551 switch (CHARS2 (unary_op
[0], unary_op
[1]))
2553 case CHARS2 ('p', 's'): // operator + (unary)
2554 opcode
= UNARY_PLUS_EXPR
;
2556 case CHARS2 ('n', 'g'): // operator - (unary)
2557 opcode
= NEGATE_EXPR
;
2559 case CHARS2 ('a', 'd'): // operator & (unary)
2562 case CHARS2 ('d', 'e'): // operator * (unary)
2563 opcode
= INDIRECT_REF
;
2565 case CHARS2 ('c', 'o'): // operator ~
2566 opcode
= BIT_NOT_EXPR
;
2568 case CHARS2 ('n', 't'): // operator !
2569 opcode
= TRUTH_NOT_EXPR
;
2571 case CHARS2 ('p', 'p'): // operator ++
2572 opcode
= unary_op
[2] == '_' ? PREINCREMENT_EXPR
: POSTINCREMENT_EXPR
;
2574 case CHARS2 ('m', 'm'): // operator --
2575 opcode
= unary_op
[2] == '_' ? PREDECREMENT_EXPR
: POSTDECREMENT_EXPR
;
2577 case CHARS2 ('n', 'x'): // noexcept
2578 opcode
= NOEXCEPT_EXPR
;
2580 case CHARS2 ('t', 'w'): // throw
2582 opcode
= THROW_EXPR
;
2584 case CHARS2 ('t', 'r'): // rethrow
2586 opcode
= THROW_EXPR
;
2588 case CHARS2 ('t', 'e'): // typeid (value)
2589 opcode
= TYPEID_EXPR
;
2591 case CHARS2 ('s', 'z'): // sizeof (value)
2592 opcode
= SIZEOF_EXPR
;
2594 case CHARS2 ('a', 'z'): // alignof (value)
2595 opcode
= ALIGNOF_EXPR
;
2597 case CHARS2 ('g', 's'): // global scope (for delete, delete[])
2598 gcc_assert (!global_scope_p
);
2599 global_scope_p
= true;
2602 case CHARS2 ('d', 'l'): // delete
2603 opcode
= DELETE_EXPR
;
2605 case CHARS2 ('d', 'a'): // delete[]
2606 opcode
= VEC_DELETE_EXPR
;
2608 case CHARS2 ('s', 'p'): // pack...
2609 opcode
= EXPR_PACK_EXPANSION
;
2611 case CHARS2 ('s', 'Z'): // sizeof...(pack)
2612 opcode
= TYPE_PACK_EXPANSION
; // Not really, but let's use its code.
2615 /* FIXME: __real__, __imag__? */
2621 gcc_assert (!global_scope_p
2622 || opcode
== DELETE_EXPR
|| opcode
== VEC_DELETE_EXPR
);
2624 processing_template_decl
++;
2625 bool template_dependent_p
= op0
2626 && (type_dependent_expression_p (op0
)
2627 || value_dependent_expression_p (op0
));
2628 if (!template_dependent_p
)
2629 processing_template_decl
--;
2633 gcc_assert (op0
|| opcode
== THROW_EXPR
);
2638 result
= finish_noexcept_expr (op0
, tf_error
);
2642 result
= build_throw (input_location
, op0
, tf_error
);
2646 result
= build_typeid (op0
, tf_error
);
2651 result
= cxx_sizeof_or_alignof_expr (input_location
,
2652 op0
, opcode
, true, true);
2656 case VEC_DELETE_EXPR
:
2657 result
= delete_sanity (input_location
, op0
, NULL_TREE
,
2658 opcode
== VEC_DELETE_EXPR
,
2659 global_scope_p
, tf_error
);
2662 case EXPR_PACK_EXPANSION
:
2663 result
= make_pack_expansion (op0
);
2666 /* We're using this for sizeof...(pack). */
2667 case TYPE_PACK_EXPANSION
:
2668 result
= make_pack_expansion (op0
);
2669 PACK_EXPANSION_SIZEOF_P (result
) = true;
2673 result
= build_x_unary_op (/*loc=*/0, opcode
, op0
, NULL_TREE
, tf_error
);
2677 if (template_dependent_p
)
2678 processing_template_decl
--;
2680 return convert_out (ctx
->preserve (result
));
2684 plugin_build_binary_expr (cc1_plugin::connection
*self
,
2685 const char *binary_op
,
2689 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2690 tree op0
= convert_in (operand1
);
2691 tree op1
= convert_in (operand2
);
2692 tree_code opcode
= ERROR_MARK
;
2694 switch (CHARS2 (binary_op
[0], binary_op
[1]))
2696 case CHARS2 ('p', 'l'): // operator +
2699 case CHARS2 ('m', 'i'): // operator -
2700 opcode
= MINUS_EXPR
;
2702 case CHARS2 ('m', 'l'): // operator *
2705 case CHARS2 ('d', 'v'): // operator /
2706 opcode
= TRUNC_DIV_EXPR
;
2708 case CHARS2 ('r', 'm'): // operator %
2709 opcode
= TRUNC_MOD_EXPR
;
2711 case CHARS2 ('a', 'n'): // operator &
2712 opcode
= BIT_AND_EXPR
;
2714 case CHARS2 ('o', 'r'): // operator |
2715 opcode
= BIT_IOR_EXPR
;
2717 case CHARS2 ('e', 'o'): // operator ^
2718 opcode
= BIT_XOR_EXPR
;
2720 case CHARS2 ('l', 's'): // operator <<
2721 opcode
= LSHIFT_EXPR
;
2723 case CHARS2 ('r', 's'): // operator >>
2724 opcode
= RSHIFT_EXPR
;
2726 case CHARS2 ('e', 'q'): // operator ==
2729 case CHARS2 ('n', 'e'): // operator !=
2732 case CHARS2 ('l', 't'): // operator <
2735 case CHARS2 ('g', 't'): // operator >
2738 case CHARS2 ('l', 'e'): // operator <=
2741 case CHARS2 ('g', 'e'): // operator >=
2744 case CHARS2 ('a', 'a'): // operator &&
2745 opcode
= TRUTH_ANDIF_EXPR
;
2747 case CHARS2 ('o', 'o'): // operator ||
2748 opcode
= TRUTH_ORIF_EXPR
;
2750 case CHARS2 ('c', 'm'): // operator ,
2751 opcode
= COMPOUND_EXPR
;
2753 case CHARS2 ('p', 'm'): // operator ->*
2754 opcode
= MEMBER_REF
;
2756 case CHARS2 ('p', 't'): // operator ->
2757 opcode
= INDIRECT_REF
; // Not really! This will stand for
2758 // INDIRECT_REF followed by COMPONENT_REF
2761 case CHARS2 ('i', 'x'): // operator []
2764 case CHARS2 ('d', 's'): // operator .*
2765 opcode
= DOTSTAR_EXPR
;
2767 case CHARS2 ('d', 't'): // operator .
2768 opcode
= COMPONENT_REF
;
2775 processing_template_decl
++;
2776 bool template_dependent_p
= type_dependent_expression_p (op0
)
2777 || value_dependent_expression_p (op0
)
2778 || type_dependent_expression_p (op1
)
2779 || value_dependent_expression_p (op1
);
2780 if (!template_dependent_p
)
2781 processing_template_decl
--;
2787 case INDIRECT_REF
: // This is actually a "->".
2788 op0
= build_x_arrow (/*loc=*/0, op0
, tf_error
);
2791 result
= finish_class_member_access_expr (op0
, op1
,
2792 /*template_p=*/false,
2797 result
= build_x_binary_op (/*loc=*/0, opcode
, op0
, ERROR_MARK
,
2798 op1
, ERROR_MARK
, NULL_TREE
, NULL
, tf_error
);
2802 if (template_dependent_p
)
2803 processing_template_decl
--;
2805 return convert_out (ctx
->preserve (result
));
2809 plugin_build_ternary_expr (cc1_plugin::connection
*self
,
2810 const char *ternary_op
,
2815 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2816 tree op0
= convert_in (operand1
);
2817 tree op1
= convert_in (operand2
);
2818 tree op2
= convert_in (operand3
);
2819 gcc_assert (CHARS2 (ternary_op
[0], ternary_op
[1])
2820 == CHARS2 ('q', 'u')); // ternary operator
2822 processing_template_decl
++;
2823 bool template_dependent_p
= type_dependent_expression_p (op0
)
2824 || value_dependent_expression_p (op0
)
2825 || type_dependent_expression_p (op1
)
2826 || value_dependent_expression_p (op1
)
2827 || type_dependent_expression_p (op2
)
2828 || value_dependent_expression_p (op2
);
2829 if (!template_dependent_p
)
2830 processing_template_decl
--;
2832 tree val
= build_x_conditional_expr (/*loc=*/0, op0
, op1
, op2
, tf_error
);
2834 if (template_dependent_p
)
2835 processing_template_decl
--;
2837 return convert_out (ctx
->preserve (val
));
2841 plugin_build_unary_type_expr (cc1_plugin::connection
*self
,
2842 const char *unary_op
,
2845 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2846 tree type
= convert_in (operand
);
2847 tree_code opcode
= ERROR_MARK
;
2849 switch (CHARS2 (unary_op
[0], unary_op
[1]))
2851 case CHARS2 ('t', 'i'): // typeid (type)
2852 opcode
= TYPEID_EXPR
;
2855 case CHARS2 ('s', 't'): // sizeof (type)
2856 opcode
= SIZEOF_EXPR
;
2858 case CHARS2 ('a', 't'): // alignof (type)
2859 opcode
= ALIGNOF_EXPR
;
2862 case CHARS2 ('s', 'Z'): // sizeof...(pack)
2863 opcode
= TYPE_PACK_EXPANSION
; // Not really, but let's use its code.
2866 // FIXME: do we have to handle "sp", for the size of a captured
2867 // template parameter pack from an alias template, taking
2868 // multiple template arguments?
2874 processing_template_decl
++;
2875 bool template_dependent_p
= dependent_type_p (type
);
2876 if (!template_dependent_p
)
2877 processing_template_decl
--;
2884 result
= get_typeid (type
, tf_error
);
2887 // We're using this for sizeof...(pack). */
2888 case TYPE_PACK_EXPANSION
:
2889 result
= make_pack_expansion (type
);
2890 PACK_EXPANSION_SIZEOF_P (result
) = true;
2894 /* Use the C++11 alignof semantics. */
2895 result
= cxx_sizeof_or_alignof_type (input_location
, type
,
2896 opcode
, true, true);
2899 if (template_dependent_p
)
2900 processing_template_decl
--;
2902 return convert_out (ctx
->preserve (result
));
2906 plugin_build_cast_expr (cc1_plugin::connection
*self
,
2907 const char *binary_op
,
2911 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2912 tree (*build_cast
)(location_t loc
, tree type
, tree expr
,
2913 tsubst_flags_t complain
) = NULL
;
2914 tree type
= convert_in (operand1
);
2915 tree expr
= convert_in (operand2
);
2917 switch (CHARS2 (binary_op
[0], binary_op
[1]))
2919 case CHARS2 ('d', 'c'): // dynamic_cast
2920 build_cast
= build_dynamic_cast
;
2923 case CHARS2 ('s', 'c'): // static_cast
2924 build_cast
= build_static_cast
;
2927 case CHARS2 ('c', 'c'): // const_cast
2928 build_cast
= build_const_cast
;
2931 case CHARS2 ('r', 'c'): // reinterpret_cast
2932 build_cast
= build_reinterpret_cast
;
2935 case CHARS2 ('c', 'v'): // C cast, conversion with one argument
2936 build_cast
= cp_build_c_cast
;
2943 processing_template_decl
++;
2944 bool template_dependent_p
= dependent_type_p (type
)
2945 || type_dependent_expression_p (expr
)
2946 || value_dependent_expression_p (expr
);
2947 if (!template_dependent_p
)
2948 processing_template_decl
--;
2950 tree val
= build_cast (input_location
, type
, expr
, tf_error
);
2952 if (template_dependent_p
)
2953 processing_template_decl
--;
2955 return convert_out (ctx
->preserve (val
));
2958 static inline vec
<tree
, va_gc
> *
2959 args_to_tree_vec (const struct gcc_cp_function_args
*args_in
)
2961 vec
<tree
, va_gc
> *args
= make_tree_vector ();
2962 for (int i
= 0; i
< args_in
->n_elements
; i
++)
2963 vec_safe_push (args
, convert_in (args_in
->elements
[i
]));
2968 args_to_tree_list (const struct gcc_cp_function_args
*args_in
)
2970 tree args
, *tail
= &args
;
2971 for (int i
= 0; i
< args_in
->n_elements
; i
++)
2973 *tail
= build_tree_list (NULL
, convert_in (args_in
->elements
[i
]));
2974 tail
= &TREE_CHAIN (*tail
);
2979 static inline vec
<constructor_elt
, va_gc
> *
2980 args_to_ctor_elts (const struct gcc_cp_function_args
*args_in
)
2982 vec
<constructor_elt
, va_gc
> *args
= NULL
;
2983 for (int i
= 0; i
< args_in
->n_elements
; i
++)
2984 CONSTRUCTOR_APPEND_ELT (args
, NULL_TREE
, convert_in (args_in
->elements
[i
]));
2989 plugin_build_expression_list_expr (cc1_plugin::connection
*self
,
2990 const char *conv_op
,
2992 const struct gcc_cp_function_args
*values_in
)
2994 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
2995 tree type
= convert_in (type_in
);
2999 switch (CHARS2 (conv_op
[0], conv_op
[1]))
3001 case CHARS2 ('c', 'v'): // conversion with parenthesized expression list
3002 gcc_assert (TYPE_P (type
));
3003 args
= args_to_tree_list (values_in
);
3004 result
= build_functional_cast (input_location
, type
, args
, tf_error
);
3007 case CHARS2 ('t', 'l'): // conversion with braced expression list
3009 gcc_assert (TYPE_P (type
));
3010 args
= make_node (CONSTRUCTOR
);
3011 CONSTRUCTOR_ELTS (args
) = args_to_ctor_elts (values_in
);
3012 CONSTRUCTOR_IS_DIRECT_INIT (args
) = 1;
3013 result
= finish_compound_literal (type
, args
, tf_error
);
3016 case CHARS2 ('i', 'l'): // untyped braced expression list
3018 result
= make_node (CONSTRUCTOR
);
3019 CONSTRUCTOR_ELTS (result
) = args_to_ctor_elts (values_in
);
3026 return convert_out (ctx
->preserve (result
));
3030 plugin_build_new_expr (cc1_plugin::connection
*self
,
3032 const struct gcc_cp_function_args
*placement_in
,
3034 const struct gcc_cp_function_args
*initializer_in
)
3036 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3037 tree type
= convert_in (type_in
);
3038 vec
<tree
, va_gc
> *placement
= NULL
, *initializer
= NULL
;
3039 bool global_scope_p
= false;
3043 placement
= args_to_tree_vec (placement_in
);
3045 initializer
= args_to_tree_vec (initializer_in
);
3047 gcc_assert (TYPE_P (type
));
3050 switch (CHARS2 (new_op
[0], new_op
[1]))
3052 case CHARS2 ('g', 's'):
3053 gcc_assert (!global_scope_p
);
3054 global_scope_p
= true;
3058 case CHARS2 ('n', 'w'): // non-array new
3059 gcc_assert (TREE_CODE (type
) != ARRAY_TYPE
);
3062 case CHARS2 ('n', 'a'): // array new
3063 gcc_assert (TREE_CODE (type
) == ARRAY_TYPE
);
3064 gcc_assert (TYPE_DOMAIN (type
));
3066 // Compute the length of the outermost array type, then discard it.
3067 tree maxelt
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
3068 tree eltype
= TREE_TYPE (maxelt
);
3069 tree onecst
= integer_one_node
;
3071 processing_template_decl
++;
3072 bool template_dependent_p
= value_dependent_expression_p (maxelt
)
3073 || type_dependent_expression_p (maxelt
);
3074 if (!template_dependent_p
)
3076 processing_template_decl
--;
3077 onecst
= fold_convert (eltype
, onecst
);
3080 nelts
= fold_build2 (PLUS_EXPR
, eltype
, nelts
, onecst
);
3082 if (template_dependent_p
)
3083 processing_template_decl
--;
3085 type
= TREE_TYPE (type
);
3093 processing_template_decl
++;
3094 bool template_dependent_p
= dependent_type_p (type
)
3095 || value_dependent_expression_p (nelts
)
3097 && any_type_dependent_arguments_p (placement
))
3099 && any_type_dependent_arguments_p (initializer
));
3100 if (!template_dependent_p
)
3101 processing_template_decl
--;
3103 tree result
= build_new (input_location
, &placement
, type
, nelts
,
3104 &initializer
, global_scope_p
, tf_error
);
3106 if (template_dependent_p
)
3107 processing_template_decl
--;
3109 if (placement
!= NULL
)
3110 release_tree_vector (placement
);
3111 if (initializer
!= NULL
)
3112 release_tree_vector (initializer
);
3114 return convert_out (ctx
->preserve (result
));
3118 plugin_build_call_expr (cc1_plugin::connection
*self
,
3119 gcc_expr callable_in
, int qualified_p
,
3120 const struct gcc_cp_function_args
*args_in
)
3122 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3123 tree callable
= convert_in (callable_in
);
3126 vec
<tree
, va_gc
> *args
= args_to_tree_vec (args_in
);
3128 bool koenig_p
= false;
3129 if (!qualified_p
&& !args
->is_empty ())
3131 if (identifier_p (callable
))
3133 else if (is_overloaded_fn (callable
))
3135 tree fn
= get_first_fn (callable
);
3136 fn
= STRIP_TEMPLATE (fn
);
3138 if (!DECL_FUNCTION_MEMBER_P (fn
)
3139 && !DECL_LOCAL_DECL_P (fn
))
3144 if (koenig_p
&& !any_type_dependent_arguments_p (args
))
3145 callable
= perform_koenig_lookup (callable
, args
, tf_none
);
3147 if (TREE_CODE (callable
) == COMPONENT_REF
)
3149 tree object
= TREE_OPERAND (callable
, 0);
3150 tree memfn
= TREE_OPERAND (callable
, 1);
3152 if (type_dependent_expression_p (object
)
3153 || (!BASELINK_P (memfn
) && TREE_CODE (memfn
) != FIELD_DECL
)
3154 || type_dependent_expression_p (memfn
)
3155 || any_type_dependent_arguments_p (args
))
3156 call_expr
= build_nt_call_vec (callable
, args
);
3157 else if (BASELINK_P (memfn
))
3158 call_expr
= build_new_method_call (object
, memfn
, &args
, NULL_TREE
,
3160 ? LOOKUP_NORMAL
|LOOKUP_NONVIRTUAL
3164 call_expr
= finish_call_expr (callable
, &args
, false, false, tf_none
);
3166 else if (TREE_CODE (callable
) == OFFSET_REF
3167 || TREE_CODE (callable
) == MEMBER_REF
3168 || TREE_CODE (callable
) == DOTSTAR_EXPR
)
3169 call_expr
= build_offset_ref_call_from_tree (callable
, &args
, tf_none
);
3171 call_expr
= finish_call_expr (callable
, &args
,
3172 !!qualified_p
, koenig_p
, tf_none
);
3174 release_tree_vector (args
);
3175 return convert_out (ctx
->preserve (call_expr
));
3179 plugin_get_expr_type (cc1_plugin::connection
*self
,
3182 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3183 tree op0
= convert_in (operand
);
3186 type
= TREE_TYPE (op0
);
3188 type
= make_decltype_auto ();
3189 return convert_out (ctx
->preserve (type
));
3193 plugin_build_function_template_specialization (cc1_plugin::connection
*self
,
3194 gcc_decl template_decl
,
3195 const gcc_cp_template_args
*targs
,
3196 gcc_address address
,
3197 const char *filename
,
3198 unsigned int line_number
)
3200 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3201 location_t loc
= ctx
->get_location_t (filename
, line_number
);
3202 tree name
= convert_in (template_decl
);
3203 tree targsl
= targlist (targs
);
3205 tree decl
= tsubst (name
, targsl
, tf_error
, NULL_TREE
);
3206 DECL_SOURCE_LOCATION (decl
) = loc
;
3208 record_decl_address (ctx
, build_decl_addr_value (decl
, address
));
3210 return convert_out (ctx
->preserve (decl
));
3214 plugin_build_class_template_specialization (cc1_plugin::connection
*self
,
3215 gcc_decl template_decl
,
3216 const gcc_cp_template_args
*args
,
3217 const char *filename
,
3218 unsigned int line_number
)
3220 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3221 location_t loc
= ctx
->get_location_t (filename
, line_number
);
3222 tree name
= convert_in (template_decl
);
3224 tree tdecl
= finish_template_type (name
, targlist (args
), false);;
3225 DECL_SOURCE_LOCATION (tdecl
) = loc
;
3227 return convert_out (ctx
->preserve (tdecl
));
3230 /* Return a builtin type associated with BUILTIN_NAME. */
3233 safe_lookup_builtin_type (const char *builtin_name
)
3235 tree result
= NULL_TREE
;
3240 result
= identifier_global_value (get_identifier (builtin_name
));
3245 gcc_assert (TREE_CODE (result
) == TYPE_DECL
);
3246 result
= TREE_TYPE (result
);
3251 plugin_get_int_type (cc1_plugin::connection
*self
,
3252 int is_unsigned
, unsigned long size_in_bytes
,
3253 const char *builtin_name
)
3259 result
= safe_lookup_builtin_type (builtin_name
);
3260 gcc_assert (!result
|| TREE_CODE (result
) == INTEGER_TYPE
);
3263 result
= c_common_type_for_size (BITS_PER_UNIT
* size_in_bytes
,
3266 if (result
== NULL_TREE
)
3267 result
= error_mark_node
;
3270 gcc_assert (!TYPE_UNSIGNED (result
) == !is_unsigned
);
3271 gcc_assert (TREE_CODE (TYPE_SIZE (result
)) == INTEGER_CST
);
3272 gcc_assert (TYPE_PRECISION (result
) == BITS_PER_UNIT
* size_in_bytes
);
3274 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3275 ctx
->preserve (result
);
3277 return convert_out (result
);
3281 plugin_get_char_type (cc1_plugin::connection
*)
3283 return convert_out (char_type_node
);
3287 plugin_get_float_type (cc1_plugin::connection
*,
3288 unsigned long size_in_bytes
,
3289 const char *builtin_name
)
3293 tree result
= safe_lookup_builtin_type (builtin_name
);
3296 return convert_out (error_mark_node
);
3298 gcc_assert (SCALAR_FLOAT_TYPE_P (result
));
3299 gcc_assert (BITS_PER_UNIT
* size_in_bytes
== TYPE_PRECISION (result
));
3301 return convert_out (result
);
3304 if (BITS_PER_UNIT
* size_in_bytes
== TYPE_PRECISION (float_type_node
))
3305 return convert_out (float_type_node
);
3306 if (BITS_PER_UNIT
* size_in_bytes
== TYPE_PRECISION (double_type_node
))
3307 return convert_out (double_type_node
);
3308 if (BITS_PER_UNIT
* size_in_bytes
== TYPE_PRECISION (long_double_type_node
))
3309 return convert_out (long_double_type_node
);
3310 return convert_out (error_mark_node
);
3314 plugin_get_void_type (cc1_plugin::connection
*)
3316 return convert_out (void_type_node
);
3320 plugin_get_bool_type (cc1_plugin::connection
*)
3322 return convert_out (boolean_type_node
);
3326 plugin_get_nullptr_type (cc1_plugin::connection
*)
3328 return convert_out (nullptr_type_node
);
3332 plugin_get_nullptr_constant (cc1_plugin::connection
*)
3334 return convert_out (nullptr_node
);
3338 plugin_build_array_type (cc1_plugin::connection
*self
,
3339 gcc_type element_type_in
, int num_elements
)
3341 tree element_type
= convert_in (element_type_in
);
3344 if (num_elements
== -1)
3345 result
= build_array_type (element_type
, NULL_TREE
);
3347 result
= build_array_type_nelts (element_type
, num_elements
);
3349 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3350 return convert_out (ctx
->preserve (result
));
3354 plugin_build_dependent_array_type (cc1_plugin::connection
*self
,
3355 gcc_type element_type_in
,
3356 gcc_expr num_elements_in
)
3358 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3359 tree element_type
= convert_in (element_type_in
);
3360 tree size
= convert_in (num_elements_in
);
3361 tree name
= get_identifier ("dependent array type");
3363 processing_template_decl
++;
3364 bool template_dependent_p
= dependent_type_p (element_type
)
3365 || type_dependent_expression_p (size
)
3366 || value_dependent_expression_p (size
);
3367 if (!template_dependent_p
)
3368 processing_template_decl
--;
3370 tree itype
= compute_array_index_type (name
, size
, tf_error
);
3371 tree type
= build_cplus_array_type (element_type
, itype
);
3373 if (template_dependent_p
)
3374 processing_template_decl
--;
3376 return convert_out (ctx
->preserve (type
));
3380 plugin_build_vla_array_type (cc1_plugin::connection
*self
,
3381 gcc_type element_type_in
,
3382 const char *upper_bound_name
)
3384 tree element_type
= convert_in (element_type_in
);
3385 tree upper_bound
= lookup_name (get_identifier (upper_bound_name
));
3386 tree size
= fold_build2 (PLUS_EXPR
, TREE_TYPE (upper_bound
), upper_bound
,
3387 build_one_cst (TREE_TYPE (upper_bound
)));
3388 tree range
= compute_array_index_type (NULL_TREE
, size
,
3391 tree result
= build_cplus_array_type (element_type
, range
);
3393 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3394 return convert_out (ctx
->preserve (result
));
3398 plugin_build_qualified_type (cc1_plugin::connection
*,
3399 gcc_type unqualified_type_in
,
3400 enum gcc_cp_qualifiers qualifiers
)
3402 tree unqualified_type
= convert_in (unqualified_type_in
);
3403 cp_cv_quals quals
= 0;
3405 if ((qualifiers
& GCC_CP_QUALIFIER_CONST
) != 0)
3406 quals
|= TYPE_QUAL_CONST
;
3407 if ((qualifiers
& GCC_CP_QUALIFIER_VOLATILE
) != 0)
3408 quals
|= TYPE_QUAL_VOLATILE
;
3409 if ((qualifiers
& GCC_CP_QUALIFIER_RESTRICT
) != 0)
3410 quals
|= TYPE_QUAL_RESTRICT
;
3412 gcc_assert ((TREE_CODE (unqualified_type
) != METHOD_TYPE
3413 && TREE_CODE (unqualified_type
) != REFERENCE_TYPE
)
3416 return convert_out (build_qualified_type (unqualified_type
, quals
));
3420 plugin_build_complex_type (cc1_plugin::connection
*self
,
3423 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3424 return convert_out (ctx
->preserve (build_complex_type (convert_in (base_type
))));
3428 plugin_build_vector_type (cc1_plugin::connection
*self
,
3429 gcc_type base_type
, int nunits
)
3431 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3432 return convert_out (ctx
->preserve (build_vector_type (convert_in (base_type
),
3437 plugin_build_constant (cc1_plugin::connection
*self
, gcc_type type_in
,
3438 const char *name
, unsigned long value
,
3439 const char *filename
, unsigned int line_number
)
3441 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3443 tree type
= convert_in (type_in
);
3445 cst
= build_int_cst (type
, value
);
3446 if (!TYPE_READONLY (type
))
3447 type
= build_qualified_type (type
, TYPE_QUAL_CONST
);
3448 decl
= build_decl (ctx
->get_location_t (filename
, line_number
),
3449 VAR_DECL
, get_identifier (name
), type
);
3450 TREE_STATIC (decl
) = 1;
3451 TREE_READONLY (decl
) = 1;
3452 cp_finish_decl (decl
, cst
, true, NULL
, LOOKUP_ONLYCONVERTING
);
3453 safe_pushdecl (decl
);
3459 plugin_error (cc1_plugin::connection
*,
3460 const char *message
)
3462 error ("%s", message
);
3463 return convert_out (error_mark_node
);
3467 plugin_add_static_assert (cc1_plugin::connection
*self
,
3468 gcc_expr condition_in
,
3469 const char *errormsg
,
3470 const char *filename
,
3471 unsigned int line_number
)
3473 plugin_context
*ctx
= static_cast<plugin_context
*> (self
);
3474 tree condition
= convert_in (condition_in
);
3479 tree message
= build_string (strlen (errormsg
) + 1, errormsg
);
3481 TREE_TYPE (message
) = char_array_type_node
;
3482 fix_string_type (message
);
3484 location_t loc
= ctx
->get_location_t (filename
, line_number
);
3486 bool member_p
= at_class_scope_p ();
3488 finish_static_assert (condition
, message
, loc
, member_p
, false);
3496 #pragma GCC visibility push(default)
3500 plugin_init (struct plugin_name_args
*plugin_info
,
3501 struct plugin_gcc_version
*)
3503 generic_plugin_init (plugin_info
, GCC_CP_FE_VERSION_0
);
3505 register_callback (plugin_info
->base_name
, PLUGIN_PRAGMAS
,
3506 plugin_init_extra_pragmas
, NULL
);
3507 register_callback (plugin_info
->base_name
, PLUGIN_PRE_GENERICIZE
,
3508 rewrite_decls_to_addresses
, NULL
);
3510 #define GCC_METHOD0(R, N) \
3512 cc1_plugin::callback_ftype *fun \
3513 = cc1_plugin::invoker<R>::invoke<plugin_ ## N>; \
3514 current_context->add_callback (# N, fun); \
3516 #define GCC_METHOD1(R, N, A) \
3518 cc1_plugin::callback_ftype *fun \
3519 = cc1_plugin::invoker<R, A>::invoke<plugin_ ## N>; \
3520 current_context->add_callback (# N, fun); \
3522 #define GCC_METHOD2(R, N, A, B) \
3524 cc1_plugin::callback_ftype *fun \
3525 = cc1_plugin::invoker<R, A, B>::invoke<plugin_ ## N>; \
3526 current_context->add_callback (# N, fun); \
3528 #define GCC_METHOD3(R, N, A, B, C) \
3530 cc1_plugin::callback_ftype *fun \
3531 = cc1_plugin::invoker<R, A, B, C>::invoke<plugin_ ## N>; \
3532 current_context->add_callback (# N, fun); \
3534 #define GCC_METHOD4(R, N, A, B, C, D) \
3536 cc1_plugin::callback_ftype *fun \
3537 = cc1_plugin::invoker<R, A, B, C, \
3538 D>::invoke<plugin_ ## N>; \
3539 current_context->add_callback (# N, fun); \
3541 #define GCC_METHOD5(R, N, A, B, C, D, E) \
3543 cc1_plugin::callback_ftype *fun \
3544 = cc1_plugin::invoker<R, A, B, C, \
3545 D, E>::invoke<plugin_ ## N>; \
3546 current_context->add_callback (# N, fun); \
3548 #define GCC_METHOD7(R, N, A, B, C, D, E, F, G) \
3550 cc1_plugin::callback_ftype *fun \
3551 = cc1_plugin::invoker<R, A, B, C, \
3552 D, E, F, G>::invoke<plugin_ ## N>; \
3553 current_context->add_callback (# N, fun); \
3556 #include "gcc-cp-fe.def"