Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DAsmParser.cpp209 bool ParseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
215 bool ParseDirectiveSet(StringRef IDVal, bool allow_redef); // ".set", ".equ", ".equiv"
642 StringRef IDVal = getTok().getString(); in ParsePrimaryExpr() local
643 if (IDVal == "f" || IDVal == "b"){ in ParsePrimaryExpr()
645 IDVal == "f" ? 1 : 0); in ParsePrimaryExpr()
648 if(IDVal == "b" && Sym->isUndefined()) in ParsePrimaryExpr()
952 StringRef IDVal; in ParseStatement() local
964 IDVal = ""; in ParseStatement()
967 IDVal = getTok().getString(); in ParseStatement()
978 IDVal = "."; in ParseStatement()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp519 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
521 bool parseDirectiveValue(StringRef IDVal,
523 bool parseDirectiveOctaValue(StringRef IDVal); // ".octa", ...
524 bool parseDirectiveRealValue(StringRef IDVal,
529 bool parseDirectiveSet(StringRef IDVal, bool allow_redef);
592 bool parseDirectiveSpace(StringRef IDVal);
595 bool parseDirectiveDCB(StringRef IDVal, unsigned Size);
596 bool parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &);
598 bool parseDirectiveDS(StringRef IDVal, unsigned Size);
1151 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local
[all …]
DDarwinAsmParser.cpp604 bool DarwinAsmParser::parseDirectiveLinkerOption(StringRef IDVal, SMLoc) { in parseDirectiveLinkerOption() argument
608 return TokError("expected string in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
620 return TokError("unexpected token in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp422 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated);
430 bool parseDirectiveSet(StringRef IDVal, bool allow_redef);
487 bool parseDirectiveSpace(StringRef IDVal);
982 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local
984 std::pair<StringRef, StringRef> Split = IDVal.split('@'); in parsePrimaryExpr()
986 if (Split.first.size() != IDVal.size()) { in parsePrimaryExpr()
990 IDVal = Split.first; in parsePrimaryExpr()
992 if (IDVal == "f" || IDVal == "b") { in parsePrimaryExpr()
994 Ctx.getDirectionalLocalSymbol(IntVal, IDVal == "b"); in parsePrimaryExpr()
996 if (IDVal == "b" && Sym->isUndefined()) in parsePrimaryExpr()
[all …]
DDarwinAsmParser.cpp528 bool DarwinAsmParser::parseDirectiveLinkerOption(StringRef IDVal, SMLoc) { in parseDirectiveLinkerOption() argument
532 return TokError("expected string in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
545 return TokError("unexpected token in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
/external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
DX86AsmParser.cpp50 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1122 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
1123 if (IDVal == ".word") in ParseDirective()
1125 else if (IDVal.startswith(".code")) in ParseDirective()
1126 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective()
1157 bool X86ATTAsmParser::ParseDirectiveCode(StringRef IDVal, SMLoc L) { in ParseDirectiveCode() argument
1158 if (IDVal == ".code32") { in ParseDirectiveCode()
1164 } else if (IDVal == ".code64") { in ParseDirectiveCode()
1171 return Error(L, "unexpected directive " + IDVal); in ParseDirectiveCode()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp848 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1499 StringRef IDVal = getTok().getString(); in ParseIntelExpression() local
1500 if (IDVal == "f" || IDVal == "b") { in ParseIntelExpression()
1502 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b"); in ParseIntelExpression()
1506 if (IDVal == "b" && Sym->isUndefined()) in ParseIntelExpression()
3281 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
3282 if (IDVal.startswith(".code")) in ParseDirective()
3283 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective()
3284 else if (IDVal.startswith(".att_syntax")) { in ParseDirective()
3296 } else if (IDVal.startswith(".intel_syntax")) { in ParseDirective()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/AsmParser/
DAVRAsmParser.cpp612 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
613 if (IDVal.lower() == ".long") { in ParseDirective()
615 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective()
617 } else if (IDVal.lower() == ".byte") { in ParseDirective()
/external/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp723 bool ParseDirectiveCode(StringRef IDVal, SMLoc L);
1337 StringRef IDVal = getTok().getString(); in ParseIntelExpression() local
1338 if (IDVal == "f" || IDVal == "b") { in ParseIntelExpression()
1340 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b"); in ParseIntelExpression()
1344 if (IDVal == "b" && Sym->isUndefined()) in ParseIntelExpression()
2913 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
2914 if (IDVal == ".word") in ParseDirective()
2916 else if (IDVal.startswith(".code")) in ParseDirective()
2917 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective()
2918 else if (IDVal.startswith(".att_syntax")) { in ParseDirective()
[all …]
/external/llvm/lib/Target/Sparc/AsmParser/
DSparcAsmParser.cpp665 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
667 if (IDVal == ".byte") in ParseDirective()
670 if (IDVal == ".half") in ParseDirective()
673 if (IDVal == ".word") in ParseDirective()
676 if (IDVal == ".nword") in ParseDirective()
679 if (is64Bit() && IDVal == ".xword") in ParseDirective()
682 if (IDVal == ".register") { in ParseDirective()
687 if (IDVal == ".proc") { in ParseDirective()
/external/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp863 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
864 if ((IDVal.lower() == ".word") || (IDVal.lower() == ".4byte")) in ParseDirective()
866 if (IDVal.lower() == ".short" || IDVal.lower() == ".hword" || in ParseDirective()
867 IDVal.lower() == ".half") in ParseDirective()
869 if (IDVal.lower() == ".falign") in ParseDirective()
871 if ((IDVal.lower() == ".lcomm") || (IDVal.lower() == ".lcommon")) in ParseDirective()
873 if ((IDVal.lower() == ".comm") || (IDVal.lower() == ".common")) in ParseDirective()
875 if (IDVal.lower() == ".subsection") in ParseDirective()
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp6057 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
6059 if (IDVal == ".cpload") { in ParseDirective()
6063 if (IDVal == ".cprestore") { in ParseDirective()
6067 if (IDVal == ".dword") { in ParseDirective()
6071 if (IDVal == ".ent") { in ParseDirective()
6121 if (IDVal == ".end") { in ParseDirective()
6150 if (IDVal == ".frame") { in ParseDirective()
6222 if (IDVal == ".set") { in ParseDirective()
6227 if (IDVal == ".mask" || IDVal == ".fmask") { in ParseDirective()
6278 if (IDVal == ".mask") in ParseDirective()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DStatepoint.h127 const Value *IDVal = getCallSite().getArgument(IDPos); in getID() local
128 return cast<ConstantInt>(IDVal)->getZExtValue(); in getID()
/external/llvm/include/llvm/IR/
DStatepoint.h107 const Value *IDVal = getCallSite().getArgument(IDPos); in getID() local
108 return cast<ConstantInt>(IDVal)->getZExtValue(); in getID()
/external/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp1373 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
1375 if (IDVal == ".hsa_code_object_version") in ParseDirective()
1378 if (IDVal == ".hsa_code_object_isa") in ParseDirective()
1381 if (IDVal == ".amd_kernel_code_t") in ParseDirective()
1384 if (IDVal == ".hsatext") in ParseDirective()
1387 if (IDVal == ".amdgpu_hsa_kernel") in ParseDirective()
1390 if (IDVal == ".amdgpu_hsa_module_global") in ParseDirective()
1393 if (IDVal == ".amdgpu_hsa_program_global") in ParseDirective()
1396 if (IDVal == ".hsadata_global_agent") in ParseDirective()
1399 if (IDVal == ".hsadata_global_program") in ParseDirective()
[all …]
/external/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp5331 StringRef IDVal = Parser.getTok().getIdentifier(); in parsePrefix() local
5335 [&IDVal](const PrefixEntry &PE) { in parsePrefix()
5336 return PE.Spelling == IDVal; in parsePrefix()
8956 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
8957 if (IDVal == ".word") in ParseDirective()
8959 else if (IDVal == ".short" || IDVal == ".hword") in ParseDirective()
8961 else if (IDVal == ".thumb") in ParseDirective()
8963 else if (IDVal == ".arm") in ParseDirective()
8965 else if (IDVal == ".thumb_func") in ParseDirective()
8967 else if (IDVal == ".code") in ParseDirective()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp5550 StringRef IDVal = Parser.getTok().getIdentifier(); in parsePrefix() local
5554 [&IDVal](const PrefixEntry &PE) { in parsePrefix()
5555 return PE.Spelling == IDVal; in parsePrefix()
9325 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
9326 if (IDVal == ".word") in ParseDirective()
9328 else if (IDVal == ".short" || IDVal == ".hword") in ParseDirective()
9330 else if (IDVal == ".thumb") in ParseDirective()
9332 else if (IDVal == ".arm") in ParseDirective()
9334 else if (IDVal == ".thumb_func") in ParseDirective()
9336 else if (IDVal == ".code") in ParseDirective()
[all …]
/external/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp4161 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
4163 if (IDVal == ".arch") in ParseDirective()
4165 if (IDVal == ".cpu") in ParseDirective()
4167 if (IDVal == ".hword") in ParseDirective()
4169 if (IDVal == ".word") in ParseDirective()
4171 if (IDVal == ".xword") in ParseDirective()
4173 if (IDVal == ".tlsdesccall") in ParseDirective()
4175 if (IDVal == ".ltorg" || IDVal == ".pool") in ParseDirective()
4177 if (IDVal == ".unreq") in ParseDirective()
4181 if (IDVal == ".inst") in ParseDirective()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp7931 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
7933 if (IDVal == ".cpload") { in ParseDirective()
7937 if (IDVal == ".cprestore") { in ParseDirective()
7941 if (IDVal == ".ent") { in ParseDirective()
7991 if (IDVal == ".end") { in ParseDirective()
8020 if (IDVal == ".frame") { in ParseDirective()
8092 if (IDVal == ".set") { in ParseDirective()
8097 if (IDVal == ".mask" || IDVal == ".fmask") { in ParseDirective()
8148 if (IDVal == ".mask") in ParseDirective()
8155 if (IDVal == ".nan") in ParseDirective()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/
DMBlazeAsmParser.cpp524 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
525 if (IDVal == ".word") in ParseDirective()
/external/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp1740 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
1742 if (IDVal == ".word") in ParseDirective()
1744 if (IDVal == ".llong") in ParseDirective()
1746 if (IDVal == ".tc") in ParseDirective()
1748 if (IDVal == ".machine") in ParseDirective()
1750 if (IDVal == ".abiversion") in ParseDirective()
1752 if (IDVal == ".localentry") in ParseDirective()
1755 if (IDVal == ".machine") in ParseDirective()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp1788 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
1790 if (IDVal == ".machine") in ParseDirective()
1794 } else if (IDVal == ".word") in ParseDirective()
1796 else if (IDVal == ".llong") in ParseDirective()
1798 else if (IDVal == ".tc") in ParseDirective()
1800 else if (IDVal == ".machine") in ParseDirective()
1802 else if (IDVal == ".abiversion") in ParseDirective()
1804 else if (IDVal == ".localentry") in ParseDirective()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp656 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
657 if (IDVal.lower() == ".falign") in ParseDirective()
659 if ((IDVal.lower() == ".lcomm") || (IDVal.lower() == ".lcommon")) in ParseDirective()
661 if ((IDVal.lower() == ".comm") || (IDVal.lower() == ".common")) in ParseDirective()
663 if (IDVal.lower() == ".subsection") in ParseDirective()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp4863 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
4865 if (IDVal == ".arch") in ParseDirective()
4867 else if (IDVal == ".cpu") in ParseDirective()
4869 else if (IDVal == ".tlsdesccall") in ParseDirective()
4871 else if (IDVal == ".ltorg" || IDVal == ".pool") in ParseDirective()
4873 else if (IDVal == ".unreq") in ParseDirective()
4875 else if (IDVal == ".inst") in ParseDirective()
4878 if (IDVal == MCLOHDirectiveName()) in ParseDirective()
4879 parseDirectiveLOH(IDVal, Loc); in ParseDirective()
5135 bool AArch64AsmParser::parseDirectiveLOH(StringRef IDVal, SMLoc Loc) { in parseDirectiveLOH() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/AsmParser/
DSparcAsmParser.cpp690 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
692 if (IDVal == ".register") { in ParseDirective()
697 if (IDVal == ".proc") { in ParseDirective()

12