Home
last modified time | relevance | path

Searched refs:IDVal (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/MC/MCParser/
DAsmParser.cpp226 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
232 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
697 StringRef IDVal = getTok().getString(); in ParsePrimaryExpr() local
698 if (IDVal == "f" || IDVal == "b"){ in ParsePrimaryExpr()
700 IDVal == "f" ? 1 : 0); in ParsePrimaryExpr()
703 if(IDVal == "b" && Sym->isUndefined()) in ParsePrimaryExpr()
1005 StringRef IDVal; in ParseStatement() local
1017 IDVal = ""; in ParseStatement()
1020 IDVal = getTok().getString(); in ParseStatement()
1031 IDVal = "."; in ParseStatement()
[all …]
/external/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp59 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1667 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
1668 if (IDVal == ".word") in ParseDirective()
1670 else if (IDVal.startswith(".code")) in ParseDirective()
1671 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective()
1672 else if (IDVal.startswith(".intel_syntax")) { in ParseDirective()
1713 bool X86AsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) { in ParseDirectiveCode() argument
1714 if (IDVal == ".code32") { in ParseDirectiveCode()
1720 } else if (IDVal == ".code64") { in ParseDirectiveCode()
1727 return Error(L, "unexpected directive " + IDVal); in ParseDirectiveCode()
/external/llvm/lib/Target/MBlaze/AsmParser/
DMBlazeAsmParser.cpp521 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
522 if (IDVal == ".word") in ParseDirective()
/external/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp4585 StringRef IDVal = Parser.getTok().getIdentifier(); in parsePrefix() local
4586 if (IDVal == "lower16") { in parsePrefix()
4588 } else if (IDVal == "upper16") { in parsePrefix()
7356 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
7357 if (IDVal == ".word") in ParseDirective()
7359 else if (IDVal == ".thumb") in ParseDirective()
7361 else if (IDVal == ".arm") in ParseDirective()
7363 else if (IDVal == ".thumb_func") in ParseDirective()
7365 else if (IDVal == ".code") in ParseDirective()
7367 else if (IDVal == ".syntax") in ParseDirective()
[all …]