* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#include "ascir/Dialect/Asc/IR/Asc.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/DialectImplementation.h"
#include "mlir/IR/OpImplementation.h"
#include "llvm/ADT/TypeSwitch.h"
#include "ascir/Dialect/Asc/IR/AscendCEnums.cpp.inc"
#define GET_ATTRDEF_CLASSES
#include "ascir/Dialect/Asc/IR/AscendCAttributes.cpp.inc"
using namespace mlir;
using namespace mlir::ascendc;
ParseResult mlir::ascendc::parsePrettyTPosition(AsmParser& odsParser, TPositionAttr& attr)
{
StringRef pos;
if (odsParser.parseKeyword(&pos))
return failure();
if (auto maybePos = symbolizeTPosition(pos)) {
attr = TPositionAttr::get(odsParser.getContext(), maybePos.value());
return success();
}
return odsParser.emitError(odsParser.getNameLoc()) << "position is not recognized: " << pos;
}
void mlir::ascendc::printPrettyTPosition(AsmPrinter& odsPrinter, const TPositionAttr& attr)
{
odsPrinter << stringifyTPosition(attr.getValue());
}
ParseResult ascendc::parsePrettyCubeFormat(AsmParser& odsParser, CubeFormatAttr& attr)
{
StringRef pos;
if (odsParser.parseKeyword(&pos))
return failure();
if (auto maybePos = symbolizeCubeFormat(pos)) {
attr = CubeFormatAttr::get(odsParser.getContext(), maybePos.value());
return success();
}
return odsParser.emitError(odsParser.getNameLoc()) << "cube format is not recognized: " << pos;
}
void ascendc::printPrettyCubeFormat(AsmPrinter& odsPrinter, const CubeFormatAttr& attr)
{
odsPrinter << stringifyCubeFormat(attr.getValue());
}
ParseResult ascendc::parsePrettyLayoutMode(AsmParser& odsParser, LayoutModeAttr& attr)
{
StringRef pos;
if (odsParser.parseKeyword(&pos))
return failure();
if (auto maybePos = symbolizeLayoutMode(pos)) {
attr = LayoutModeAttr::get(odsParser.getContext(), maybePos.value());
return success();
}
return odsParser.emitError(odsParser.getNameLoc()) << "layout mode is not recognized: " << pos;
}
void ascendc::printPrettyLayoutMode(AsmPrinter& odsPrinter, const LayoutModeAttr& attr)
{
odsPrinter << stringifyLayoutMode(attr.getValue());
}
ParseResult mlir::ascendc::parsePrettyCO2Layout(AsmParser& odsParser, CO2LayoutAttr& attr)
{
StringRef pos;
if (odsParser.parseKeyword(&pos))
return failure();
if (auto maybePos = symbolizeCO2Layout(pos)) {
attr = CO2LayoutAttr::get(odsParser.getContext(), maybePos.value());
return success();
}
return odsParser.emitError(odsParser.getNameLoc()) << "CO2Layout is not recognized: " << pos;
}
void mlir::ascendc::printPrettyCO2Layout(AsmPrinter& odsPrinter, const CO2LayoutAttr& attr)
{
odsPrinter << stringifyCO2Layout(attr.getValue());
}
void AscendCDialect::registerAttributes()
{
addAttributes<
#define GET_ATTRDEF_LIST
#include "ascir/Dialect/Asc/IR/AscendCAttributes.cpp.inc"
>();
}