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
use crate::mlir_sys::{
mlirAffineMapDump, mlirAffineMapEqual, mlirAffineMapGetContext, mlirAffineMapPrint,
MlirAffineMap,
};
use crate::{
context::{Context, ContextRef},
utility::print_callback,
};
use std::{
ffi::c_void,
fmt::{self, Debug, Display, Formatter},
marker::PhantomData,
};
#[derive(Clone, Copy)]
pub struct AffineMap<'c> {
raw: MlirAffineMap,
_context: PhantomData<&'c Context>,
}
impl<'c> AffineMap<'c> {
pub fn context(&self) -> ContextRef<'c> {
unsafe { ContextRef::from_raw(mlirAffineMapGetContext(self.raw)) }
}
pub fn dump(&self) {
unsafe { mlirAffineMapDump(self.raw) }
}
pub(crate) unsafe fn from_raw(raw: MlirAffineMap) -> Self {
Self {
raw,
_context: Default::default(),
}
}
}
impl<'c> PartialEq for AffineMap<'c> {
fn eq(&self, other: &Self) -> bool {
unsafe { mlirAffineMapEqual(self.raw, other.raw) }
}
}
impl<'c> Eq for AffineMap<'c> {}
impl<'c> Display for AffineMap<'c> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
let mut data = (formatter, Ok(()));
unsafe {
mlirAffineMapPrint(
self.raw,
Some(print_callback),
&mut data as *mut _ as *mut c_void,
);
}
data.1
}
}
impl<'c> Debug for AffineMap<'c> {
fn fmt(&self, formatter: &mut Formatter) -> fmt::Result {
Display::fmt(self, formatter)
}
}