aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/expand/rust-macro-builtins-asm.cc
diff options
context:
space:
mode:
authorjjasmine <tanghocle456@gmail.com>2024-06-10 16:54:34 -0700
committerArthur Cohen <arthur.cohen@embecosm.com>2025-03-17 16:35:47 +0100
commitc1662670f70e8c06164da58a2b020dcd89ae75d6 (patch)
tree382a372a7004cb74873a11519ee672109a2f035e /gcc/rust/expand/rust-macro-builtins-asm.cc
parent83465864dbddcebca788df417783eb4e074626f8 (diff)
downloadgcc-c1662670f70e8c06164da58a2b020dcd89ae75d6.zip
gcc-c1662670f70e8c06164da58a2b020dcd89ae75d6.tar.gz
gcc-c1662670f70e8c06164da58a2b020dcd89ae75d6.tar.bz2
gccrs: Partial support for operand
gcc/rust/ChangeLog: * ast/rust-expr.h (struct InlineAsmOperand): Partial support for operand * expand/rust-macro-builtins-asm.cc (parse_reg_operand): Likewise. (parse_label): Likewise. * expand/rust-macro-builtins-asm.h (parse_label): Likewise.
Diffstat (limited to 'gcc/rust/expand/rust-macro-builtins-asm.cc')
-rw-r--r--gcc/rust/expand/rust-macro-builtins-asm.cc62
1 files changed, 55 insertions, 7 deletions
diff --git a/gcc/rust/expand/rust-macro-builtins-asm.cc b/gcc/rust/expand/rust-macro-builtins-asm.cc
index d1f6897..47a4760 100644
--- a/gcc/rust/expand/rust-macro-builtins-asm.cc
+++ b/gcc/rust/expand/rust-macro-builtins-asm.cc
@@ -373,19 +373,30 @@ parse_reg_operand (Parser<MacroInvocLexer> &parser, TokenId last_token_id,
}
else if (parser.peek_current_token ()->get_id () == CONST)
{
- // TODO: Please handle const
- rust_unreachable ();
- return tl::nullopt;
+ // TODO: Please handle const with parse_expr instead.
+ auto anon_const
+ = parse_format_string (parser, last_token_id, inline_asm_ctx);
+ reg_operand.set_cnst (tl::nullopt);
+ return reg_operand;
}
- else if (false && check_identifier (parser, "sym"))
+ else if (check_identifier (parser, "sym"))
{
- // TODO: Please handle sym
+ // TODO: Please handle sym, which needs ExprKind::Path in Rust's asm.rs
rust_unreachable ();
return tl::nullopt;
}
- else if (false && check_identifier (parser, "label"))
+ else if (auto label_str = parse_label (parser, last_token_id, inline_asm_ctx))
+ {
+ auto block = parser.parse_block_expr ();
+ struct AST::InlineAsmOperand::Label label (label_str,
+ block ? block->clone_expr ()
+ : nullptr);
+ reg_operand.set_label (label);
+ return reg_operand;
+ }
+ else if (inline_asm_ctx.allows_templates ())
{
- // TODO: Please handle label
+ // TODO: If we allow templating, do sth here
rust_unreachable ();
return tl::nullopt;
}
@@ -701,4 +712,41 @@ parse_asm (location_t invoc_locus, AST::MacroInvocData &invoc,
return fragment_ast;
}
+tl::optional<std::string>
+parse_label (Parser<MacroInvocLexer> &parser, TokenId last_token_id,
+ InlineAsmContext &inline_asm_ctx)
+{
+ auto token = parser.peek_current_token ();
+
+ if (token->get_id () != last_token_id && token->get_id () == STRING_LITERAL)
+ {
+ // very nice, we got a string.
+ auto label = token->as_string ();
+
+ bool flag = true;
+ if (label.empty () || label.back () != ':')
+ flag = false; // Check if string is empty or does not end with a colon
+
+ // Check if all characters before the last colon are digits
+ for (int i = 0; i < label.length () - 1 && flag == true; i++)
+ {
+ if (label[i] < '0' || label[i] > '9')
+ flag = false;
+ }
+
+ if (flag == true)
+ {
+ parser.skip_token ();
+ return token->as_string ();
+ }
+ else
+ {
+ return tl::nullopt;
+ }
+ }
+ else
+ {
+ return tl::nullopt;
+ }
+}
} // namespace Rust