Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmParser.cpp197 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 DMasmParser.cpp787 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 DDarwinAsmParser.cpp609 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 DMSP430AsmParser.cpp438 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 DX86AsmParser.cpp1131 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 DAArch64AsmParser.cpp5274 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 DAVRAsmParser.cpp651 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 DMipsAsmParser.cpp8571 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 DPPCAsmParser.cpp1571 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 DARMAsmParser.cpp6347 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 DHexagonAsmParser.cpp661 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 DAMDGPUAsmParser.cpp5149 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 DSparcAsmParser.cpp760 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 DSystemZAsmParser.cpp1209 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 DRISCVAsmParser.cpp1834 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 DSelectionDAGBuilder.cpp9073 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 DPPCISelDAGToDAG.cpp4885 SDValue IDVal(ImDef, 0); in tryAsSingleRLDICL() local
4888 IDVal, Op0.getOperand(0), in tryAsSingleRLDICL()