This patch introduces the `index` dialect and associated boilerplate for adding ops and enums (comparison predicates). Reviewed By: rriddle, jpienaar, nicolasvasilache Differential Revision: https://reviews.llvm.org/D135688
28 lines
984 B
C++
28 lines
984 B
C++
//===- IndexDialect.cpp - Index dialect definition -------------------------==//
|
|
//
|
|
// Part of the LLVM Project, 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 "mlir/Dialect/Index/IR/IndexDialect.h"
|
|
|
|
using namespace mlir;
|
|
using namespace mlir::index;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// IndexDialect
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
void IndexDialect::initialize() {
|
|
registerAttributes();
|
|
registerOperations();
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// ODS-Generated Definitions
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "mlir/Dialect/Index/IR/IndexOpsDialect.cpp.inc"
|