Lines Matching refs:IDVal
723 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1337 StringRef IDVal = getTok().getString(); in ParseIntelExpression() local
1338 if (IDVal == "f" || IDVal == "b") { in ParseIntelExpression()
1340 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b"); in ParseIntelExpression()
1344 if (IDVal == "b" && Sym->isUndefined()) in ParseIntelExpression()
2913 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
2914 if (IDVal == ".word") in ParseDirective()
2916 else if (IDVal.startswith(".code")) in ParseDirective()
2917 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective()
2918 else if (IDVal.startswith(".att_syntax")) { in ParseDirective()
2929 } else if (IDVal.startswith(".intel_syntax")) { in ParseDirective()
2940 } else if (IDVal == ".even") in ParseDirective()
3002 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) { in ParseDirectiveCode() argument
3004 if (IDVal == ".code16") { in ParseDirectiveCode()
3010 } else if (IDVal == ".code32") { in ParseDirectiveCode()
3016 } else if (IDVal == ".code64") { in ParseDirectiveCode()
3023 Error(L, "unknown directive " + IDVal); in ParseDirectiveCode()