1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use crate::priv_prelude::*;
#[derive(Clone, Debug)]
pub struct AsmBlock {
pub asm_token: AsmToken,
pub registers: Parens<Punctuated<AsmRegisterDeclaration, CommaToken>>,
pub contents: Braces<AsmBlockContents>,
}
#[derive(Clone, Debug)]
pub struct AsmRegisterDeclaration {
pub register: Ident,
pub value_opt: Option<(ColonToken, Box<Expr>)>,
}
#[derive(Clone, Debug)]
pub struct AsmBlockContents {
pub instructions: Vec<(Instruction, SemicolonToken)>,
pub final_expr_opt: Option<AsmFinalExpr>,
}
#[derive(Clone, Debug)]
pub struct AsmFinalExpr {
pub register: Ident,
pub ty_opt: Option<(ColonToken, Ty)>,
}
#[derive(Clone, Debug)]
pub struct AsmImmediate {
pub span: Span,
pub parsed: BigUint,
}
impl Spanned for AsmImmediate {
fn span(&self) -> Span {
self.span.clone()
}
}
impl Spanned for AsmBlock {
fn span(&self) -> Span {
Span::join(self.asm_token.span(), self.contents.span())
}
}