CIRCT 20.0.0git
Loading...
Searching...
No Matches
CombToLLVM.h
Go to the documentation of this file.
1//===- CombToLLVM.h - Comb to LLVM pass entry point -------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This header file defines prototypes that expose the CombToLLVM pass
10// constructors.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CIRCT_CONVERSION_COMBTOLLVM_COMBTOLLVM_H
15#define CIRCT_CONVERSION_COMBTOLLVM_COMBTOLLVM_H
16
17#include "circt/Support/LLVM.h"
18#include <memory>
19
20namespace mlir {
21class LLVMTypeConverter;
22} // namespace mlir
23
24namespace circt {
25
26/// Get the Comb to LLVM conversion patterns.
27void populateCombToLLVMConversionPatterns(mlir::LLVMTypeConverter &converter,
28 RewritePatternSet &patterns);
29
30} // namespace circt
31
32#endif // CIRCT_CONVERSION_COMBTOLLVM_COMBTOLLVM_H
The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
void populateCombToLLVMConversionPatterns(mlir::LLVMTypeConverter &converter, RewritePatternSet &patterns)
Get the Comb to LLVM conversion patterns.