/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 539 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated); 541 bool parseDirectiveValue(StringRef IDVal, 543 bool parseDirectiveOctaValue(StringRef IDVal); // ".octa", ... 544 bool parseDirectiveRealValue(StringRef IDVal, 549 bool parseDirectiveSet(StringRef IDVal, bool allow_redef); 613 bool parseDirectiveSpace(StringRef IDVal); 616 bool parseDirectiveDCB(StringRef IDVal, unsigned Size); 617 bool parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &); 619 bool parseDirectiveDS(StringRef IDVal, unsigned Size); 1191 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local [all …]
|
/external/llvm-project/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 539 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated); 541 bool parseDirectiveValue(StringRef IDVal, 543 bool parseDirectiveOctaValue(StringRef IDVal); // ".octa", ... 544 bool parseDirectiveRealValue(StringRef IDVal, 549 bool parseDirectiveSet(StringRef IDVal, bool allow_redef); 613 bool parseDirectiveSpace(StringRef IDVal); 616 bool parseDirectiveDCB(StringRef IDVal, unsigned Size); 617 bool parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &); 619 bool parseDirectiveDS(StringRef IDVal, unsigned Size); 1197 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local [all …]
|
D | MasmParser.cpp | 787 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated); 799 bool parseDirectiveValue(StringRef IDVal, unsigned Size); 806 bool parseDirectiveRealValue(StringRef IDVal, const fltSemantics &Semantics, 867 bool parseDirectiveEquate(StringRef IDVal, StringRef Name, 1598 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local 1600 std::pair<StringRef, StringRef> Split = IDVal.split('@'); in parsePrimaryExpr() 1602 if (Split.first.size() != IDVal.size()) { in parsePrimaryExpr() 1606 IDVal = Split.first; in parsePrimaryExpr() 1608 if (IDVal == "f" || IDVal == "b") { in parsePrimaryExpr() 1610 Ctx.getDirectionalLocalSymbol(IntVal, IDVal == "b"); in parsePrimaryExpr() [all …]
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 422 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 …]
|
D | DarwinAsmParser.cpp | 528 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-10.0/llvm/lib/Target/MSP430/AsmParser/ |
D | MSP430AsmParser.cpp | 422 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 423 if (IDVal.lower() == ".long") { in ParseDirective() 425 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective() 427 } else if (IDVal.lower() == ".byte") { in ParseDirective() 429 } else if (IDVal.lower() == ".refsym") { in ParseDirective()
|
/external/llvm-project/llvm/lib/Target/MSP430/AsmParser/ |
D | MSP430AsmParser.cpp | 439 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 440 if (IDVal.lower() == ".long") { in ParseDirective() 442 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective() 444 } else if (IDVal.lower() == ".byte") { in ParseDirective() 446 } else if (IDVal.lower() == ".refsym") { in ParseDirective()
|
/external/llvm-project/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 1131 bool ParseDirectiveCode(StringRef IDVal, SMLoc L); 2074 StringRef IDVal = getTok().getString(); in ParseIntelExpression() local 2075 if (IDVal == "f" || IDVal == "b") { in ParseIntelExpression() 2077 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b"); in ParseIntelExpression() 2081 if (IDVal == "b" && Sym->isUndefined()) in ParseIntelExpression() 4600 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 4601 if (IDVal.startswith(".arch")) in ParseDirective() 4603 if (IDVal.startswith(".code")) in ParseDirective() 4604 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective() 4605 else if (IDVal.startswith(".att_syntax")) { in ParseDirective() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 905 bool ParseDirectiveCode(StringRef IDVal, SMLoc L); 1585 StringRef IDVal = getTok().getString(); in ParseIntelExpression() local 1586 if (IDVal == "f" || IDVal == "b") { in ParseIntelExpression() 1588 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b"); in ParseIntelExpression() 1592 if (IDVal == "b" && Sym->isUndefined()) in ParseIntelExpression() 3620 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 3621 if (IDVal.startswith(".code")) in ParseDirective() 3622 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective() 3623 else if (IDVal.startswith(".att_syntax")) { in ParseDirective() 3634 } else if (IDVal.startswith(".intel_syntax")) { in ParseDirective() [all …]
|
/external/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
D | AArch64AsmParser.cpp | 5156 auto IDVal = DirectiveID.getIdentifier().lower(); in ParseDirective() local 5158 if (IDVal == ".arch") in ParseDirective() 5160 else if (IDVal == ".cpu") in ParseDirective() 5162 else if (IDVal == ".tlsdesccall") in ParseDirective() 5164 else if (IDVal == ".ltorg" || IDVal == ".pool") in ParseDirective() 5166 else if (IDVal == ".unreq") in ParseDirective() 5168 else if (IDVal == ".inst") in ParseDirective() 5170 else if (IDVal == ".cfi_negate_ra_state") in ParseDirective() 5172 else if (IDVal == ".cfi_b_key_frame") in ParseDirective() 5174 else if (IDVal == ".arch_extension") in ParseDirective() [all …]
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 723 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/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/AsmParser/ |
D | AVRAsmParser.cpp | 632 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 633 if (IDVal.lower() == ".long") { in ParseDirective() 635 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective() 637 } else if (IDVal.lower() == ".byte") { in ParseDirective()
|
/external/llvm-project/llvm/lib/Target/AVR/AsmParser/ |
D | AVRAsmParser.cpp | 652 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 653 if (IDVal.lower() == ".long") { in ParseDirective() 655 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective() 657 } else if (IDVal.lower() == ".byte") { in ParseDirective()
|
/external/llvm/lib/Target/Sparc/AsmParser/ |
D | SparcAsmParser.cpp | 665 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/ |
D | HexagonAsmParser.cpp | 863 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/include/llvm/IR/ |
D | Statepoint.h | 107 const Value *IDVal = getCallSite().getArgument(IDPos); in getID() local 108 return cast<ConstantInt>(IDVal)->getZExtValue(); in getID()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Statepoint.h | 119 const Value *IDVal = getCall()->getArgOperand(IDPos); in getID() local 120 return cast<ConstantInt>(IDVal)->getZExtValue(); in getID()
|
/external/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 6057 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/lib/Target/AMDGPU/AsmParser/ |
D | AMDGPUAsmParser.cpp | 1373 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/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/AsmParser/ |
D | PPCAsmParser.cpp | 1624 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 1626 if (IDVal == ".machine") in ParseDirective() 1630 } else if (IDVal == ".word") in ParseDirective() 1632 else if (IDVal == ".llong") in ParseDirective() 1634 else if (IDVal == ".tc") in ParseDirective() 1636 else if (IDVal == ".machine") in ParseDirective() 1638 else if (IDVal == ".abiversion") in ParseDirective() 1640 else if (IDVal == ".localentry") in ParseDirective()
|
/external/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 5331 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/ |
D | AArch64AsmParser.cpp | 4161 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/llvm-project/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 8571 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 8573 if (IDVal == ".cpadd") { in ParseDirective() 8577 if (IDVal == ".cpload") { in ParseDirective() 8581 if (IDVal == ".cprestore") { in ParseDirective() 8585 if (IDVal == ".cplocal") { in ParseDirective() 8589 if (IDVal == ".ent") { in ParseDirective() 8639 if (IDVal == ".end") { in ParseDirective() 8668 if (IDVal == ".frame") { in ParseDirective() 8740 if (IDVal == ".set") { in ParseDirective() 8745 if (IDVal == ".mask" || IDVal == ".fmask") { in ParseDirective() [all …]
|
/external/llvm-project/llvm/lib/Target/PowerPC/AsmParser/ |
D | PPCAsmParser.cpp | 1586 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 1587 if (IDVal == ".word") in ParseDirective() 1589 else if (IDVal == ".llong") in ParseDirective() 1591 else if (IDVal == ".tc") in ParseDirective() 1593 else if (IDVal == ".machine") in ParseDirective() 1595 else if (IDVal == ".abiversion") in ParseDirective() 1597 else if (IDVal == ".localentry") in ParseDirective()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/ |
D | MipsAsmParser.cpp | 8324 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 8326 if (IDVal == ".cpload") { in ParseDirective() 8330 if (IDVal == ".cprestore") { in ParseDirective() 8334 if (IDVal == ".cplocal") { in ParseDirective() 8338 if (IDVal == ".ent") { in ParseDirective() 8388 if (IDVal == ".end") { in ParseDirective() 8417 if (IDVal == ".frame") { in ParseDirective() 8489 if (IDVal == ".set") { in ParseDirective() 8494 if (IDVal == ".mask" || IDVal == ".fmask") { in ParseDirective() 8545 if (IDVal == ".mask") in ParseDirective() [all …]
|