Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:IDVal

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