aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/expand/rust-macro-builtins-asm.cc
diff options
context:
space:
mode:
authorjjasmine <tanghocle456@gmail.com>2024-05-24 15:18:45 -0700
committerArthur Cohen <arthur.cohen@embecosm.com>2025-03-17 16:35:41 +0100
commitec5104296ca807ff22832ab878a3cdaf1661549d (patch)
tree19560a3a6eb55a188709faf16adb600d0d89280d /gcc/rust/expand/rust-macro-builtins-asm.cc
parent3d99542a87038ff29e973edd4480c0870666af78 (diff)
downloadgcc-ec5104296ca807ff22832ab878a3cdaf1661549d.zip
gcc-ec5104296ca807ff22832ab878a3cdaf1661549d.tar.gz
gcc-ec5104296ca807ff22832ab878a3cdaf1661549d.tar.bz2
gccrs: Scaffolding parse_reg
gcc/rust/ChangeLog: * ast/rust-expr.h (struct InlineAsmRegOrRegClass): Scaffolding parse_reg * expand/rust-macro-builtins-asm.cc (parse_reg): Likewise. (parse_operand): Likewise. (parseAsmArg): Likewise.
Diffstat (limited to 'gcc/rust/expand/rust-macro-builtins-asm.cc')
-rw-r--r--gcc/rust/expand/rust-macro-builtins-asm.cc49
1 files changed, 48 insertions, 1 deletions
diff --git a/gcc/rust/expand/rust-macro-builtins-asm.cc b/gcc/rust/expand/rust-macro-builtins-asm.cc
index 68a617a..f6940ff 100644
--- a/gcc/rust/expand/rust-macro-builtins-asm.cc
+++ b/gcc/rust/expand/rust-macro-builtins-asm.cc
@@ -125,6 +125,53 @@ parse_clobber_abi (Parser<MacroInvocLexer> &parser, TokenId last_token_id,
return 0;
}
+int
+parse_reg (Parser<MacroInvocLexer> &parser, TokenId last_token_id,
+ AST::InlineAsm &inlineAsm, bool is_explicit)
+{
+ if (!parser.skip_token (LEFT_PAREN))
+ {
+ // TODO: we expect a left parenthesis here, please return the correct
+ // error.
+ return 0;
+ }
+
+ // after successful left parenthesis parsing, we should return ast of
+ // InlineAsmRegOrRegClass of reg or reg class
+ auto token = parser.peek_current_token ();
+ auto tok_id = token->get_id ();
+
+ if (tok_id == IDENTIFIER)
+ {
+ // construct a InlineAsmRegOrRegClass
+ }
+ else if (tok_id == STRING_LITERAL)
+ {
+ // TODO: there is STRING_LITERAL, and BYTE_STRING_LITERAL, should we check
+ // for both?
+
+ // construct a InlineAsmRegOrRegClass
+ }
+ else
+ {
+ // TODO
+ }
+ if (!parser.skip_token (RIGHT_PAREN))
+ {
+ // we expect a left parenthesis here, please return the correct error.
+ return 0;
+ }
+
+ return 0;
+}
+
+int
+parse_operand (Parser<MacroInvocLexer> &parser, TokenId last_token_id,
+ AST::InlineAsm &inlineAsm)
+{
+ return 0;
+}
+
void
check_and_set (Parser<MacroInvocLexer> &parser, AST::InlineAsm &inlineAsm,
AST::InlineAsmOptions option)
@@ -340,7 +387,7 @@ parseAsmArg (Parser<MacroInvocLexer> &parser, TokenId last_token_id,
return 0;
}
-static tl::optional<AST::Fragment>
+tl::optional<AST::Fragment>
parse_asm (location_t invoc_locus, AST::MacroInvocData &invoc,
bool is_global_asm)
{