Branch data Line data Source code
1 : : // Copyright (C) 2025 Free Software Foundation, Inc.
2 : :
3 : : // This file is part of GCC.
4 : :
5 : : // GCC is free software; you can redistribute it and/or modify it under
6 : : // the terms of the GNU General Public License as published by the Free
7 : : // Software Foundation; either version 3, or (at your option) any later
8 : : // version.
9 : :
10 : : // GCC is distributed in the hope that it will be useful, but WITHOUT ANY
11 : : // WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 : : // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 : : // for more details.
14 : :
15 : : // You should have received a copy of the GNU General Public License
16 : : // along with GCC; see the file COPYING3. If not see
17 : : // <http://www.gnu.org/licenses/>.
18 : :
19 : : #ifndef RUST_GGC_H
20 : : #define RUST_GGC_H
21 : :
22 : : #include "rust-system.h"
23 : : #include "tree.h"
24 : :
25 : : namespace Rust {
26 : :
27 : : namespace GGC {
28 : :
29 : : class Ident
30 : : {
31 : : tree inner;
32 : :
33 : : public:
34 : : Ident (const char *str);
35 : : Ident (const std::string &str);
36 : :
37 : : bool operator== (const Ident &other) const { return inner == other.inner; }
38 : : bool operator== (const std::string &other) const;
39 : :
40 : : const char *c_str () const { return IDENTIFIER_POINTER (inner); }
41 : : size_t size () const { return IDENTIFIER_LENGTH (inner); }
42 : :
43 : : bool empty () const { return !size (); }
44 : :
45 : : std::string as_string () const
46 : : {
47 : : return std::string (c_str (), c_str () + size ());
48 : : }
49 : :
50 : 381417 : tree as_tree () const { return inner; }
51 : : };
52 : :
53 : : static inline bool
54 : : operator== (const std::string &a, const Ident &b)
55 : : {
56 : : return b == a;
57 : : }
58 : :
59 : : } // namespace GGC
60 : :
61 : : } // namespace Rust
62 : :
63 : : #endif // RUST_GGC_H
|