37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
//===- mlir-c/Target/ExportSMTLIB.h - C API for emitting SMTLIB ---*- C -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This header declares the C interface for emitting SMTLIB from an MLIR module.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MLIR_C_EXPORTSMTLIB_H
|
|
#define MLIR_C_EXPORTSMTLIB_H
|
|
|
|
#include "mlir-c/IR.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/// Emits SMTLIB for the specified module using the provided callback and user
|
|
/// data
|
|
MLIR_CAPI_EXPORTED MlirLogicalResult
|
|
mlirTranslateModuleToSMTLIB(MlirModule, MlirStringCallback, void *userData,
|
|
bool inlineSingleUseValues, bool indentLetBody);
|
|
|
|
MLIR_CAPI_EXPORTED MlirLogicalResult mlirTranslateOperationToSMTLIB(
|
|
MlirOperation, MlirStringCallback, void *userData,
|
|
bool inlineSingleUseValues, bool indentLetBody);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // MLIR_C_EXPORTSMTLIB_H
|