Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp539 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 …]
DDarwinAsmParser.cpp608 bool DarwinAsmParser::parseDirectiveLinkerOption(StringRef IDVal, SMLoc) { in parseDirectiveLinkerOption() argument
612 return TokError("expected string in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
624 return TokError("unexpected token in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/AsmParser/
DMSP430AsmParser.cpp422 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/
DX86AsmParser.cpp905 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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/AsmParser/
DAVRAsmParser.cpp632 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DStatepoint.h119 const Value *IDVal = getCall()->getArgOperand(IDPos); in getID() local
120 return cast<ConstantInt>(IDVal)->getZExtValue(); in getID()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp1624 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp8324 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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/
DARMAsmParser.cpp6152 StringRef IDVal = Parser.getTok().getIdentifier(); in parsePrefix() local
6156 [&IDVal](const PrefixEntry &PE) { in parsePrefix()
6157 return PE.Spelling == IDVal; in parsePrefix()
10549 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
10550 if (IDVal == ".word") in ParseDirective()
10552 else if (IDVal == ".short" || IDVal == ".hword") in ParseDirective()
10554 else if (IDVal == ".thumb") in ParseDirective()
10556 else if (IDVal == ".arm") in ParseDirective()
10558 else if (IDVal == ".thumb_func") in ParseDirective()
10560 else if (IDVal == ".code") in ParseDirective()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/AsmParser/
DHexagonAsmParser.cpp654 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
655 if (IDVal.lower() == ".falign") in ParseDirective()
657 if ((IDVal.lower() == ".lcomm") || (IDVal.lower() == ".lcommon")) in ParseDirective()
659 if ((IDVal.lower() == ".comm") || (IDVal.lower() == ".common")) in ParseDirective()
661 if (IDVal.lower() == ".subsection") in ParseDirective()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp5027 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
5029 if (IDVal == ".arch") in ParseDirective()
5031 else if (IDVal == ".cpu") in ParseDirective()
5033 else if (IDVal == ".tlsdesccall") in ParseDirective()
5035 else if (IDVal == ".ltorg" || IDVal == ".pool") in ParseDirective()
5037 else if (IDVal == ".unreq") in ParseDirective()
5039 else if (IDVal == ".inst") in ParseDirective()
5041 else if (IDVal == ".cfi_negate_ra_state") in ParseDirective()
5043 else if (IDVal == ".cfi_b_key_frame") in ParseDirective()
5045 else if (IDVal == ".arch_extension") in ParseDirective()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp4339 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
4342 if (IDVal == ".amdgcn_target") in ParseDirective()
4345 if (IDVal == ".amdhsa_kernel") in ParseDirective()
4349 if (IDVal == AMDGPU::HSAMD::V3::AssemblerDirectiveBegin) in ParseDirective()
4352 if (IDVal == ".hsa_code_object_version") in ParseDirective()
4355 if (IDVal == ".hsa_code_object_isa") in ParseDirective()
4358 if (IDVal == ".amd_kernel_code_t") in ParseDirective()
4361 if (IDVal == ".amdgpu_hsa_kernel") in ParseDirective()
4364 if (IDVal == ".amd_amdgpu_isa") in ParseDirective()
4367 if (IDVal == AMDGPU::HSAMD::AssemblerDirectiveBegin) in ParseDirective()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/AsmParser/
DSparcAsmParser.cpp700 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
702 if (IDVal == ".register") { in ParseDirective()
707 if (IDVal == ".proc") { in ParseDirective()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/AsmParser/
DSystemZAsmParser.cpp1016 StringRef IDVal = DirectiveID.getIdentifier(); in ParseDirective() local
1018 if (IDVal == ".insn") in ParseDirective()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/AsmParser/
DRISCVAsmParser.cpp1532 StringRef IDVal = DirectiveID.getString(); in ParseDirective() local
1534 if (IDVal == ".option") in ParseDirective()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp8765 SDValue IDVal = getValue(CI.getOperand(PatchPointOpers::IDPos)); in visitStackmap() local
8767 cast<ConstantSDNode>(IDVal)->getZExtValue(), DL, MVT::i64)); in visitStackmap()
8860 SDValue IDVal = getValue(CS->getOperand(PatchPointOpers::IDPos)); in visitPatchpoint() local
8862 cast<ConstantSDNode>(IDVal)->getZExtValue(), dl, MVT::i64)); in visitPatchpoint()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCISelDAGToDAG.cpp4451 SDValue IDVal (ImDef, 0); in tryAndWithMask() local
4454 ResultType, IDVal, Op0.getOperand(0), in tryAndWithMask()