source: trunk/IPs/systemC/processor/Morpheo/Common/include/Max.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: 402 bytes
Line 
1#ifndef morpheo_max
2#define morpheo_max
3
4/*
5 * $Id$
6 *
7 * with a stephane dubuisson initial idea
8 *
9 * [ Description ]
10 *
11 */
12
13#include <stdint.h>
14
15namespace morpheo {
16 
17  template<typename T> inline T max (const T * x, uint32_t size1)
18  {
19    T res = 0;
20
21    for (uint32_t i=0; i<size1; i++)
22      if (res<x[i])
23        res = x[i];
24
25    return res;
26  }
27 
28}; // end namespace morpheo             
29
30#endif
Note: See TracBrowser for help on using the repository browser.