Ubuntu仮想ボックス環境でターミナルを使用して、Linuxを初めて使用します。これらのエラーが発生している理由と理由を理解できず、欠落している「;」と一致していないようです。または #define 競合。
gcc コンパイラから得られるエラーは次のとおりです。
my_predictor.h:82:42: error: template argument 2 is invalid
my_predictor.h:82:42: error: template argument 4 is invalid
my_predictor.h:84:9: error: expected unqualified-id before ‘for’
my_predictor.h:84:23: error: ‘g’ does not name a type
my_predictor.h:84:44: error: ‘g’ does not name a type
my_predictor.h:91:42: error: template argument 2 is invalid
my_predictor.h:91:42: error: template argument 4 is invalid
my_predictor.h:93:9: error: expected unqualified-id before ‘for’
my_predictor.h:93:23: error: ‘f’ does not name a type
my_predictor.h:93:39: error: ‘f’ does not name a type
my_predictor.h: In member function ‘virtual branch_update* local_predictor::predict(branch_info&)’:
my_predictor.h:107:57: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:111:40: error: invalid types ‘int[int]’ for array subscript
my_predictor.h: In member function ‘virtual void local_predictor::update(branch_update*, bool, unsigned int)’:
my_predictor.h:121:62: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:124:46: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:125:33: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:127:41: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:128:29: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:131:33: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:132:30: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:135:33: error: invalid types ‘int[int]’ for array subscript
my_predictor.h:136:30: error: invalid types ‘int[int]’ for array subscript
キーの問題は、インデックス キーを使用した Map コンストラクトの宣言と初期化、およびビットの文字列であるビットセット オブジェクトにあると思います。配列 [] 操作で後のエラーを作成しているようです (これは、cplusplus.com/reference/map サイトで見つけたものから有効であると思われます)。
これが私のコードです:
1:// my_predictor.h
// This file contains a sample gshare_predictor class.
// It is a simple 32,768-entry gshare with a history length of 15.
5:#include <bitset>
#include <map>
7:using namespace std;
64:class local_predictor : public branch_predictor {
65:public:
#define LHBITLEN 10
#define PREDCNTR 2
#define LOCHISTTABLERNG 4096
#define LOCPREDRNG 1024
70: local_update u;
branch_info bcopy;
// otherwise ints, where each will be multiplied by 10, then add 1 if taken/true. Initial test case to change if 10 bits long already
75: // ?correct location? Bit array of length 10 for local history table value entries
bitset<LHBITLEN> lhthistval;
bitset<PREDCNTR> lpcounter;
// initialize to 0's
80: // lhthistval.reset();
std::map<int, (bitset<LHBITLEN>) > lochisttab;
//map<int, (bitset<10>) > lht;
for (int g=0; g < LOCHISTTABLERNG; g++) {
85: //const int j = g;
lochisttab[g] = lhthistval.reset();
//lht.insert(pair<int, (bitset<LHBITLEN>)>(j, lhthistval.reset()));
}
90:
std::map<int, (bitset<PREDCNTR>) > locprediction;
//map<int, (bitset<2>) > locpredict;
for (int f=0; f < LOCPREDRNG; f++) {
//const int j = f;
95: //locpredict.insert(pair<int, (bitset<PREDCNTR>)>(j,lpcounter.reset()));
locprediction[f] = lpcounter.reset();
}
100: local_predictor (void) {
}
branch_update *predict (branch_info & b) {
bcopy = b;
105: // address for locpredict based on value by modulus (remainder) of branch address divide by 4096
int braddr = static_cast<int>(b.address % LOCHISTTABLERNG);
bitset<LHBITLEN> address = lochisttab[braddr];
// safe and compiler allow since it is only 10 bits long max?
int indx = static_cast<int>(address.to_ulong());
110: // use the MSB or Pos 1 in 2 bit array to set boolean Take/Don't
bool take = locprediction[indx].test(1);
u.direction_prediction (take);
u.target_prediction (0);
return &u;
115: }
void update (branch_update *u, bool taken, unsigned int target) {
if (bcopy.br_flags & BR_CONDITIONAL) {
120: int lhtaddress = bcopy.address % LOCHISTTABLERNG;
bitset<LHBITLEN> addr = lochisttab[lhtaddress];
int indx = static_cast<int>(addr.to_ulong());
for (int i=1; i < LHBITLEN; i++) {
bool prval = lochisttab[lhtaddress].test(i-1);
125: lochisttab[lhtaddress].set(i,prval);
}
bool prev = locprediction[indx].test(0);
locprediction[indx].set(1,prev);
130: if (taken) {
lochisttab[lhtaddress].set(0);
locprediction[indx].set(0);
}
else {
135: lochisttab[lhtaddress].reset(0);
locprediction[indx].reset(0);
}
}
}
};
編集:私は元々、マップ宣言のビットセット引数の周りに括弧がありませんでした。コンパイラは、「'for' の前に unqualified-id が必要です」という最初のエラーを出しました。テンプレート引数のエラーは、括弧が原因でした (しかし、最終的にビットセット データ型を潜在的に理解した結果だと思いました)。