Branch data Line data Source code
1 : : // Copyright (C) 2020-2024 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 : : #include "rust-ast-builder.h"
20 : : #include "rust-ast-full-decls.h"
21 : : #include "rust-ast-full.h"
22 : : #include "rust-expr.h"
23 : : #include "rust-token.h"
24 : : #include "rust-make-unique.h"
25 : :
26 : : namespace Rust {
27 : : namespace AST {
28 : :
29 : : std::unique_ptr<Expr>
30 : 1 : Builder::literal_string (std::string &&content) const
31 : : {
32 : 1 : return std::unique_ptr<Expr> (
33 : : new AST::LiteralExpr (std::move (content), Literal::LitType::STRING,
34 : 1 : PrimitiveCoreType::CORETYPE_STR, {}, loc));
35 : : }
36 : :
37 : : std::unique_ptr<Expr>
38 : 44 : Builder::call (std::unique_ptr<Expr> &&path,
39 : : std::vector<std::unique_ptr<Expr>> &&args) const
40 : : {
41 : 44 : return std::unique_ptr<Expr> (
42 : 44 : new CallExpr (std::move (path), std::move (args), {}, loc));
43 : : }
44 : :
45 : : std::unique_ptr<Expr>
46 : 2 : Builder::array (std::vector<std::unique_ptr<Expr>> &&members) const
47 : : {
48 : 2 : auto elts = Rust::make_unique<ArrayElemsValues> (std::move (members), loc);
49 : :
50 : 2 : return std::unique_ptr<Expr> (new ArrayExpr (std::move (elts), {}, {}, loc));
51 : 2 : }
52 : :
53 : : std::unique_ptr<Expr>
54 : 37 : Builder::identifier (std::string name) const
55 : : {
56 : 37 : return std::unique_ptr<Expr> (new IdentifierExpr (name, {}, loc));
57 : : }
58 : :
59 : : std::unique_ptr<Expr>
60 : 14 : Builder::tuple_idx (std::string receiver, int idx) const
61 : : {
62 : 14 : return std::unique_ptr<Expr> (
63 : 14 : new TupleIndexExpr (identifier (receiver), idx, {}, loc));
64 : : }
65 : :
66 : : FunctionQualifiers
67 : 24 : Builder::fn_qualifiers () const
68 : : {
69 : 24 : return FunctionQualifiers (loc, Async::No, Const::No, Unsafety::Normal);
70 : : }
71 : :
72 : : PathExprSegment
73 : 104 : Builder::path_segment (std::string seg) const
74 : : {
75 : 104 : return PathExprSegment (PathIdentSegment (seg, loc), loc);
76 : : }
77 : :
78 : : std::unique_ptr<TypePathSegment>
79 : 74 : Builder::type_path_segment (std::string seg) const
80 : : {
81 : 74 : return std::unique_ptr<TypePathSegment> (
82 : 74 : new TypePathSegment (seg, false, loc));
83 : : }
84 : :
85 : : std::unique_ptr<Type>
86 : 50 : Builder::single_type_path (std::string type) const
87 : : {
88 : 50 : auto segments = std::vector<std::unique_ptr<TypePathSegment>> ();
89 : 50 : segments.emplace_back (type_path_segment (type));
90 : :
91 : 50 : return std::unique_ptr<Type> (new TypePath (std::move (segments), loc));
92 : 50 : }
93 : :
94 : : PathInExpression
95 : 60 : Builder::path_in_expression (std::vector<std::string> &&segments) const
96 : : {
97 : 60 : auto path_segments = std::vector<PathExprSegment> ();
98 : 164 : for (auto &seg : segments)
99 : 208 : path_segments.emplace_back (path_segment (seg));
100 : :
101 : 60 : return PathInExpression (std::move (path_segments), {}, loc);
102 : 60 : }
103 : :
104 : : std::unique_ptr<Expr>
105 : 2 : Builder::block (std::vector<std::unique_ptr<Stmt>> &&stmts,
106 : : std::unique_ptr<Expr> &&tail_expr) const
107 : : {
108 : 2 : return std::unique_ptr<Expr> (new BlockExpr (std::move (stmts),
109 : : std::move (tail_expr), {}, {},
110 : 2 : LoopLabel::error (), loc, loc));
111 : : }
112 : :
113 : : std::unique_ptr<Stmt>
114 : 2 : Builder::let (std::unique_ptr<Pattern> pattern, std::unique_ptr<Type> type,
115 : : std::unique_ptr<Expr> init) const
116 : : {
117 : 2 : return std::unique_ptr<Stmt> (new LetStmt (std::move (pattern),
118 : : std::move (init), std::move (type),
119 : 2 : {}, loc));
120 : : }
121 : :
122 : : std::unique_ptr<Expr>
123 : 38 : Builder::ref (std::unique_ptr<Expr> &&of, bool mut) const
124 : : {
125 : 38 : return std::unique_ptr<Expr> (
126 : 38 : new BorrowExpr (std::move (of), mut, /* is double */ false, {}, loc));
127 : : }
128 : :
129 : : std::unique_ptr<Expr>
130 : 2 : Builder::deref (std::unique_ptr<Expr> &&of) const
131 : : {
132 : 2 : return std::unique_ptr<Expr> (new DereferenceExpr (std::move (of), {}, loc));
133 : : }
134 : :
135 : : std::unique_ptr<Expr>
136 : 1 : Builder::struct_expr_struct (std::string struct_name) const
137 : : {
138 : 1 : return std::unique_ptr<Expr> (
139 : 2 : new StructExprStruct (path_in_expression ({struct_name}), {}, {}, loc));
140 : : }
141 : :
142 : : std::unique_ptr<Expr>
143 : 14 : Builder::struct_expr (
144 : : std::string struct_name,
145 : : std::vector<std::unique_ptr<StructExprField>> &&fields) const
146 : : {
147 : 14 : return std::unique_ptr<Expr> (
148 : 42 : new StructExprStructFields (path_in_expression ({struct_name}),
149 : 42 : std::move (fields), loc));
150 : : }
151 : :
152 : : std::unique_ptr<StructExprField>
153 : 21 : Builder::struct_expr_field (std::string field_name,
154 : : std::unique_ptr<Expr> &&value) const
155 : : {
156 : 21 : return std::unique_ptr<StructExprField> (
157 : 21 : new StructExprFieldIdentifierValue (field_name, std::move (value), loc));
158 : : }
159 : :
160 : : std::unique_ptr<Expr>
161 : 21 : Builder::field_access (std::unique_ptr<Expr> &&instance,
162 : : std::string field) const
163 : : {
164 : 21 : return std::unique_ptr<Expr> (
165 : 21 : new FieldAccessExpr (std::move (instance), field, {}, loc));
166 : : }
167 : :
168 : : std::unique_ptr<Pattern>
169 : 2 : Builder::wildcard () const
170 : : {
171 : 2 : return std::unique_ptr<Pattern> (new WildcardPattern (loc));
172 : : }
173 : :
174 : : } // namespace AST
175 : : } // namespace Rust
|