Ignore:
Timestamp:
May 13, 2008, 8:04:50 PM (16 years ago)
Author:
rosiere
Message:

Change Address_manager :

  • before : pc_previous, pc_current, pc_next
  • now : pc_current, pc_next, pc_next_next.

pc_next is send at the prediction_unit, it return the instruction_enable and pc_next_next

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Stat_create_expr.cpp

    r81 r84  
    2020    _list_expr->push_back(expression);
    2121  }
     22
     23  void Stat::create_expr (std::string    varname,
     24                          std::string    expr,
     25                          counter_type_t type,
     26                          std::string    unit,
     27                          std::string    description,
     28                          bool           each_cycle)
     29  {
     30    if (type = TYPE_COUNTER)
     31      create_counter (varname,unit,description);
     32    else
     33      create_variable(varname);
     34
     35    create_expr(varname, expr, each_cycle);
     36  }
     37
    2238
    2339  void Stat::create_expr_average (std::string varname,
Note: See TracChangeset for help on using the changeset viewer.