Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Val

697     uint64_t Val = Lex.getCurIntVal();
703 return BitsRecTy::get(Val);
1166 std::string Val = Lex.getCurStrVal();
1171 Val += Lex.getCurStrVal();
1175 R = StringInit::get(Val);
1219 Record *NewRec = new Record("anonymous.val."+utostr(AnonCounter++),
1567 Init *Val = ParseValue(CurRec);
1568 if (Val == 0)
1582 Result.push_back(std::make_pair(Val, VarName));
1690 Init *Val = ParseValue(CurRec, Type);
1691 if (Val == 0 ||
1692 SetValue(CurRec, ValLoc, DeclName, std::vector<unsigned>(), Val))
1853 Init *Val = ParseValue(CurRec, Type);
1854 if (Val == 0) return true;
1860 return SetValue(CurRec, IdLoc, FieldName, BitList, Val);
2128 Init *Val = ParseValue(0);
2129 if (Val == 0) return std::vector<LetRecord>();
2132 Result.push_back(LetRecord(Name, Bits, Val, NameLoc));