Searched refs:IDVal (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp238 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
244 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
736 StringRef IDVal = getTok().getString(); local
737 if (IDVal == "f" || IDVal == "b"){
739 IDVal == "f" ? 1 : 0);
742 if (IDVal == "b" && Sym->isUndefined())
1044 StringRef IDVal; local
1056 IDVal = "";
1059 IDVal
1802 ParseDirectiveSet(StringRef IDVal, bool allow_redef) argument
1875 ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) argument
1965 StringRef IDVal = getTok().getString(); local
2953 ParseDirectiveCFIPersonalityOrLsda(StringRef IDVal, SMLoc DirectiveLoc) argument
2985 ParseDirectiveCFIRememberState(StringRef IDVal, SMLoc DirectiveLoc) argument
2993 ParseDirectiveCFIRestoreState(StringRef IDVal, SMLoc DirectiveLoc) argument
3001 ParseDirectiveCFISameValue(StringRef IDVal, SMLoc DirectiveLoc) argument
3015 ParseDirectiveCFIRestore(StringRef IDVal, SMLoc DirectiveLoc) argument
3028 ParseDirectiveCFIEscape(StringRef IDVal, SMLoc DirectiveLoc) argument
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp61 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1743 StringRef IDVal = DirectiveID.getIdentifier(); local
1744 if (IDVal == ".word")
1746 else if (IDVal.startswith(".code"))
1747 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
1748 else if (IDVal.startswith(".att_syntax")) {
1751 } else if (IDVal.startswith(".intel_syntax")) {
1792 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) { argument
1793 if (IDVal == ".code32") {
1799 } else if (IDVal
[all...]
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp526 StringRef IDVal = DirectiveID.getIdentifier(); local
527 if (IDVal == ".word")
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp535 StringRef IDVal; local
536 Parser->ParseIdentifier(IDVal);
540 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
541 OpcodeStr.push_back(tolower(IDVal[i]));
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp4641 StringRef IDVal = Parser.getTok().getIdentifier(); local
4642 if (IDVal == "lower16") {
4644 } else if (IDVal == "upper16") {
7552 StringRef IDVal = DirectiveID.getIdentifier(); local
7553 if (IDVal == ".word")
7555 else if (IDVal == ".thumb")
7557 else if (IDVal == ".arm")
7559 else if (IDVal == ".thumb_func")
7561 else if (IDVal == ".code")
7563 else if (IDVal
[all...]

Completed in 563 milliseconds