| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | RustDemangle.cpp | 202 size_t Dot = Mangled.find('.'); in demangle() local 203 Input = Dot == std::string_view::npos ? Mangled : Mangled.substr(0, Dot); in demangle() 215 if (Dot != std::string_view::npos) { in demangle() 217 print(Mangled.substr(Dot)); in demangle()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicsRISCVXAndes.td | 26 // Andes Vector Dot Product Extension
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | EHStreamer.cpp | 692 MCSymbol *Dot = Context.createTempSymbol(); in emitExceptionTable() local 693 Asm->OutStreamer->emitLabel(Dot); in emitExceptionTable() 698 MCSymbolRefExpr::create(Dot, Context), Context), in emitExceptionTable()
|
| H A D | AsmPrinter.cpp | 4633 MCSymbol *Dot = Ctx.createTempSymbol(); in emitXRayTable() local 4634 OutStreamer->emitLabel(Dot); in emitXRayTable() 4637 MCSymbolRefExpr::create(Dot, Ctx), Ctx), in emitXRayTable() 4642 MCBinaryExpr::createAdd(MCSymbolRefExpr::create(Dot, Ctx), in emitXRayTable() 4661 MCSymbol *Dot = Ctx.createLinkerPrivateSymbol("xray_fn_idx"); in emitXRayTable() local 4662 OutStreamer->emitLabel(Dot); in emitXRayTable() 4665 MCSymbolRefExpr::create(Dot, Ctx), Ctx), in emitXRayTable()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCAsmMacro.h | 50 Question, Star, Dot, Comma, Dollar, Equal, EqualEqual, enumerator
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/ |
| H A D | PPCAsmParser.cpp | 1473 case AsmToken::Dot: in parseOperand() 1589 size_t Dot = Name.find('.'); in parseInstruction() local 1590 StringRef Mnemonic = Name.slice(0, Dot); in parseInstruction() 1596 if (Dot != StringRef::npos) { in parseInstruction() 1597 SMLoc DotLoc = SMLoc::getFromPointer(NameLoc.getPointer() + Dot); in parseInstruction() 1598 StringRef DotStr = Name.substr(Dot); in parseInstruction()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | riscv_andes_vector.td | 160 // Andes Vector Dot Product Extension (XAndesVDot)
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/VE/AsmParser/ |
| H A D | VEAsmParser.cpp | 1201 case AsmToken::Dot: in parseMEMOperand() 1243 case AsmToken::Dot: in parseMEMOperand() 1308 case AsmToken::Dot: in parseMEMAsOperand() 1518 case AsmToken::Dot: in parseVEAsmOperand()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmLexer.cpp | 69 case AsmToken::Dot: OS << "Dot"; break; in dump() 251 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1)); in LexIdentifier()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVFeatures.td | 846 : RISCVExperimentalExtension<0, 0, "Vector quad widening 4D Dot Product", 850 "'Zvqdotq' (Vector quad widening 4D Dot Product)">; 1189 "T-Head Vector Extensions for Dot", 1193 "'XTHeadVdot' (T-Head Vector Extensions for Dot)">; 1638 : RISCVExtension<5, 0, "Andes Vector Dot Product Extension", 1643 "'XAndesVDot' (Andes Vector Dot Product Extension)">;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZAsmPrinter.cpp | 731 const MCSymbolRefExpr *Dot = MCSymbolRefExpr::create(DotSym, OutContext); in emitInstruction() local 734 MCInstBuilder(SystemZ::EXRL).addReg(LenMinus1Reg).addExpr(Dot)); in emitInstruction() 771 const MCSymbolRefExpr *Dot = MCSymbolRefExpr::create(DotSym, OutContext); in EmitNop() local 774 MCInstBuilder(SystemZ::BRCLAsm).addImm(0).addExpr(Dot), STI); in EmitNop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64PreLegalizerCombiner.cpp | 332 auto Dot = Builder.buildInstr(DotOpcode, {MidTy}, in applyExtAddvToUdotAddv() local 334 Builder.buildVecReduceAdd(MI.getOperand(0), Dot->getOperand(0)); in applyExtAddvToUdotAddv()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/AsmParser/ |
| H A D | CSKYAsmParser.cpp | 856 MCSymbol *Dot = getContext().createNamedTempSymbol(); in processLRW() local 857 Out.emitLabel(Dot); in processLRW() 858 AdjustExpr = MCSymbolRefExpr::create(Dot, getContext()); in processLRW()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 1934 case AsmToken::Dot: in ParseIntelExpression() 1980 StringRef Dot = Identifier.substr(DotOffset, 1); in ParseIntelExpression() local 1985 getLexer().UnLex(AsmToken(AsmToken::Dot, Dot)); in ParseIntelExpression() 2100 bool EndDot = parseOptionalToken(AsmToken::Dot); in ParseIntelExpression() 2115 EndDot = parseOptionalToken(AsmToken::Dot); in ParseIntelExpression() 2438 getLexer().UnLex(AsmToken(AsmToken::Dot, ".")); in ParseIntelDotOperator()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CommentCommands.td | 209 defm Dot : VerbatimBlockCommand<"dot", "enddot">;
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | MachOObjectFile.cpp | 2430 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx; in guessLibraryShortName() local 2497 Dot = Name.substr(a - 2, 1); in guessLibraryShortName() 2498 if (Dot == ".") in guessLibraryShortName() 2522 Dot = Lib.substr(Lib.size() - 2, 1); in guessLibraryShortName() 2523 if (Dot == ".") in guessLibraryShortName() 2539 Dot = Lib.substr(Lib.size() - 2, 1); in guessLibraryShortName() 2540 if (Dot == ".") in guessLibraryShortName()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedExynosM5.td | 58 def M5UnitNDOT0 : ProcResource<1>; // Dot product vector 75 def M5UnitNDOT1 : ProcResource<1>; // Dot product vector 88 def M5UnitNDOT2 : ProcResource<1>; // Dot product vector
|
| H A D | AArch64SchedA510.td | 806 // Dot product, 8 bit 809 // Dot product, 8 bit, using signed and unsigned integers 812 // Dot product, 16 bit 1159 // Dot product
|
| H A D | AArch64SchedA320.td | 828 // Dot product, 8 bit 831 // Dot product, 8 bit, using signed and unsigned integers 834 // Dot product, 16 bit 1181 // Dot product
|
| H A D | AArch64SchedNeoverseV1.td | 1555 // Dot product, 8 bit 1558 // Dot product, 8 bit, using signed and unsigned integers 1562 // Dot product, 16 bit 1805 // Dot product
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXIL.td | 805 let Doc = "dot product of two float vectors Dot(a,b) = a[0]*b[0] + ... + " 816 let Doc = "dot product of two float vectors Dot(a,b) = a[0]*b[0] + ... + " 827 let Doc = "dot product of two float vectors Dot(a,b) = a[0]*b[0] + ... + "
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/ |
| H A D | AVRAsmParser.cpp | 541 case AsmToken::Dot: in parseOperand()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/ |
| H A D | SparcAsmParser.cpp | 1320 case AsmToken::Dot: in parseCallTarget() 1474 case AsmToken::Dot: in parseSparcAsmOperand()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVBuiltins.td | 44 def Dot : BuiltinGroup; 106 // Dot builtin record: 107 def : DemangledBuiltin<"dot", OpenCL_std, Dot, 2, 2>; 108 def : DemangledBuiltin<"__spirv_Dot", OpenCL_std, Dot, 2, 2>;
|
| /freebsd/contrib/ntp/sntp/libevent/m4/ |
| H A D | ax_prog_doxygen.m4 | 285 # Dot for graphics:
|