Home
last modified time | relevance | path

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

/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/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/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/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/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/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/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp3484 StringRef IDVal = Parser.getTok().getIdentifier(); in parsePrefix() local
3485 if (IDVal == "lower16") { in parsePrefix()
3487 } else if (IDVal == "upper16") { in parsePrefix()
4466 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
4467 if (IDVal == ".word") in ParseDirective()
4469 else if (IDVal == ".thumb") in ParseDirective()
4471 else if (IDVal == ".thumb_func") in ParseDirective()
4473 else if (IDVal == ".code") in ParseDirective()
4475 else if (IDVal == ".syntax") in ParseDirective()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp7276 SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos)); in visitStackmap() local
7278 cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64)); in visitStackmap()
7371 SDValue IDVal = getValue(CS->getOperand(PatchPointOpers::IDPos)); in visitPatchpoint() local
7373 cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64)); in visitPatchpoint()