| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| D | AsmParser.cpp | 197 StringRef IDVal, AsmToken ID, 558 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated); 560 bool parseDirectiveValue(StringRef IDVal, 562 bool parseDirectiveOctaValue(StringRef IDVal); // ".octa", ... 563 bool parseDirectiveRealValue(StringRef IDVal, 568 bool parseDirectiveSet(StringRef IDVal, bool allow_redef); 633 bool parseDirectiveSpace(StringRef IDVal); 636 bool parseDirectiveDCB(StringRef IDVal, unsigned Size); 637 bool parseDirectiveRealDCB(StringRef IDVal, const fltSemantics &); 639 bool parseDirectiveDS(StringRef IDVal, unsigned Size); [all …]
|
| D | MasmParser.cpp | 837 bool parseDirectiveAscii(StringRef IDVal, bool ZeroTerminated); 849 bool parseDirectiveValue(StringRef IDVal, unsigned Size); 856 bool parseDirectiveRealValue(StringRef IDVal, const fltSemantics &Semantics, 917 bool parseDirectiveEquate(StringRef IDVal, StringRef Name, 1728 StringRef IDVal = getTok().getString(); in parsePrimaryExpr() local 1730 std::pair<StringRef, StringRef> Split = IDVal.split('@'); in parsePrimaryExpr() 1732 if (Split.first.size() != IDVal.size()) { in parsePrimaryExpr() 1736 IDVal = Split.first; in parsePrimaryExpr() 1738 if (IDVal == "f" || IDVal == "b") { in parsePrimaryExpr() 1740 Ctx.getDirectionalLocalSymbol(IntVal, IDVal == "b"); in parsePrimaryExpr() [all …]
|
| 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()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/ |
| 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()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| 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() 4606 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 4607 if (IDVal.startswith(".arch")) in ParseDirective() 4609 if (IDVal.startswith(".code")) in ParseDirective() 4610 return ParseDirectiveCode(IDVal, DirectiveID.getLoc()); in ParseDirective() 4611 else if (IDVal.startswith(".att_syntax")) { in ParseDirective() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| D | AArch64AsmParser.cpp | 5858 auto IDVal = DirectiveID.getIdentifier().lower(); in ParseDirective() local 5860 if (IDVal == ".arch") in ParseDirective() 5862 else if (IDVal == ".cpu") in ParseDirective() 5864 else if (IDVal == ".tlsdesccall") in ParseDirective() 5866 else if (IDVal == ".ltorg" || IDVal == ".pool") in ParseDirective() 5868 else if (IDVal == ".unreq") in ParseDirective() 5870 else if (IDVal == ".inst") in ParseDirective() 5872 else if (IDVal == ".cfi_negate_ra_state") in ParseDirective() 5874 else if (IDVal == ".cfi_b_key_frame") in ParseDirective() 5876 else if (IDVal == ".arch_extension") in ParseDirective() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/ |
| 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()
|
| /freebsd-12-stable/contrib/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 …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/ |
| D | PPCAsmParser.cpp | 1584 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 1585 if (IDVal == ".word") in ParseDirective() 1587 else if (IDVal == ".llong") in ParseDirective() 1589 else if (IDVal == ".tc") in ParseDirective() 1591 else if (IDVal == ".machine") in ParseDirective() 1593 else if (IDVal == ".abiversion") in ParseDirective() 1595 else if (IDVal == ".localentry") in ParseDirective()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
| 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() 11009 std::string IDVal = DirectiveID.getIdentifier().lower(); in ParseDirective() local 11010 if (IDVal == ".word") in ParseDirective() 11012 else if (IDVal == ".short" || IDVal == ".hword") in ParseDirective() 11014 else if (IDVal == ".thumb") in ParseDirective() 11016 else if (IDVal == ".arm") in ParseDirective() 11018 else if (IDVal == ".thumb_func") in ParseDirective() 11020 else if (IDVal == ".code") in ParseDirective() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
| 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()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/ |
| D | SparcAsmParser.cpp | 760 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 762 if (IDVal == ".register") { in ParseDirective() 767 if (IDVal == ".proc") { in ParseDirective()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
| D | AMDGPUAsmParser.cpp | 5188 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 5191 if (IDVal == ".amdhsa_kernel") in ParseDirective() 5195 if (IDVal == AMDGPU::HSAMD::V3::AssemblerDirectiveBegin) in ParseDirective() 5198 if (IDVal == ".hsa_code_object_version") in ParseDirective() 5201 if (IDVal == ".hsa_code_object_isa") in ParseDirective() 5204 if (IDVal == ".amd_kernel_code_t") in ParseDirective() 5207 if (IDVal == ".amdgpu_hsa_kernel") in ParseDirective() 5210 if (IDVal == ".amd_amdgpu_isa") in ParseDirective() 5213 if (IDVal == AMDGPU::HSAMD::AssemblerDirectiveBegin) in ParseDirective() 5217 if (IDVal == ".amdgcn_target") in ParseDirective() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/ |
| D | SystemZAsmParser.cpp | 1209 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local 1211 if (IDVal == ".insn") in ParseDirective()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/ |
| D | RISCVAsmParser.cpp | 1834 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local 1836 if (IDVal == ".option") in ParseDirective() 1838 else if (IDVal == ".attribute") in ParseDirective()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | SelectionDAGBuilder.cpp | 9131 SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos)); in visitStackmap() local 9133 cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64)); in visitStackmap() 9226 SDValue IDVal = getValue(CB.getArgOperand(PatchPointOpers::IDPos)); in visitPatchpoint() local 9228 cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64)); in visitPatchpoint()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| D | PPCISelDAGToDAG.cpp | 4881 SDValue IDVal(ImDef, 0); in tryAsSingleRLDICL() local 4884 IDVal, Op0.getOperand(0), in tryAsSingleRLDICL()
|