source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_get_library_work.cpp @ 71

Last change on this file since 71 was 71, checked in by rosiere, 16 years ago

Modification of Statisctics
Add a new systemC component : Load_Store_Queue (tested with one benchmark and one configuration). Store don't supported the Data Buss Error (Load is supported)

File size: 883 bytes
Line 
1#ifdef VHDL
2
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
11
12#include <sstream>
13
14namespace morpheo              {
15namespace behavioural          {
16 
17#undef  FUNCTION
18#define FUNCTION "Vhdl::get_library_work"
19  std::string Vhdl::get_library_work (uint32_t depth)
20  {
21    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
22
23    std::list<std::string>::iterator i   = _list_library_work.begin();
24    std::string                 tab = std::string(depth,'\t');
25    std::ostringstream          text;
26
27    if (i != _list_library_work.end())
28      text << tab                    << std::endl
29           << tab << "library work;" << std::endl
30           << get_list(_list_library_work,depth,";",true);
31
32    log_printf(FUNC,Behavioural,FUNCTION,"End");
33
34    return text.str();
35  };
36 
37}; // end namespace behavioural         
38}; // end namespace morpheo             
39
40#endif
Note: See TracBrowser for help on using the repository browser.