forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asm.rs
84 lines (74 loc) · 2.45 KB
/
asm.rs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//! An 'asm' block represents an opaque set of Fuel VM assembly instructions, embedded in place and
//! intended to be inserted as is into the assembly code generation.
//!
//! An [`AsmBlock`] has symbols for arguments and an optional return name and contains a list of
//! [`AsmInstruction`].
//!
//! The syntax in Sway for asm blocks is shown by this example, and [`AsmBlock`] represents it
//! symbolically:
//!
//! ```text
//! asm(r1: self, r2: other, r3) {
//! add r3 r2 r1;
//! r3: u64
//! }
//! ```
use sway_types::ident::Ident;
use crate::{
context::Context, irtype::Type, metadata::MetadataIndex, pretty::DebugWithContext, value::Value,
};
/// A wrapper around an [ECS](https://github.com/fitzgen/generational-arena) handle into the
/// [`Context`].
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, DebugWithContext)]
pub struct AsmBlock(#[in_context(asm_blocks)] pub generational_arena::Index);
#[doc(hidden)]
#[derive(Clone, Debug, DebugWithContext)]
pub struct AsmBlockContent {
pub args_names: Vec<Ident>,
pub body: Vec<AsmInstruction>,
pub return_type: Type,
pub return_name: Option<Ident>,
}
#[derive(Clone, Debug)]
pub struct AsmArg {
pub name: Ident,
pub initializer: Option<Value>,
}
#[derive(Clone, Debug)]
pub struct AsmInstruction {
pub name: Ident,
pub args: Vec<Ident>,
pub immediate: Option<Ident>,
pub metadata: Option<MetadataIndex>,
}
impl AsmBlock {
/// Create a new [`AsmBlock`] in the passed context and return its handle.
pub fn new(
context: &mut Context,
args_names: Vec<Ident>,
body: Vec<AsmInstruction>,
return_type: Type,
return_name: Option<Ident>,
) -> Self {
let content = AsmBlockContent {
args_names,
body,
return_type,
return_name,
};
AsmBlock(context.asm_blocks.insert(content))
}
/// Return the [`AsmBlock`] return type.
pub fn get_type(&self, context: &Context) -> Type {
// The type is a named register, which will be a u64.
context.asm_blocks[self.0].return_type
}
/// Change the [`AsmBlock`] return type.
pub fn set_type(&self, context: &mut Context, new_ret_type: Type) {
context.asm_blocks[self.0].return_type = new_ret_type
}
/// Get a reference to the [`AsmBlockContent`] for this ASM block.
pub fn get_content<'a>(&self, context: &'a Context) -> &'a AsmBlockContent {
&context.asm_blocks[self.0]
}
}