aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/util/rust-identifier.h
diff options
context:
space:
mode:
authorPhilip Herron <philip.herron@embecosm.com>2022-02-02 14:25:50 +0000
committerPhilip Herron <philip.herron@embecosm.com>2022-02-02 15:50:13 +0000
commitd2a0fa7fc5fd3332e9f180339a262f29641f62c6 (patch)
tree0a911f2033756f2ef2a29c840d0ea61413b20ffb /gcc/rust/util/rust-identifier.h
parentf7f14de056eb3887e70f29b0f29da4025f746559 (diff)
downloadgcc-d2a0fa7fc5fd3332e9f180339a262f29641f62c6.zip
gcc-d2a0fa7fc5fd3332e9f180339a262f29641f62c6.tar.gz
gcc-d2a0fa7fc5fd3332e9f180339a262f29641f62c6.tar.bz2
Add new RustIdent struct to track canonical-path and location info
This refactors our TyTy type abstractions to contain their repspective canonical-path and location info. This cleans up alot of location tracking for example when we have generic structures we create implicit hirids which may or may not have location info this now tracks the location info of the declaration of the type avoiding any confustion.
Diffstat (limited to 'gcc/rust/util/rust-identifier.h')
-rw-r--r--gcc/rust/util/rust-identifier.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/gcc/rust/util/rust-identifier.h b/gcc/rust/util/rust-identifier.h
new file mode 100644
index 0000000..0b5cb70
--- /dev/null
+++ b/gcc/rust/util/rust-identifier.h
@@ -0,0 +1,49 @@
+// Copyright (C) 2020-2022 Free Software Foundation, Inc.
+
+// This file is part of GCC.
+
+// GCC is free software; you can redistribute it and/or modify it under
+// the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 3, or (at your option) any later
+// version.
+
+// GCC is distributed in the hope that it will be useful, but WITHOUT ANY
+// WARRANTY; without even the implied warranty of MERCHANTABILITY or
+// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+// for more details.
+
+// You should have received a copy of the GNU General Public License
+// along with GCC; see the file COPYING3. If not see
+// <http://www.gnu.org/licenses/>.
+
+#ifndef RUST_IDENTIFIER
+#define RUST_IDENTIFIER
+
+#include "rust-canonical-path.h"
+#include "rust-location.h"
+
+namespace Rust {
+
+struct RustIdent
+{
+ Resolver::CanonicalPath path;
+ Location locus;
+
+ RustIdent (const Resolver::CanonicalPath &path, Location locus)
+ : path (path), locus (locus)
+ {}
+
+ RustIdent (const RustIdent &other) : path (other.path), locus (other.locus) {}
+
+ RustIdent &operator= (const RustIdent &other)
+ {
+ path = other.path;
+ locus = other.locus;
+
+ return *this;
+ }
+};
+
+} // namespace Rust
+
+#endif // RUST_IDENTIFIER