Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:IDVal

686   bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1150 StringRef IDVal = getTok().getString();
1151 if (IDVal == "f" || IDVal == "b") {
1153 getContext().GetDirectionalLocalSymbol(IntVal, IDVal == "b");
1157 if (IDVal == "b" && Sym->isUndefined())
2525 StringRef IDVal = DirectiveID.getIdentifier();
2526 if (IDVal == ".word")
2528 else if (IDVal.startswith(".code"))
2529 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
2530 else if (IDVal.startswith(".att_syntax")) {
2533 } else if (IDVal.startswith(".intel_syntax")) {
2574 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) {
2575 if (IDVal == ".code16") {
2581 } else if (IDVal == ".code32") {
2587 } else if (IDVal == ".code64") {
2594 Error(L, "unknown directive " + IDVal);