Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs][FIRRTL] Build and include docs for intrinsic ops #7444

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/Dialects/FIRRTL/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ page](https://github.com/freechipsproject/firrtl).

[include "Dialects/FIRRTLExpressionOps.md"]

## Operation Definitions -- Intrinsics

[include "Dialects/FIRRTLIntrinsicOps.md"]

## Type Definitions

[include "Dialects/FIRRTLTypes.md"]
Expand Down
1 change: 1 addition & 0 deletions include/circt/Dialect/FIRRTL/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ add_circt_doc(FIRRTLStructure Dialects/FIRRTLStructureOps -gen-op-doc)
add_circt_doc(FIRRTLDeclarations Dialects/FIRRTLDeclarationOps -gen-op-doc)
add_circt_doc(FIRRTLStatements Dialects/FIRRTLStatementOps -gen-op-doc)
add_circt_doc(FIRRTLExpressions Dialects/FIRRTLExpressionOps -gen-op-doc)
add_circt_doc(FIRRTLIntrinsics Dialects/FIRRTLIntrinsicOps -gen-op-doc)
add_circt_doc(FIRRTLTypes Dialects/FIRRTLTypes -gen-typedef-doc)
add_circt_doc(FIRRTLTypesImpl Dialects/FIRRTLTypesImpl -gen-typedef-doc)
add_circt_doc(FIRRTLOpInterfaces Dialects/FIRRTLOpInterfaces -gen-op-interface-docs)
Expand Down
4 changes: 4 additions & 0 deletions include/circt/Dialect/FIRRTL/FIRRTLIntrinsics.td
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
#ifndef CIRCT_DIALECT_FIRRTL_FIRRTLINTRINSICS_TD
#define CIRCT_DIALECT_FIRRTL_FIRRTLINTRINSICS_TD

include "FIRRTLAttributes.td"
include "FIRRTLDialect.td"
include "FIRRTLTypes.td"
include "circt/Dialect/HW/HWOpInterfaces.td"
include "mlir/Interfaces/SideEffectInterfaces.td"

//===----------------------------------------------------------------------===//
// Generic intrinsic operation for parsing into before lowering.
Expand Down
Loading