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
use super::Type;
use crate::mlir_sys::{
mlirValueDump, mlirValueGetType, mlirValueIsABlockArgument, mlirValueIsAOpResult, MlirValue,
};
pub trait ValueLike {
fn to_raw(&self) -> MlirValue;
fn r#type(&self) -> Type {
unsafe { Type::from_raw(mlirValueGetType(self.to_raw())) }
}
fn is_block_argument(&self) -> bool {
unsafe { mlirValueIsABlockArgument(self.to_raw()) }
}
fn is_operation_result(&self) -> bool {
unsafe { mlirValueIsAOpResult(self.to_raw()) }
}
fn dump(&self) {
unsafe { mlirValueDump(self.to_raw()) }
}
}