CIRCT
20.0.0git
|
#include "circt/Conversion/DCToHW.h"
#include "circt/Dialect/Comb/CombOps.h"
#include "circt/Dialect/DC/DCDialect.h"
#include "circt/Dialect/DC/DCOps.h"
#include "circt/Dialect/DC/DCPasses.h"
#include "circt/Dialect/ESI/ESIOps.h"
#include "circt/Dialect/ESI/ESITypes.h"
#include "circt/Dialect/HW/ConversionPatterns.h"
#include "circt/Dialect/HW/HWOps.h"
#include "circt/Dialect/HW/HWTypes.h"
#include "circt/Dialect/Seq/SeqOps.h"
#include "circt/Support/BackedgeBuilder.h"
#include "circt/Support/ValueMapper.h"
#include "mlir/IR/ImplicitLocOpBuilder.h"
#include "mlir/Pass/Pass.h"
#include "mlir/Pass/PassManager.h"
#include "mlir/Transforms/DialectConversion.h"
#include "llvm/ADT/TypeSwitch.h"
#include "llvm/Support/MathExtras.h"
#include <optional>
#include "circt/Conversion/Passes.h.inc"
Go to the source code of this file.
Namespaces | |
circt | |
The InstanceGraph op interface, see InstanceGraphInterface.td for more details. | |
Macros | |
#define | GEN_PASS_DEF_DCTOHW |
Typedefs | |
using | NameUniquer = std::function< std::string(Operation *)> |
Functions | |
static Type | tupleToStruct (TupleType tuple) |
static Type | toHWType (Type t) |
Converts any type 't' into a hw -compatible type. More... | |
static Type | toESIHWType (Type t) |
static bool | isDCType (Type type) |
static bool | isLegalOp (Operation *op) |
Returns true if the given op is considered as legal - i.e. More... | |
#define GEN_PASS_DEF_DCTOHW |
Definition at line 36 of file DCToHW.cpp.
using NameUniquer = std::function<std::string(Operation *)> |
Definition at line 45 of file DCToHW.cpp.
|
static |
Definition at line 837 of file DCToHW.cpp.
Referenced by isLegalOp().
|
static |
Returns true if the given op
is considered as legal - i.e.
it does not contain any dc-typed values.
Definition at line 841 of file DCToHW.cpp.
References isDCType().
|
static |
Definition at line 81 of file DCToHW.cpp.
References circt::calyx::direction::get(), and toHWType().
|
static |
Converts any type 't' into a hw
-compatible type.
tuple -> hw.struct none -> i0 (tuple[...] | hw.struct)[...] -> (tuple | hw.struct)[toHwType(...)]
Definition at line 67 of file DCToHW.cpp.
References circt::calyx::direction::get(), and tupleToStruct().
Referenced by toESIHWType().
|
static |
Definition at line 48 of file DCToHW.cpp.
References circt::calyx::direction::get(), and circt::esi::innerType().
Referenced by toHWType().