]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-logical-location.h
bitint: Fix up lowering of COMPLEX_EXPR [PR115544]
[thirdparty/gcc.git] / gcc / tree-logical-location.h
CommitLineData
6cf276dd 1/* Subclasses of logical_location with knowledge of "tree".
a945c346 2 Copyright (C) 2022-2024 Free Software Foundation, Inc.
6cf276dd
DM
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_TREE_LOGICAL_LOCATION_H
22#define GCC_TREE_LOGICAL_LOCATION_H
23
24#include "logical-location.h"
25
26/* Abstract subclass of logical_location, with knowledge of "tree", but
27 for no specific tree. */
28
29class compiler_logical_location : public logical_location
30{
31 protected:
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);
d0334e77 36 static label_text get_name_for_tree_for_path_output (tree);
6cf276dd
DM
37};
38
39/* Concrete subclass of logical_location, with reference to a specific
40 tree. */
41
42class tree_logical_location : public compiler_logical_location
43{
44public:
45 tree_logical_location (tree decl) : m_decl (decl) {}
46
47 const char *get_short_name () const final override;
48 const char *get_name_with_scope () const final override;
49 const char *get_internal_name () const final override;
50 enum logical_location_kind get_kind () const final override;
d0334e77 51 label_text get_name_for_path_output () const final override;
6cf276dd
DM
52
53private:
54 tree m_decl;
55};
56
57/* Concrete subclass of logical_location, with reference to
58 current_function_decl. */
59
60class current_fndecl_logical_location : public compiler_logical_location
61{
62public:
63 const char *get_short_name () const final override;
64 const char *get_name_with_scope () const final override;
65 const char *get_internal_name () const final override;
66 enum logical_location_kind get_kind () const final override;
d0334e77 67 label_text get_name_for_path_output () const final override;
6cf276dd
DM
68};
69
70#endif /* GCC_TREE_LOGICAL_LOCATION_H. */