Searched defs:IDVal (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp443 bool DarwinAsmParser::ParseDirectiveLinkerOption(StringRef IDVal, SMLoc) { argument
447 return TokError("expected string in '" + Twine(IDVal) + "' directive");
460 return TokError("unexpected token in '" + Twine(IDVal) + "' directive");
H A DAsmParser.cpp368 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
374 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef);
419 bool ParseDirectiveSpace(StringRef IDVal);
816 StringRef IDVal = getTok().getString(); local
818 std::pair<StringRef, StringRef> Split = IDVal.split('@');
820 if (Split.first.size() != IDVal.size()) {
826 IDVal = Split.first;
828 if (IDVal == "f" || IDVal == "b"){
830 IDVal
1136 StringRef IDVal; local
2140 ParseDirectiveSet(StringRef IDVal, bool allow_redef) argument
2213 ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated) argument
2303 StringRef IDVal = getTok().getString(); local
3309 ParseDirectiveSpace(StringRef IDVal) argument
[all...]
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp1758 StringRef IDVal = Parser.getTok().getIdentifier(); local
1759 std::string LowerID = IDVal.lower();
1999 StringRef IDVal = DirectiveID.getIdentifier(); local
2000 if (IDVal == ".hword")
2002 else if (IDVal == ".word")
2004 else if (IDVal == ".xword")
2006 else if (IDVal == ".tlsdesccall")
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1840 StringRef IDVal = DirectiveID.getString(); local
1842 if (IDVal == ".ent") {
1848 if (IDVal == ".end") {
1854 if (IDVal == ".frame") {
1860 if (IDVal == ".set") {
1864 if (IDVal == ".fmask") {
1870 if (IDVal == ".mask") {
1876 if (IDVal == ".gpword") {
1882 if (IDVal == ".word") {
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp1256 StringRef IDVal = DirectiveID.getIdentifier(); local
1257 if (IDVal == ".word")
1259 if (IDVal == ".llong")
1261 if (IDVal == ".tc")
1263 if (IDVal == ".machine")
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp518 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
2466 StringRef IDVal = DirectiveID.getIdentifier(); local
2467 if (IDVal == ".word")
2469 else if (IDVal.startswith(".code"))
2470 return ParseDirectiveCode(IDVal, DirectiveID.getLoc());
2471 else if (IDVal.startswith(".att_syntax")) {
2474 } else if (IDVal.startswith(".intel_syntax")) {
2515 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) { argument
2516 if (IDVal == ".code32") {
2522 } else if (IDVal
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp4563 StringRef IDVal = Parser.getTok().getIdentifier(); local
4564 if (IDVal == "lower16") {
4566 } else if (IDVal == "upper16") {
7564 StringRef IDVal = DirectiveID.getIdentifier(); local
7565 if (IDVal == ".word")
7567 else if (IDVal == ".thumb")
7569 else if (IDVal == ".arm")
7571 else if (IDVal == ".thumb_func")
7573 else if (IDVal == ".code")
7575 else if (IDVal
[all...]

Completed in 122 milliseconds