Lines Matching refs:ValueCols

23 //  let ValueCols = [["true"], ["false"]]; }
48 // RowFields. These groups of instructions are later matched against ValueCols
64 // let ValueCols = [["true"], ["false"]]; }
71 // of columns in ValueCols (it is defined as a list<list<string> >. Therefore,
98 std::vector<ListInit*> ValueCols;
125 // Ex: ValueCols = [['true'],['false']] -- it results two columns in the
128 ListInit *ColValList = MapRec->getValueAsListInit("ValueCols");
133 MapRec->getName() + "' has empty " + "`ValueCols' field!");
138 // Make sure that all the sub-lists in 'ValueCols' have same number of
142 "', field `ValueCols' entries don't match with " +
144 ValueCols.push_back(ColI);
159 return ValueCols;
209 // on ValueCols and store them into MapTable.
283 const std::vector<ListInit*> &ValueCols = InstrMapDesc.getValueCols();
284 unsigned NumOfCols = ValueCols.size();
290 ListInit *CurValueCol = ValueCols[ColIdx];
366 const std::vector<ListInit*> &ValueCols = InstrMapDesc.getValueCols();
367 unsigned NumCol = ValueCols.size();
437 const std::vector<ListInit*> &ValueCols = InstrMapDesc.getValueCols();
444 if (ValueCols.size() > 1) {
445 for (unsigned i = 0, e = ValueCols.size(); i < e; i++) {
446 ListInit *ColumnI = ValueCols[i];
480 const std::vector<ListInit*> &ValueCols = InstrMapDesc.getValueCols();
483 if (ValueCols.size() > 1) {
513 ListInit *List = CurMap->getValueAsListInit("ValueCols");
514 std::vector<ListInit*> ValueCols;
522 "`ValueCols' entries don't match with the entries in 'ColFields' !");
523 ValueCols.push_back(ListJ);
529 ColFieldValueMap[ColName].push_back((ValueCols[k])->getElement(j));