aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Cohen <arthur.cohen@embecosm.com>2024-02-07 12:46:16 +0100
committerArthur Cohen <arthur.cohen@embecosm.com>2024-08-01 13:11:29 +0200
commit827231aac4d0532dd74863f72c11462cecd02abb (patch)
tree3e67f78c66829dea6d306789a34fd4ee8360b1a7
parentd72a8e93083fd89ab73015ff9f4bf00ddb923cf7 (diff)
downloadgcc-827231aac4d0532dd74863f72c11462cecd02abb.zip
gcc-827231aac4d0532dd74863f72c11462cecd02abb.tar.gz
gcc-827231aac4d0532dd74863f72c11462cecd02abb.tar.bz2
gccrs: format_args: Parse entire token invocation
gcc/rust/ChangeLog: * expand/rust-macro-builtins.cc (MacroBuiltin::format_args_handler): Transform entire invocation token stream into string for the parser.
-rw-r--r--gcc/rust/expand/rust-macro-builtins.cc40
1 files changed, 22 insertions, 18 deletions
diff --git a/gcc/rust/expand/rust-macro-builtins.cc b/gcc/rust/expand/rust-macro-builtins.cc
index 19ea910..2af05a5 100644
--- a/gcc/rust/expand/rust-macro-builtins.cc
+++ b/gcc/rust/expand/rust-macro-builtins.cc
@@ -16,6 +16,8 @@
// along with GCC; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
+#include "libproc_macro_internal/tokenstream.h"
+#include "rust-token-converter.h"
#include "rust-system.h"
#include "rust-macro-builtins.h"
#include "rust-ast-fragment.h"
@@ -947,24 +949,26 @@ tl::optional<AST::Fragment>
MacroBuiltin::format_args_handler (location_t invoc_locus,
AST::MacroInvocData &invoc)
{
- auto fmt_expr
- = parse_single_string_literal (BuiltinMacro::FormatArgs,
- invoc.get_delim_tok_tree (), invoc_locus,
- invoc.get_expander ());
-
- if (!fmt_expr)
- return AST::Fragment::create_error ();
-
- // if it is not a literal, it's an eager macro invocation - return it
- if (!fmt_expr->is_literal ())
- {
- auto token_tree = invoc.get_delim_tok_tree ();
- return AST::Fragment ({AST::SingleASTNode (std::move (fmt_expr))},
- token_tree.to_token_stream ());
- }
-
- auto format_string = fmt_expr->as_string ();
- auto pieces = Fmt::Pieces::collect (format_string);
+ auto tokens = invoc.get_delim_tok_tree ().to_token_stream ();
+ tokens.erase (tokens.begin ());
+ tokens.pop_back ();
+
+ std::stringstream stream;
+ for (const auto &tok : tokens)
+ stream << tok->as_string () << ' ';
+
+ rust_debug ("[ARTHU]: `%s`", stream.str ().c_str ());
+
+ // FIXME: We need to handle this
+ // // if it is not a literal, it's an eager macro invocation - return it
+ // if (!fmt_expr->is_literal ())
+ // {
+ // auto token_tree = invoc.get_delim_tok_tree ();
+ // return AST::Fragment ({AST::SingleASTNode (std::move (fmt_expr))},
+ // token_tree.to_token_stream ());
+ // }
+
+ auto pieces = Fmt::Pieces::collect (stream.str ());
return AST::Fragment::create_empty ();
}