|
CIRCT 23.0.0git
|


Private Member Functions | |
| void | runOnOperation () override |
| void | getRefABIPrefix (FModuleLike mod, SmallVectorImpl< char > &prefix) |
Generate the ABI ref_<module> prefix string into prefix. | |
| StringAttr | getRefABIMacroForPort (FModuleLike mod, size_t portIndex, const Twine &prefix, bool backTick=false) |
| Get full macro name as StringAttr for the specified ref port. | |
| LogicalResult | resolveReferencePath (mlir::TypedValue< RefType > refVal, ImplicitLocOpBuilder builder, mlir::FlatSymbolRefAttr &ref, SmallString< 128 > &stringLeaf) |
| LogicalResult | resolveReference (mlir::TypedValue< RefType > refVal, ImplicitLocOpBuilder &builder, FlatSymbolRefAttr &ref, StringAttr &xmrAttr) |
| LogicalResult | handleForceReleaseOp (Operation *op) |
| LogicalResult | handleRefResolve (RefResolveOp resolve) |
| void | setPortToRemove (Operation *op, size_t index, size_t numPorts) |
| LogicalResult | handleInstanceOp (InstanceOp inst, InstanceGraph &instanceGraph) |
| LogicalResult | handlePublicModuleRefPorts (FModuleOp module) |
| hw::InnerSymbolNamespace & | getModuleNamespace (FModuleLike module) |
| Get the cached namespace for a module. | |
| InnerRefAttr | getInnerRefTo (Value val) |
| InnerRefAttr | getInnerRefTo (Operation *op) |
| void | markForRemoval (Operation *op) |
| std::optional< size_t > | getRemoteRefSend (Value val, bool errorIfNotFound=true) |
| size_t | addReachingSendsEntry (Value atRefVal, XMRNode::SymOrIndexOp info, std::optional< size_t > continueFrom=std::nullopt) |
| void | garbageCollect () |
| bool | isZeroWidth (FIRRTLBaseType t) |
Private Attributes | |
| DenseMap< Operation *, hw::InnerSymbolNamespace > | moduleNamespaces |
| Cached module namespaces. | |
| DenseSet< Operation * > | visitedModules |
| DenseMap< Value, size_t > | dataflowAt |
| Map of a reference value to an entry into refSendPathList. | |
| SmallVector< XMRNode > | refSendPathList |
| refSendPathList is used to construct a path to the RefSendOp. | |
| llvm::EquivalenceClasses< Value > * | dataFlowClasses |
| DenseMap< Operation *, llvm::BitVector > | refPortsToRemoveMap |
| SmallVector< Operation * > | opsToRemove |
| RefResolve, RefSend, and Connects involving them that will be removed. | |
| DenseMap< size_t, SmallString< 128 > > | xmrPathSuffix |
| Record the internal path to an external module or a memory. | |
| CircuitNamespace * | circuitNamespace |
| hw::HierPathCache * | hierPathCache |
| Utility to create HerPathOps at a predefined location in the circuit. | |
| DenseMap< FModuleOp, ModuleState > | moduleStates |
| Per-module helpers for creating operations within modules. | |
Definition at line 126 of file LowerXMR.cpp.
|
inlineprivate |
Definition at line 800 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
inlineprivate |
Definition at line 809 of file LowerXMR.cpp.
|
inlineprivate |
Definition at line 767 of file LowerXMR.cpp.
|
inlineprivate |
Definition at line 756 of file LowerXMR.cpp.
References circt::firrtl::getInnerRefTo().
Referenced by runOnOperation().
|
inlineprivate |
Get the cached namespace for a module.
Definition at line 752 of file LowerXMR.cpp.
|
inlineprivate |
Get full macro name as StringAttr for the specified ref port.
Uses existing 'prefix', optionally preprends the backtick character.
Definition at line 464 of file LowerXMR.cpp.
|
inlineprivate |
Generate the ABI ref_<module> prefix string into prefix.
Definition at line 455 of file LowerXMR.cpp.
References toVector().
|
inlineprivate |
Definition at line 776 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
inlineprivate |
Definition at line 560 of file LowerXMR.cpp.
|
inlineprivate |
Get the resolution string for this ref-type port.
Definition at line 621 of file LowerXMR.cpp.
References circt::firrtl::getInnerRefTo().
Referenced by runOnOperation().
|
inlineprivate |
Definition at line 696 of file LowerXMR.cpp.
|
inlineprivate |
Definition at line 590 of file LowerXMR.cpp.
References circt::firrtl::getBitWidth(), circt::firrtl::getIntZerosAttr(), and resolve().
|
inlineprivate |
Definition at line 856 of file LowerXMR.cpp.
References circt::firrtl::FIRRTLBaseType::getBitWidthOrSentinel().
Referenced by runOnOperation().
|
inlineprivate |
Definition at line 774 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
inlineprivate |
Definition at line 543 of file LowerXMR.cpp.
|
inlineprivate |
Definition at line 470 of file LowerXMR.cpp.
References assert(), and toVector().
|
inlineoverrideprivate |
Definition at line 128 of file LowerXMR.cpp.
References addReachingSendsEntry(), circuitNamespace, dataFlowClasses, getBodyBlock(), circt::firrtl::getFieldName(), circt::firrtl::getFieldRefFromValue(), getInnerRefTo(), getRemoteRefSend(), handleInstanceOp(), hierPathCache, isZeroWidth(), markForRemoval(), moduleStates, refPortsToRemoveMap, resolve(), setPortToRemove(), toVector(), circt::igraph::InstanceGraph::walkPostOrder(), and xmrPathSuffix.
|
inlineprivate |
Definition at line 614 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
private |
Definition at line 888 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
private |
Map of a reference value to an entry into refSendPathList.
Each entry in refSendPathList represents the path to RefSend. The path is required since there can be multiple paths to the RefSend and we need to identify a unique path.
Definition at line 867 of file LowerXMR.cpp.
|
private |
Definition at line 878 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
private |
Utility to create HerPathOps at a predefined location in the circuit.
This handles caching and keeps the order consistent.
Definition at line 892 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
private |
Cached module namespaces.
Definition at line 860 of file LowerXMR.cpp.
|
private |
Per-module helpers for creating operations within modules.
Definition at line 895 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
private |
RefResolve, RefSend, and Connects involving them that will be removed.
Definition at line 883 of file LowerXMR.cpp.
|
private |
Definition at line 880 of file LowerXMR.cpp.
Referenced by runOnOperation().
|
private |
refSendPathList is used to construct a path to the RefSendOp.
Each entry is an XMRNode, with an InnerRefAttr or indexing op, and a pointer to the next node in the path. The InnerRefAttr can be to an InstanceOp or to the XMR defining op, the index op records narrowing along path. All the nodes representing an InstanceOp or indexing operation must have a valid NextNodeOnPath. Only the node representing the final XMR defining op has no NextNodeOnPath, which denotes a leaf node on the path.
Definition at line 876 of file LowerXMR.cpp.
|
private |
Definition at line 862 of file LowerXMR.cpp.
|
private |
Record the internal path to an external module or a memory.
Definition at line 886 of file LowerXMR.cpp.
Referenced by runOnOperation().