Files
concrete/compilers/concrete-compiler/compiler/lib/Dialect/RT/IR/RTOps.cpp
Benoit Chevallier-Mames e37a840e7e docs(compiler): adding API doc
2024-03-13 17:10:00 +01:00

100 lines
4.0 KiB
C++

// Part of the Concrete Compiler Project, under the BSD3 License with Zama
// Exceptions. See
// https://github.com/zama-ai/concrete/blob/main/LICENSE.txt
// for license information.
#include "mlir/IR/Attributes.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/BuiltinOps.h"
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/Region.h"
#include "mlir/IR/TypeUtilities.h"
#include "llvm/ADT/STLExtras.h"
#include "concretelang/Dialect/RT/IR/RTOps.h"
#include "concretelang/Dialect/RT/IR/RTTypes.h"
#define GET_OP_CLASSES
#include "concretelang/Dialect/RT/IR/RTOps.cpp.inc"
using namespace mlir::concretelang::RT;
void DataflowTaskOp::build(
::mlir::OpBuilder &builder, ::mlir::OperationState &result,
::mlir::TypeRange resultTypes, ::mlir::ValueRange operands,
::llvm::ArrayRef<::mlir::NamedAttribute> attributes) {
result.addOperands(operands);
result.addAttributes(attributes);
Region *reg = result.addRegion();
Block *body = new Block();
reg->push_back(body);
result.addTypes(resultTypes);
}
void DataflowTaskOp::getSuccessorRegions(
Optional<unsigned> index, ArrayRef<Attribute> operands,
SmallVectorImpl<RegionSuccessor> &regions) {}
std::optional<mlir::Operation *>
DataflowTaskOp::buildDealloc(OpBuilder &builder, Value alloc) {
return builder.create<DeallocateFutureOp>(alloc.getLoc(), alloc)
.getOperation();
}
std::optional<mlir::Value> DataflowTaskOp::buildClone(OpBuilder &builder,
Value alloc) {
return builder.create<CloneFutureOp>(alloc.getLoc(), alloc).getResult();
}
void DataflowTaskOp::getEffects(
SmallVectorImpl<SideEffects::EffectInstance<MemoryEffects::Effect>>
&effects) {
for (auto input : getInputs())
effects.emplace_back(MemoryEffects::Read::get(), input,
SideEffects::DefaultResource::get());
for (auto output : getOutputs())
effects.emplace_back(MemoryEffects::Write::get(), output,
SideEffects::DefaultResource::get());
for (auto output : getOutputs())
effects.emplace_back(MemoryEffects::Allocate::get(), output,
SideEffects::DefaultResource::get());
}
std::optional<mlir::Operation *> CloneFutureOp::buildDealloc(OpBuilder &builder,
Value alloc) {
return builder.create<DeallocateFutureOp>(alloc.getLoc(), alloc)
.getOperation();
}
std::optional<mlir::Value> CloneFutureOp::buildClone(OpBuilder &builder,
Value alloc) {
return builder.create<CloneFutureOp>(alloc.getLoc(), alloc).getResult();
}
void CloneFutureOp::getEffects(
SmallVectorImpl<SideEffects::EffectInstance<MemoryEffects::Effect>>
&effects) {
effects.emplace_back(MemoryEffects::Read::get(), getInput(),
SideEffects::DefaultResource::get());
effects.emplace_back(MemoryEffects::Write::get(), getOutput(),
SideEffects::DefaultResource::get());
effects.emplace_back(MemoryEffects::Allocate::get(), getOutput(),
SideEffects::DefaultResource::get());
}
std::optional<mlir::Operation *>
MakeReadyFutureOp::buildDealloc(OpBuilder &builder, Value alloc) {
return builder.create<DeallocateFutureOp>(alloc.getLoc(), alloc)
.getOperation();
}
std::optional<mlir::Value> MakeReadyFutureOp::buildClone(OpBuilder &builder,
Value alloc) {
return builder.create<CloneFutureOp>(alloc.getLoc(), alloc).getResult();
}
void MakeReadyFutureOp::getEffects(
SmallVectorImpl<SideEffects::EffectInstance<MemoryEffects::Effect>>
&effects) {
effects.emplace_back(MemoryEffects::Read::get(), getInput(),
SideEffects::DefaultResource::get());
effects.emplace_back(MemoryEffects::Write::get(), getOutput(),
SideEffects::DefaultResource::get());
effects.emplace_back(MemoryEffects::Allocate::get(), getOutput(),
SideEffects::DefaultResource::get());
}