-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtage.h
35 lines (28 loc) · 823 Bytes
/
tage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// Created by toby on 27/02/19.
//
#ifndef BRANCH_PREDICTOR_TAGE_H
#define BRANCH_PREDICTOR_TAGE_H
#include <stdint-gcc.h>
#include "predictor.h"
#include "tagged_line.h"
#include "tagged_component.h"
class tage : public predictor {
public:
tage();
~tage();
int predict(unsigned int addr, int taken);
//TODO: set size
unsigned int get_size() {return 0;}
private:
char *base_predictor;
tagged_component *tagged_components;
unsigned int tagged_entries;
unsigned int base_predictor_entries;
unsigned int hash2(int i, int j, int n);
unsigned int hash3(unsigned int i, uint64_t j, uint64_t k, unsigned int n);
uint64_t global_history1;
uint64_t global_history2;
unsigned int history_lengths[7] = {5, 9, 15, 25, 44, 76, 127};
};
#endif //BRANCH_PREDICTOR_TAGE_H