aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/util/rust-identifier.h
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-02-03 11:59:18 +0000
committerGitHub <noreply@github.com>2022-02-03 11:59:18 +0000
commit3e6f9c2150a3b27a70f5adaeb2b9cd44943c898f (patch)
treea909044b2646cc4ee7df55bb3869c6b20aaf0d09 /gcc/rust/util/rust-identifier.h
parent016db703cb0a5c2c4eb52dd8b29bbc01826c4e5c (diff)
parentd2a0fa7fc5fd3332e9f180339a262f29641f62c6 (diff)
downloadgcc-3e6f9c2150a3b27a70f5adaeb2b9cd44943c898f.zip
gcc-3e6f9c2150a3b27a70f5adaeb2b9cd44943c898f.tar.gz
gcc-3e6f9c2150a3b27a70f5adaeb2b9cd44943c898f.tar.bz2
Merge #903
903: Add new RustIdent struct to track canonical-path and location info r=philberty a=philberty 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. Co-authored-by: Philip Herron <philip.herron@embecosm.com>
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