source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_binary_tree_goto_top_level.cpp @ 74

Last change on this file since 74 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)

  • Property svn:executable set to *
File size: 309 bytes
Line 
1#ifdef STATISTICS
2#include "Behavioural/include/Stat_binary_tree.h"
3
4namespace morpheo {
5namespace behavioural {
6  Stat_binary_tree * Stat_binary_tree::goto_top_level (void)
7  {
8    Stat_binary_tree * tree = this;
9
10    while (tree->_root != NULL)
11      tree = tree->_root;
12
13    return tree;
14  }
15
16};
17};
18#endif
Note: See TracBrowser for help on using the repository browser.