source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/XML_get_body.cpp @ 78

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

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File size: 854 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/XML.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13#undef  FUNCTION
14#define FUNCTION "XML::get_body"
15  std::string XML::get_body (void)
16  {
17    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
18    log_printf(FUNC,Behavioural,FUNCTION,"End");
19    return _body;
20  };
21
22  std::string XML::get_body (uint32_t depth)
23  {
24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
25
26    std::string body       = _body;
27    std::string tabulation = indent(depth);
28
29    body.insert(0,tabulation);
30    for (size_t pos=body.find('\n',0); pos<body.length()-1; pos=body.find('\n',++pos))
31      body.insert(++pos,tabulation);
32
33    log_printf(FUNC,Behavioural,FUNCTION,"End");
34    return body;
35  };
36
37}; // end namespace behavioural         
38}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.