Использование типа карты создает ошибку gcc: ожидаемый безусловный идентификатор перед 'for'

Я новичок в Linux, используя терминал в среде Ubuntu virual box. Я не могу понять, что и почему происходят эти ошибки, и они, похоже, не совпадают с отсутствующими ';' или # определить конфликт.

Вот ошибки, которые я получаю от компилятора 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 с помощью ключа индекса, а затем объекта битового набора, который представляет собой строку битов. Кажется, он создает более поздние ошибки с операциями array [] (которые должны быть действительными из того, что я нашел на сайте 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);
            }
        }
    }

};

Редактировать: у меня изначально не было никаких паратезов вокруг аргументов набора битов для объявлений карты. Компилятор выдал первую ошибку "ожидаемый неквалифицированный идентификатор перед" для "". Ошибки аргументов шаблона возникли из-за искажений (но я подумал, что это результат из-за окончательного понимания типа данных bitset).

2 ответа

Я бы догадался о ложных скобках вокруг (bitset<LHBITLEN>) в строке 82 есть проблема - они, вероятно, приводят к тому, что компилятор пытается проанализировать его как параметр значения шаблона, а не как параметр типа, а затем запутывается при попытке восстановления.

Как часто бывает в случае с каскадом ошибок, подобным этому, релевантна только первая и говорит вам, в чем проблема. Последние вызваны тем, что компилятор выбрасывает слишком много токенов, пытаясь восстановить значимый контекст для продолжения, запутываясь в том, на что он смотрит. Это, вероятно, выбросило > а также ; и думает, что все еще пытается разобрать список параметров шаблона, когда он видит for

Это синтаксис, который вам нужен:

`map<int, bitset<10> > intBitsetMap;  //Note the space between the two: > >`
Другие вопросы по тегам