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
use super::Value;
use crate::mlir_sys::{mlirOpResultGetOwner, mlirOpResultGetResultNumber, MlirValue};
use crate::{
ir::{OperationRef, ValueLike},
Error,
};
use std::fmt::{self, Display, Formatter};
#[derive(Clone, Copy, Debug)]
pub struct ResultValue<'a> {
value: Value<'a>,
}
impl<'a> ResultValue<'a> {
pub fn result_number(&self) -> usize {
unsafe { mlirOpResultGetResultNumber(self.value.to_raw()) as usize }
}
pub fn owner(&self) -> OperationRef {
unsafe { OperationRef::from_raw(mlirOpResultGetOwner(self.value.to_raw())) }
}
pub(crate) unsafe fn from_raw(value: MlirValue) -> Self {
Self {
value: Value::from_raw(value),
}
}
}
impl<'a> ValueLike for ResultValue<'a> {
fn to_raw(&self) -> MlirValue {
self.value.to_raw()
}
}
impl<'a> Display for ResultValue<'a> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
Value::from(*self).fmt(formatter)
}
}
impl<'a> TryFrom<Value<'a>> for ResultValue<'a> {
type Error = Error;
fn try_from(value: Value<'a>) -> Result<Self, Self::Error> {
if value.is_operation_result() {
Ok(Self { value })
} else {
Err(Error::OperationResultExpected(value.to_string()))
}
}
}
#[cfg(test)]
mod tests {
use crate::{
context::Context,
ir::{operation, Block, Location, Type},
};
#[test]
fn result_number() {
let context = Context::new();
context.set_allow_unregistered_dialects(true);
let r#type = Type::parse(&context, "index").unwrap();
let operation = operation::Builder::new("foo", Location::unknown(&context))
.add_results(&[r#type])
.build();
assert_eq!(operation.result(0).unwrap().result_number(), 0);
}
#[test]
fn owner() {
let context = Context::new();
context.set_allow_unregistered_dialects(true);
let r#type = Type::parse(&context, "index").unwrap();
let block = Block::new(&[(r#type, Location::unknown(&context))]);
assert_eq!(&*block.argument(0).unwrap().owner(), &block);
}
}