Home | History | Annotate | Download | only in TableGen

Lines Matching refs:typeCode

955   char typeCode = '\0';
962 typeCode = 'p';
964 typeCode = T.isSigned() ? 's' : 'u';
966 typeCode = 'f';
969 switch (typeCode) {
975 typeCode = 'i';
980 typeCode = '\0';
984 if (typeCode != '\0')
985 S.push_back(typeCode);
1065 std::string typeCode = getInstTypeCode(BaseType, LocalCK);
1072 if (typeCode.size() > 0) {
1073 // If the name ends with _xN (N = 2,3,4), insert the typeCode before _xN.
1076 S.insert(S.length() - 3, "_" + typeCode);
1078 S += "_" + typeCode;