OpenASIP  2.0
Public Member Functions | List of all members
HDLGenerator::LogicalOr Class Reference

#include <BinaryOps.hh>

Inheritance diagram for HDLGenerator::LogicalOr:
Inheritance graph
Collaboration diagram for HDLGenerator::LogicalOr:
Collaboration graph

Public Member Functions

 LogicalOr (const LHSValue &lhs, const LHSValue &rhs)
 
- Public Member Functions inherited from HDLGenerator::BinaryOp
 BinaryOp (const LHSValue &lhs, const LHSValue &rhs, std::string VHDLOperator, std::string VerilogOperator)
 
- Public Member Functions inherited from HDLGenerator::LHSValue
 LHSValue ()
 
void hdl (std::ostream &stream, Language lang, int level)
 
void hdl (std::ostream &stream, Language lang)
 
void writeSignals (std::unordered_set< std::string > &readList) const
 
std::string vhdl () const
 
std::string verilog () const
 
LHSValue operator|| (LHSValue rhs)
 
LHSValue operator| (LHSValue rhs)
 
LHSValue operator&& (LHSValue rhs)
 
LHSValue operator& (LHSValue rhs)
 
LHSValue operator^ (LHSValue rhs)
 
LHSValue operator! ()
 
LHSValue operator~ ()
 

Additional Inherited Members

- Protected Attributes inherited from HDLGenerator::LHSValue
std::unordered_set< std::string > readList_
 
std::string vhdl_
 
std::string verilog_
 

Detailed Description

Definition at line 63 of file BinaryOps.hh.

Constructor & Destructor Documentation

◆ LogicalOr()

HDLGenerator::LogicalOr::LogicalOr ( const LHSValue lhs,
const LHSValue rhs 
)
inline

Definition at line 65 of file BinaryOps.hh.

65  :
66  BinaryOp(lhs, rhs, "or", "||") {}

The documentation for this class was generated from the following file:
HDLGenerator::BinaryOp::BinaryOp
BinaryOp(const LHSValue &lhs, const LHSValue &rhs, std::string VHDLOperator, std::string VerilogOperator)
Definition: BinaryOps.hh:39