source: trunk/IPs/systemC/processor/Morpheo/Behavioural/include/Test.h @ 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: 682 bytes
Line 
1#ifndef morpheo_behavioural_Test_h
2#define morpheo_behavioural_Test_h
3
4/*
5 * $Id$
6 *
7 * [ Description ]
8 *
9 */
10
11#include <stdint.h>
12#include <math.h>
13
14namespace morpheo     {
15namespace behavioural {
16 
17  bool is_natural            (double   val);
18  bool is_positive           (double   val);
19  bool is_power2             (uint32_t val);
20  bool is_multiple           (uint32_t val1,
21                              uint32_t val2);
22  bool is_between_inclusive  (uint32_t val,
23                              uint32_t min,
24                              uint32_t max);
25  bool is_between_exclusive  (uint32_t val,
26                              uint32_t min,
27                              uint32_t max);
28}; // end namespace behavioural         
29}; // end namespace morpheo             
30
31#endif
Note: See TracBrowser for help on using the repository browser.