//===- BasicpyDialect.cpp - Basic python dialect ----------------*- C++ -*-===// // // This file is licensed under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "npcomp/Dialect/Basicpy/IR/BasicpyDialect.h" #include "mlir/IR/DialectImplementation.h" #include "mlir/Transforms/InliningUtils.h" #include "npcomp/Dialect/Basicpy/IR/BasicpyOps.h" #include "llvm/ADT/TypeSwitch.h" using namespace mlir; using namespace mlir::NPCOMP; using namespace mlir::NPCOMP::Basicpy; //===----------------------------------------------------------------------===// // Dialect Interfaces //===----------------------------------------------------------------------===// namespace { struct BasicpyInlinerInterface : public DialectInlinerInterface { using DialectInlinerInterface::DialectInlinerInterface; bool isLegalToInline(Region *dest, Region *src, bool wouldBeCloned, BlockAndValueMapping &valueMapping) const final { return true; } bool isLegalToInline(Operation *, Region *, bool wouldBeCloned, BlockAndValueMapping &) const final { return true; } }; } // end anonymous namespace //===----------------------------------------------------------------------===// // Dialect Class //===----------------------------------------------------------------------===// void BasicpyDialect::initialize() { addOperations< #define GET_OP_LIST #include "npcomp/Dialect/Basicpy/IR/BasicpyOps.cpp.inc" >(); addTypes(); addInterfaces(); // TODO: Make real ops for everything we need. allowUnknownOperations(); } Operation *BasicpyDialect::materializeConstant(OpBuilder &builder, Attribute value, Type type, Location loc) { // NumericConstantOp. // Supports IntegerType (any signedness), FloatType and ComplexType. if (type.isa() || type.isa() || type.isa()) return builder.create(loc, type, value); // Bool (i1 -> !basicpy.BoolType). if (type.isa()) { auto i1Value = value.dyn_cast(); if (i1Value && i1Value.getType().getIntOrFloatBitWidth() == 1) return builder.create(loc, type, i1Value); } // Bytes. if (type.isa()) { if (auto strValue = value.dyn_cast()) return builder.create(loc, type, strValue); } // Str. if (type.isa()) { if (auto strValue = value.dyn_cast()) return builder.create(loc, type, strValue); } return nullptr; } Type BasicpyDialect::parseType(DialectAsmParser &parser) const { StringRef keyword; if (parser.parseKeyword(&keyword)) return Type(); if (keyword == "BoolType") return BoolType::get(getContext()); if (keyword == "BytesType") return BytesType::get(getContext()); if (keyword == "DictType") return DictType::get(getContext()); if (keyword == "EllipsisType") return EllipsisType::get(getContext()); if (keyword == "ListType") return ListType::get(getContext()); if (keyword == "NoneType") return NoneType::get(getContext()); if (keyword == "SlotObject") { StringRef className; if (parser.parseLess() || parser.parseKeyword(&className)) { return Type(); } llvm::SmallVector slotTypes; while (succeeded(parser.parseOptionalComma())) { Type slotType; if (parser.parseType(slotType)) return Type(); slotTypes.push_back(slotType); } if (parser.parseGreater()) return Type(); return SlotObjectType::get(StringAttr::get(getContext(), className), slotTypes); } if (keyword == "StrType") return StrType::get(getContext()); if (keyword == "TupleType") return TupleType::get(getContext()); if (keyword == "UnknownType") return UnknownType::get(getContext()); parser.emitError(parser.getNameLoc(), "unknown basicpy type"); return Type(); } void BasicpyDialect::printType(Type type, DialectAsmPrinter &os) const { TypeSwitch(type) .Case([&](Type) { os << "BoolType"; }) .Case([&](Type) { os << "BytesType"; }) .Case([&](Type) { os << "DictType"; }) .Case([&](Type) { os << "EllipsisType"; }) .Case([&](Type) { os << "ListType"; }) .Case([&](Type) { os << "NoneType"; }) .Case([&](SlotObjectType slotObject) { auto slotTypes = slotObject.getSlotTypes(); os << "SlotObject<" << slotObject.getClassName().getValue(); if (!slotTypes.empty()) { os << ", "; llvm::interleaveComma(slotTypes, os, [&](Type t) { os.printType(t); }); } os << ">"; }) .Case([&](Type) { os << "StrType"; }) .Case([&](Type) { os << "TupleType"; }) .Case([&](Type) { os << "UnknownType"; }) .Default( [&](Type) { llvm_unreachable("unexpected 'basicpy' type kind"); }); } //----------------------------------------------------------------------------// // Type and attribute detail //----------------------------------------------------------------------------// namespace mlir { namespace NPCOMP { namespace Basicpy { namespace detail { struct SlotObjectTypeStorage : public TypeStorage { using KeyTy = std::pair>; SlotObjectTypeStorage(StringAttr className, ArrayRef slotTypes) : className(className), slotTypes(slotTypes) {} bool operator==(const KeyTy &other) const { return className == other.first && slotTypes == other.second; } static llvm::hash_code hashKey(const KeyTy &key) { return llvm::hash_combine(key.first, key.second); } static SlotObjectTypeStorage *construct(TypeStorageAllocator &allocator, const KeyTy &key) { ArrayRef slotTypes = allocator.copyInto(key.second); return new (allocator.allocate()) SlotObjectTypeStorage(key.first, slotTypes); } StringAttr className; ArrayRef slotTypes; }; } // namespace detail } // namespace Basicpy } // namespace NPCOMP } // namespace mlir StringAttr SlotObjectType::getClassName() { return getImpl()->className; } ArrayRef SlotObjectType::getSlotTypes() { return getImpl()->slotTypes; } unsigned SlotObjectType::getSlotCount() { return getImpl()->slotTypes.size(); } SlotObjectType SlotObjectType::get(StringAttr className, ArrayRef slotTypes) { return Base::get(className.getContext(), className, slotTypes); } //----------------------------------------------------------------------------// // CPA Interface Implementations //----------------------------------------------------------------------------// Typing::CPA::TypeNode * UnknownType::mapToCPAType(Typing::CPA::Context &context) { return context.newTypeVar(); }