CIRCT  19.0.0git
Classes | Namespaces | Macros
Visitor.h File Reference
#include "circt/Dialect/Handshake/HandshakeOps.h"
#include "mlir/Dialect/Arith/IR/Arith.h"
#include "mlir/Dialect/Func/IR/FuncOps.h"
#include "llvm/ADT/TypeSwitch.h"
Include dependency graph for Visitor.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  circt::handshake::HandshakeVisitor< ConcreteType, ResultType, ExtraArgs >
 HandshakeVisitor is a visitor for handshake nodes. More...
 
class  mlir::StdExprVisitor< ConcreteType, ResultType, ExtraArgs >
 StdExprVisitor is a visitor for standard expression nodes. More...
 

Namespaces

 circt
 The InstanceGraph op interface, see InstanceGraphInterface.td for more details.
 
 circt::handshake
 
 mlir
 

Macros

#define HANDLE(OPTYPE)
 
#define HANDLE(OPTYPE)
 

Macro Definition Documentation

◆ HANDLE [1/2]

#define HANDLE (   OPTYPE)
Value:
ResultType visitHandshake(OPTYPE op, ExtraArgs... args) { \
return static_cast<ConcreteType *>(this)->visitUnhandledOp(op, args...); \
}

Definition at line 128 of file Visitor.h.

◆ HANDLE [2/2]

#define HANDLE (   OPTYPE)
Value:
ResultType visitStdExpr(OPTYPE op, ExtraArgs... args) { \
return static_cast<ConcreteType *>(this)->visitUnhandledOp(op, args...); \
}

Definition at line 128 of file Visitor.h.