-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assembly statement parsing #499
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks! Could you add comments on the grammar? I always forget how these work.
Also rearrange some code to make the grammar easier to specify
99b83bd
to
9393812
Compare
Added grammar comments, let me know if they should be more detailed - right now it's just the syntax; would it be helpful to explain e.g. that the first asmOperand is inputs, second is outputs, etc.? |
The grammar combined with reading the comments in the function is good enough for me and gnu has this documented online if needed. |
Primary thing here is adding support for GNU inline assembly statements. Currently it just parses the statement, no attempt is made to validate it. There's also the question of how it should be added to the AST - any thought about how to structure that? There's a lot of data - the assembly template string,
volatile
flag, inputs, output, and label expressions, constraints, clobbers...