1 /* Subclasses of logical_location with knowledge of "tree".
2 Copyright (C) 2022-2023 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
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 #ifndef GCC_TREE_LOGICAL_LOCATION_H
22 #define GCC_TREE_LOGICAL_LOCATION_H
24 #include "logical-location.h"
26 /* Abstract subclass of logical_location, with knowledge of "tree", but
27 for no specific tree. */
29 class compiler_logical_location
: public logical_location
32 static const char *get_short_name_for_tree (tree
);
33 static const char *get_name_with_scope_for_tree (tree
);
34 static const char *get_internal_name_for_tree (tree
);
35 static enum logical_location_kind
get_kind_for_tree (tree
);
38 /* Concrete subclass of logical_location, with reference to a specific
41 class tree_logical_location
: public compiler_logical_location
44 tree_logical_location (tree decl
) : m_decl (decl
) {}
46 const char *get_short_name () const final override
;
47 const char *get_name_with_scope () const final override
;
48 const char *get_internal_name () const final override
;
49 enum logical_location_kind
get_kind () const final override
;
55 /* Concrete subclass of logical_location, with reference to
56 current_function_decl. */
58 class current_fndecl_logical_location
: public compiler_logical_location
61 const char *get_short_name () const final override
;
62 const char *get_name_with_scope () const final override
;
63 const char *get_internal_name () const final override
;
64 enum logical_location_kind
get_kind () const final override
;
67 #endif /* GCC_TREE_LOGICAL_LOCATION_H. */