use super::Type;
use crate::{
ContextRef,
ir::{Location, TypeLike},
};
use mlir_sys::{
MlirValue, mlirValueDump, mlirValueGetContext, mlirValueGetLocation, mlirValueGetType,
mlirValueIsABlockArgument, mlirValueIsAOpResult, mlirValueSetType,
};
pub trait ValueLike<'c> {
fn to_raw(&self) -> MlirValue;
fn r#type(&self) -> Type<'c> {
unsafe { Type::from_raw(mlirValueGetType(self.to_raw())) }
}
fn set_type(&self, r#type: Type<'c>) {
unsafe { mlirValueSetType(self.to_raw(), r#type.to_raw()) }
}
fn context(&self) -> ContextRef<'c> {
unsafe { ContextRef::from_raw(mlirValueGetContext(self.to_raw())) }
}
fn location(&self) -> Location<'c> {
unsafe { Location::from_raw(mlirValueGetLocation(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()) }
}
}