blob: ab133f9dcbde5f4098cf8da2934f598100e23732 [file] [log] [blame]
//===- InitPasses.h - EmitC Pass Registration -------------------*- 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
//
//===----------------------------------------------------------------------===//
//
// This file defines a helper to trigger the registration of dialects and
// passes to the system.
//
//===----------------------------------------------------------------------===//
#ifndef EMITC_INITPASSES_H
#define EMITC_INITPASSES_H
#include "emitc/Dialect/EmitC/Conversion/Passes.h"
#include "emitc/Dialect/EmitC/Pipelines.h"
#include "emitc/Dialect/EmitC/Transforms/Passes.h"
#include "mlir/Conversion/Passes.h"
#include "mlir/Transforms/Passes.h"
#include <cstdlib>
namespace mlir {
namespace emitc {
// This function may be called to register the MLIR passes with the
// global registry.
// If you're building a compiler, you likely don't need this: you would build a
// pipeline programmatically without the need to register with the global
// registry, since it would already be calling the creation routine of the
// individual passes.
// The global registry is interesting to interact with the command-line tools.
inline void registerAllEmitCPasses() {
#ifdef EMITC_BUILD_HLO
registerConvertMHLORegionOpsToEmitCPass();
registerConvertMHLOToEmitCPass();
registerInsertEmitCMHLOIncludePass();
registerMHLOToEmitCPipeline();
#endif // EMITC_BUILD_HLO
registerConvertArithToEmitCPass();
registerConvertTensorToEmitCPass();
registerConvertTosaToEmitCPass();
registerInsertEmitCArithIncludePass();
registerInsertEmitCTensorIncludePass();
registerInsertEmitCTosaIncludePass();
registerArithToEmitCPipeline();
registerTensorToEmitCPipeline();
registerTosaToEmitCPipeline();
}
} // namespace emitc
} // namespace mlir
#endif // EMITC_INITPASSES_H