aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2021-07-04 23:52:33 +0200
committerMark Wielaard <mark@klomp.org>2021-07-04 23:56:21 +0200
commitafe6eb7d16b1c2336381c74e7d416c57129e88c6 (patch)
tree1eb9aacb089630a5dffa973e89553c10ffee5eaa /gcc
parentff35f162daebd1ac6538aa74c0f270f8e19902de (diff)
downloadgcc-afe6eb7d16b1c2336381c74e7d416c57129e88c6.zip
gcc-afe6eb7d16b1c2336381c74e7d416c57129e88c6.tar.gz
gcc-afe6eb7d16b1c2336381c74e7d416c57129e88c6.tar.bz2
Remove has_shebang flag from AST and HIR Crate classes
The lexer deals with the shebang and the parser cannot detect whether there is or isn't a shebang line. The flag isn't relevant or useful in the AST and HIR Crate classes.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/rust/ast/rust-ast-full-test.cc5
-rw-r--r--gcc/rust/ast/rust-ast.h13
-rw-r--r--gcc/rust/hir/rust-ast-lower.cc3
-rw-r--r--gcc/rust/hir/tree/rust-hir-full-test.cc6
-rw-r--r--gcc/rust/hir/tree/rust-hir.h14
-rw-r--r--gcc/rust/parse/rust-parse-impl.h12
6 files changed, 18 insertions, 35 deletions
diff --git a/gcc/rust/ast/rust-ast-full-test.cc b/gcc/rust/ast/rust-ast-full-test.cc
index 3d339ad1..12ef255 100644
--- a/gcc/rust/ast/rust-ast-full-test.cc
+++ b/gcc/rust/ast/rust-ast-full-test.cc
@@ -172,13 +172,10 @@ Crate::as_string () const
rust_debug ("beginning crate recursive as-string");
std::string str ("Crate: ");
- // add utf8bom and shebang
+ // add utf8bom
if (has_utf8bom)
str += "\n has utf8bom";
- if (has_shebang)
- str += "\n has shebang";
-
// inner attributes
str += append_attributes (inner_attrs, INNER);
diff --git a/gcc/rust/ast/rust-ast.h b/gcc/rust/ast/rust-ast.h
index 0e25de2..ce55e1b 100644
--- a/gcc/rust/ast/rust-ast.h
+++ b/gcc/rust/ast/rust-ast.h
@@ -1551,7 +1551,6 @@ protected:
struct Crate
{
bool has_utf8bom;
- bool has_shebang;
std::vector<Attribute> inner_attrs;
// dodgy spacing required here
@@ -1564,17 +1563,16 @@ struct Crate
public:
// Constructor
Crate (std::vector<std::unique_ptr<Item> > items,
- std::vector<Attribute> inner_attrs, bool has_utf8bom = false,
- bool has_shebang = false)
- : has_utf8bom (has_utf8bom), has_shebang (has_shebang),
- inner_attrs (std::move (inner_attrs)), items (std::move (items)),
+ std::vector<Attribute> inner_attrs, bool has_utf8bom = false)
+ : has_utf8bom (has_utf8bom), inner_attrs (std::move (inner_attrs)),
+ items (std::move (items)),
node_id (Analysis::Mappings::get ()->get_next_node_id ())
{}
// Copy constructor with vector clone
Crate (Crate const &other)
- : has_utf8bom (other.has_utf8bom), has_shebang (other.has_shebang),
- inner_attrs (other.inner_attrs), node_id (other.node_id)
+ : has_utf8bom (other.has_utf8bom), inner_attrs (other.inner_attrs),
+ node_id (other.node_id)
{
items.reserve (other.items.size ());
for (const auto &e : other.items)
@@ -1587,7 +1585,6 @@ public:
Crate &operator= (Crate const &other)
{
inner_attrs = other.inner_attrs;
- has_shebang = other.has_shebang;
has_utf8bom = other.has_utf8bom;
node_id = other.node_id;
diff --git a/gcc/rust/hir/rust-ast-lower.cc b/gcc/rust/hir/rust-ast-lower.cc
index c7222e2..0f3c86d 100644
--- a/gcc/rust/hir/rust-ast-lower.cc
+++ b/gcc/rust/hir/rust-ast-lower.cc
@@ -41,7 +41,6 @@ ASTLowering::go ()
{
std::vector<std::unique_ptr<HIR::Item> > items;
bool has_utf8bom = false;
- bool has_shebang = false;
for (auto it = astCrate.items.begin (); it != astCrate.items.end (); it++)
{
@@ -57,7 +56,7 @@ ASTLowering::go ()
UNKNOWN_LOCAL_DEFID);
return HIR::Crate (std::move (items), astCrate.get_inner_attrs (), mapping,
- has_utf8bom, has_shebang);
+ has_utf8bom);
}
// rust-ast-lower-block.h
diff --git a/gcc/rust/hir/tree/rust-hir-full-test.cc b/gcc/rust/hir/tree/rust-hir-full-test.cc
index 261b3af..051ba87 100644
--- a/gcc/rust/hir/tree/rust-hir-full-test.cc
+++ b/gcc/rust/hir/tree/rust-hir-full-test.cc
@@ -73,15 +73,11 @@ std::string
Crate::as_string () const
{
std::string str ("HIR::Crate: ");
- // add utf8bom and shebang
+ // add utf8bom
if (has_utf8bom)
{
str += "\n has utf8bom";
}
- if (has_shebang)
- {
- str += "\n has shebang";
- }
// inner attributes
str += "\n inner attributes: ";
diff --git a/gcc/rust/hir/tree/rust-hir.h b/gcc/rust/hir/tree/rust-hir.h
index 35dc71a..f918f2d 100644
--- a/gcc/rust/hir/tree/rust-hir.h
+++ b/gcc/rust/hir/tree/rust-hir.h
@@ -679,7 +679,6 @@ public:
struct Crate
{
bool has_utf8bom;
- bool has_shebang;
AST::AttrVec inner_attrs;
// dodgy spacing required here
@@ -692,17 +691,15 @@ struct Crate
public:
// Constructor
Crate (std::vector<std::unique_ptr<Item> > items, AST::AttrVec inner_attrs,
- Analysis::NodeMapping mappings, bool has_utf8bom = false,
- bool has_shebang = false)
- : has_utf8bom (has_utf8bom), has_shebang (has_shebang),
- inner_attrs (std::move (inner_attrs)), items (std::move (items)),
- mappings (mappings)
+ Analysis::NodeMapping mappings, bool has_utf8bom = false)
+ : has_utf8bom (has_utf8bom), inner_attrs (std::move (inner_attrs)),
+ items (std::move (items)), mappings (mappings)
{}
// Copy constructor with vector clone
Crate (Crate const &other)
- : has_utf8bom (other.has_utf8bom), has_shebang (other.has_shebang),
- inner_attrs (other.inner_attrs), mappings (other.mappings)
+ : has_utf8bom (other.has_utf8bom), inner_attrs (other.inner_attrs),
+ mappings (other.mappings)
{
items.reserve (other.items.size ());
for (const auto &e : other.items)
@@ -715,7 +712,6 @@ public:
Crate &operator= (Crate const &other)
{
inner_attrs = other.inner_attrs;
- has_shebang = other.has_shebang;
has_utf8bom = other.has_utf8bom;
mappings = other.mappings;
diff --git a/gcc/rust/parse/rust-parse-impl.h b/gcc/rust/parse/rust-parse-impl.h
index 9f8282b..136b343 100644
--- a/gcc/rust/parse/rust-parse-impl.h
+++ b/gcc/rust/parse/rust-parse-impl.h
@@ -393,12 +393,11 @@ template <typename ManagedTokenSource>
AST::Crate
Parser<ManagedTokenSource>::parse_crate ()
{
- /* TODO: determine if has utf8bom and shebang. Currently, they are eliminated
- * by the lexing phase. Neither are useful for the compiler anyway, so maybe a
+ /* TODO: determine if has utf8bom. Currently, is eliminated
+ * by the lexing phase. Not useful for the compiler anyway, so maybe a
* better idea would be to eliminate
- * the has_utf8bom and has_shebang variables from the crate data structure. */
+ * the has_utf8bom variable from the crate data structure. */
bool has_utf8bom = false;
- bool has_shebang = false;
// parse inner attributes
AST::AttrVec inner_attrs = parse_inner_attributes ();
@@ -430,8 +429,7 @@ Parser<ManagedTokenSource>::parse_crate ()
for (const auto &error : error_table)
error.emit_error ();
- return AST::Crate (std::move (items), std::move (inner_attrs), has_utf8bom,
- has_shebang);
+ return AST::Crate (std::move (items), std::move (inner_attrs), has_utf8bom);
}
// Parse a contiguous block of inner attributes.
@@ -484,7 +482,7 @@ Parser<ManagedTokenSource>::parse_inner_attribute ()
if (lexer.peek_token ()->get_id () != EXCLAM)
{
Error error (lexer.peek_token ()->get_locus (),
- "expected %<!%> or %<[%> for inner attribute or shebang");
+ "expected %<!%> or %<[%> for inner attribute");
add_error (std::move (error));
return AST::Attribute::create_empty ();