82 const std::vector<ModuleGenerator::parameter>& ,
83 const std::vector<ModuleGenerator::parameter>& _ports_in,
84 const std::vector<ModuleGenerator::parameter>& _ports_out,
85 const std::vector<ModuleGenerator::parameter>& )
91 const auto top_fid = HLSMgr->CGetCallGraphManager()->GetRootFunction(function_id);
92 const auto top_fname = HLSMgr->CGetFunctionBehavior(top_fid)->CGetBehavioralHelper()->GetMangledFunctionName();
93 const auto& iface_attrs = HLSMgr->module_arch->GetArchitecture(top_fname)->ifaces.at(bundle_name);
95 if(iface_attrs.find(FunctionArchitecture::iface_register) != iface_attrs.end())
97 THROW_ERROR(
"Registered handshake interface not yet implemented.");
99 out <<
"reg started, started0;\n\n";
101 out <<
"always @(posedge clock 1RESET_EDGE)\n";
103 out <<
" if (1RESET_VALUE)\n";
105 out <<
" started <= 0;\n";
109 out <<
" started <= started0;\n";
113 out <<
"always @(*)\n";
115 out <<
" started0 = (" << _ports_in[
i_start].name <<
" | started) & ~" << _ports_in[
i_ack].name <<
";\n";
118 out <<
"assign " << _ports_out[
o_out1].name <<
" = " << _ports_in[
i_in2].name <<
";\n";
119 out <<
"assign " << _ports_out[
o_done].name <<
" = (" << _ports_in[
i_start].name <<
" | started) & " 120 << _ports_in[
i_ack].name <<
";\n";
121 out <<
"assign " << _ports_out[
o_vld].name <<
" = " << _ports_in[
i_start].name <<
" | started;\n";
Data structure representing the entire HLS information.
#define STR_CST_interface_parameter_keyword
interface_parameter_keyword
const std::string & get_id() const
Return the identifier associated with the structural_object.
void InternalExec(std::ostream &out, structural_objectRef mod, unsigned int function_id, vertex op_v, const HDLWriter_Language language, const std::vector< ModuleGenerator::parameter > &_p, const std::vector< ModuleGenerator::parameter > &_ports_in, const std::vector< ModuleGenerator::parameter > &_ports_out, const std::vector< ModuleGenerator::parameter > &_ports_inout) final
This class writes different HDL based descriptions (VHDL, Verilog, SystemC) starting from a structura...
Write_handshakeModuleGenerator(const HLS_managerRef &HLSMgr)
boost::graph_traits< graph >::vertex_descriptor vertex
vertex definition.
#define THROW_ERROR(str_expr)
helper function used to throw an error in a standard way
This class describes all classes used to represent a structural object.
Template borrowed from the ANTLR library by Terence Parr (http://www.jGuru.com - Software rights: htt...
A brief description of the C++ Header File.
#define THROW_ASSERT(cond, str_expr)
helper function used to check an assert and if needed to throw an error in a standard way ...