| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 197 StringRef IDVal, AsmToken ID, 557 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated); 559 bool parseDirectiveValue(StringRef IDVal, 561 bool parseDirectiveOctaValue(StringRef IDVal); // ".octa", ... 562 bool parseDirectiveRealValue(StringRef IDVal, 567 bool parseDirectiveSet(StringRef IDVal, bool allow_redef); 631 bool parseDirectiveSpace(StringRef IDVal); 634 bool parseDirectiveDCB(StringRef IDVal, unsigned Size); 635 bool parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &); 637 bool parseDirectiveDS(StringRef IDVal, unsigned Size); [all …]
|
| H A 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, 1606 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local 1608 std::pair<StringRef, StringRef> Split = IDVal.split('@'); in parsePrimaryExpr() 1610 if (Split.first.size() != IDVal.size()) { in parsePrimaryExpr() 1614 IDVal = Split.first; in parsePrimaryExpr() 1616 if (IDVal == "f" || IDVal == "b") { in parsePrimaryExpr() 1618 Ctx.getDirectionalLocalSymbol(IntVal, IDVal == "b"); in parsePrimaryExpr() [all …]
|
| H A D | DarwinAsmParser.cpp | 609 bool DarwinAsmParser::parseDirectiveLinkerOption(StringRef IDVal, SMLoc) { in parseDirectiveLinkerOption() argument 613 return TokError("expected string in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption() 625 return TokError("unexpected token in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/AsmParser/ |
| H A D | MSP430AsmParser.cpp | 438 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 439 if (IDVal.lower() == ".long") { in ParseDirective() 441 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective() 443 } else if (IDVal.lower() == ".byte") { in ParseDirective() 445 } else if (IDVal.lower() == ".refsym") { in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 1131 bool ParseDirectiveCode(StringRef IDVal, SMLoc L); 2077 StringRef IDVal = getTok().getString(); in ParseIntelExpression() local 2078 if (IDVal == "f" || IDVal == "b") { in ParseIntelExpression() 2080 getContext().getDirectionalLocalSymbol(IntVal, IDVal == "b"); in ParseIntelExpression() 2084 if (IDVal == "b" && Sym->isUndefined()) in ParseIntelExpression() 4605 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 4606 if (IDVal.startswith(".arch")) in ParseDirective() 4608 if (IDVal.startswith(".code")) in ParseDirective() 4609 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective() 4610 else if (IDVal.startswith(".att_syntax")) { in ParseDirective() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 5274 auto IDVal = DirectiveID.getIdentifier().lower(); in ParseDirective() local 5276 if (IDVal == ".arch") in ParseDirective() 5278 else if (IDVal == ".cpu") in ParseDirective() 5280 else if (IDVal == ".tlsdesccall") in ParseDirective() 5282 else if (IDVal == ".ltorg" || IDVal == ".pool") in ParseDirective() 5284 else if (IDVal == ".unreq") in ParseDirective() 5286 else if (IDVal == ".inst") in ParseDirective() 5288 else if (IDVal == ".cfi_negate_ra_state") in ParseDirective() 5290 else if (IDVal == ".cfi_b_key_frame") in ParseDirective() 5292 else if (IDVal == ".arch_extension") in ParseDirective() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/AsmParser/ |
| H A D | AVRAsmParser.cpp | 651 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 652 if (IDVal.lower() == ".long") { in ParseDirective() 654 } else if (IDVal.lower() == ".word" || IDVal.lower() == ".short") { in ParseDirective() 656 } else if (IDVal.lower() == ".byte") { in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/ |
| H A 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/AsmParser/ |
| H A D | PPCAsmParser.cpp | 1571 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 1572 if (IDVal == ".word") in ParseDirective() 1574 else if (IDVal == ".llong") in ParseDirective() 1576 else if (IDVal == ".tc") in ParseDirective() 1578 else if (IDVal == ".machine") in ParseDirective() 1580 else if (IDVal == ".abiversion") in ParseDirective() 1582 else if (IDVal == ".localentry") in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 6347 StringRef IDVal = Parser.getTok().getIdentifier(); in parsePrefix() local 6350 llvm::find_if(PrefixEntries, [&IDVal](const PrefixEntry &PE) { in parsePrefix() 6351 return PE.Spelling == IDVal; in parsePrefix() 11008 std::string IDVal = DirectiveID.getIdentifier().lower(); in ParseDirective() local 11009 if (IDVal == ".word") in ParseDirective() 11011 else if (IDVal == ".short" || IDVal == ".hword") in ParseDirective() 11013 else if (IDVal == ".thumb") in ParseDirective() 11015 else if (IDVal == ".arm") in ParseDirective() 11017 else if (IDVal == ".thumb_func") in ParseDirective() 11019 else if (IDVal == ".code") in ParseDirective() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/ |
| H A D | HexagonAsmParser.cpp | 661 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 662 if (IDVal.lower() == ".falign") in ParseDirective() 664 if ((IDVal.lower() == ".lcomm") || (IDVal.lower() == ".lcommon")) in ParseDirective() 666 if ((IDVal.lower() == ".comm") || (IDVal.lower() == ".common")) in ParseDirective() 668 if (IDVal.lower() == ".subsection") in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 5149 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 5152 if (IDVal == ".amdhsa_kernel") in ParseDirective() 5156 if (IDVal == AMDGPU::HSAMD::V3::AssemblerDirectiveBegin) in ParseDirective() 5159 if (IDVal == ".hsa_code_object_version") in ParseDirective() 5162 if (IDVal == ".hsa_code_object_isa") in ParseDirective() 5165 if (IDVal == ".amd_kernel_code_t") in ParseDirective() 5168 if (IDVal == ".amdgpu_hsa_kernel") in ParseDirective() 5171 if (IDVal == ".amd_amdgpu_isa") in ParseDirective() 5174 if (IDVal == AMDGPU::HSAMD::AssemblerDirectiveBegin) in ParseDirective() 5178 if (IDVal == ".amdgcn_target") in ParseDirective() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/AsmParser/ |
| H A D | SparcAsmParser.cpp | 760 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 762 if (IDVal == ".register") { in ParseDirective() 767 if (IDVal == ".proc") { in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/AsmParser/ |
| H A D | SystemZAsmParser.cpp | 1209 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 1211 if (IDVal == ".insn") in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/ |
| H A D | RISCVAsmParser.cpp | 1834 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 1836 if (IDVal == ".option") in ParseDirective() 1838 else if (IDVal == ".attribute") in ParseDirective()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 9073 SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos)); in visitStackmap() local 9075 cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64)); in visitStackmap() 9168 SDValue IDVal = getValue(CB.getArgOperand(PatchPointOpers::IDPos)); in visitPatchpoint() local 9170 cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64)); in visitPatchpoint()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelDAGToDAG.cpp | 4885 SDValue IDVal(ImDef, 0); in tryAsSingleRLDICL() local 4888 IDVal, Op0.getOperand(0), in tryAsSingleRLDICL()
|