/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCheck.cpp | 72 Pattern::parseVariable(StringRef &Str, const SourceMgr &SM) { in parseVariable() argument 74 return ErrorDiagnostic::get(SM, Str, "empty variable name"); in parseVariable() 86 return ErrorDiagnostic::get(SM, Str, "invalid variable name"); in parseVariable() 116 Optional<size_t> LineNumber, const SourceMgr &SM) { in parseNumericVariableDefinition() argument 117 Expected<VariableProperties> ParseVarResult = parseVariable(Expr, SM); in parseNumericVariableDefinition() 124 SM, Name, "definition of pseudo numeric variable unsupported"); in parseNumericVariableDefinition() 131 SM, Name, "string variable with name '" + Name + "' already exists"); in parseNumericVariableDefinition() 136 SM, Expr, "unexpected characters after numeric variable name"); in parseNumericVariableDefinition() 150 FileCheckPatternContext *Context, const SourceMgr &SM) { in parseNumericVariableUse() argument 153 SM, Name, "invalid pseudo numeric variable '" + Name + "'"); in parseNumericVariableUse() [all …]
|
D | FileCheckImpl.h | 287 SourceMgr &SM); 334 static Error get(const SourceMgr &SM, SMLoc Loc, const Twine &ErrMsg) { in get() argument 336 SM.GetMessage(Loc, SourceMgr::DK_Error, ErrMsg)); in get() 339 static Error get(const SourceMgr &SM, StringRef Buffer, const Twine &ErrMsg) { in get() argument 340 return get(SM, SMLoc::getFromPointer(Buffer.data()), ErrMsg); in get() 454 const SourceMgr &SM); 468 FileCheckPatternContext *Context, const SourceMgr &SM); 476 bool parsePattern(StringRef PatternStr, StringRef Prefix, SourceMgr &SM, 491 const SourceMgr &SM) const; 494 void printSubstitutions(const SourceMgr &SM, StringRef Buffer, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTX.td | 22 // - We use the SM version number instead of explicit feature table. 27 // SM Versions 29 "Target SM 2.0">; 31 "Target SM 2.1">; 33 "Target SM 3.0">; 35 "Target SM 3.2">; 37 "Target SM 3.5">; 39 "Target SM 3.7">; 41 "Target SM 5.0">; 43 "Target SM 5.2">; [all …]
|
/third_party/mesa3d/src/nouveau/drm-shim/ |
D | README.md | 17 | 50 | G80 | GeForce 8800 GTS | SM 1.0, 128 regs | 18 | 84 | G84 | GeForce 8600 GS | SM 1.1 | 19 | a0 | GT200 | GeForce GTX 280 | SM 1.2 + fp64 | 21 | c0 | GF100 | GeForce GTX 480 | SM 2.0, 64 regs | 22 | e4 | GK104 | GeForce GTX 680 | SM 3.0, 64 regs | 23 | f0 | GK110 | GeForce GTX 780 | SM 3.5, 256 regs | 24 | 117 | GM107 | GeForce GTX 750 | SM 5.0 | 25 | 124 | GM204 | GeForce GTX 980 | SM 5.2 | 26 | 134 | GP104 | GeForce GTX 1080 | SM 6.0 | 27 | 140 | GV100 | TITAN V | SM 7.0 | [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
D | Support.cpp | 39 void computeProcResourceMasks(const MCSchedModel &SM, in computeProcResourceMasks() argument 43 assert(Masks.size() == SM.getNumProcResourceKinds() && in computeProcResourceMasks() 49 for (unsigned I = 1, E = SM.getNumProcResourceKinds(); I < E; ++I) { in computeProcResourceMasks() 50 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() 58 for (unsigned I = 1, E = SM.getNumProcResourceKinds(); I < E; ++I) { in computeProcResourceMasks() 59 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() 73 for (unsigned I = 0, E = SM.getNumProcResourceKinds(); I < E; ++I) { in computeProcResourceMasks() 74 const MCProcResourceDesc &Desc = *SM.getProcResource(I); in computeProcResourceMasks() 82 double computeBlockRThroughput(const MCSchedModel &SM, unsigned DispatchWidth, in computeBlockRThroughput() argument 93 for (unsigned I = 0, E = SM.getNumProcResourceKinds(); I < E; ++I) { in computeBlockRThroughput() [all …]
|
D | Context.cpp | 32 const MCSchedModel &SM = STI.getSchedModel(); in createDefaultPipeline() local 35 auto RCU = std::make_unique<RetireControlUnit>(SM); in createDefaultPipeline() 36 auto PRF = std::make_unique<RegisterFile>(SM, MRI, Opts.RegisterFileSize); in createDefaultPipeline() 37 auto LSU = std::make_unique<LSUnit>(SM, Opts.LoadQueueSize, in createDefaultPipeline() 39 auto HWS = std::make_unique<Scheduler>(SM, *LSU); in createDefaultPipeline()
|
D | InstrBuilder.cpp | 33 const MCSchedModel &SM = STI.getSchedModel(); in InstrBuilder() local 34 ProcResourceMasks.resize(SM.getNumProcResourceKinds()); in InstrBuilder() 42 const MCSchedModel &SM = STI.getSchedModel(); in initializeUsedResources() local 60 unsigned NumProcResources = SM.getNumProcResourceKinds(); in initializeUsedResources() 67 const MCProcResourceDesc &PR = *SM.getProcResource(PRE->ProcResourceIdx); in initializeUsedResources() 171 const MCProcResourceDesc &PR = *SM.getProcResource(I); in initializeUsedResources() 250 const MCSchedModel &SM = STI.getSchedModel(); in populateWrites() local 251 const MCSchedClassDesc &SCDesc = *SM.getSchedClassDesc(SchedClassID); in populateWrites() 516 const MCSchedModel &SM = STI.getSchedModel(); in createInstrDescImpl() local 520 bool IsVariant = SM.getSchedClassDesc(SchedClassID)->isVariant(); in createInstrDescImpl() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | Parser.cpp | 29 SourceMgr SM; in parseAssemblyInto() local 31 SM.AddNewSourceBuffer(std::move(Buf), SMLoc()); in parseAssemblyInto() 34 return LLParser(F.getBuffer(), SM, Err, M, Index, in parseAssemblyInto() 113 SourceMgr SM; in parseSummaryIndexAssemblyInto() local 115 SM.AddNewSourceBuffer(std::move(Buf), SMLoc()); in parseSummaryIndexAssemblyInto() 120 return LLParser(F.getBuffer(), SM, Err, nullptr, &Index, unusedContext).Run(); in parseSummaryIndexAssemblyInto() 149 SourceMgr SM; in parseConstantValue() local 151 SM.AddNewSourceBuffer(std::move(Buf), SMLoc()); in parseConstantValue() 153 if (LLParser(Asm, SM, Err, const_cast<Module *>(&M), nullptr, M.getContext()) in parseConstantValue() 166 SourceMgr SM; in parseType() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonISelDAGToDAGHVX.cpp | 840 OpRef packs(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results, 842 OpRef packp(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results, 849 OpRef shuffs1(ShuffleMask SM, OpRef Va, ResultStack &Results); 850 OpRef shuffs2(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results); 851 OpRef shuffp1(ShuffleMask SM, OpRef Va, ResultStack &Results); 852 OpRef shuffp2(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results); 854 OpRef butterfly(ShuffleMask SM, OpRef Va, ResultStack &Results); 855 OpRef contracting(ShuffleMask SM, OpRef Va, OpRef Vb, ResultStack &Results); 856 OpRef expanding(ShuffleMask SM, OpRef Va, ResultStack &Results); 857 OpRef perfect(ShuffleMask SM, OpRef Va, ResultStack &Results); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | fixSignatureCaching.types | 5 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 6 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 7 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 12 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 14 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 24 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 28 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 32 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 58 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 60 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… [all …]
|
D | fixSignatureCaching.errors.txt | 81 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 104 …SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|… 343 "Watch": "SM-V700"
|
D | fixSignatureCaching.symbols | 40 …SM-G9250|GT-19300|SGH-I337|BGT-S5230|GT-B2100|GT-B2700|GT-B2710|GT-B3210|GT-B3310|GT-B3410|GT-B373… 107 …SM-T311|SM-T310|SM-T310X|SM-T210|SM-T210R|SM-T211|SM-P600|SM-P601|SM-P605|SM-P900|SM-P901|SM-T217|… 754 "Watch": "SM-V700"
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | ResourceManager.cpp | 111 ResourceManager::ResourceManager(const MCSchedModel &SM) in ResourceManager() argument 112 : Resources(SM.getNumProcResourceKinds() - 1), in ResourceManager() 113 Strategies(SM.getNumProcResourceKinds() - 1), in ResourceManager() 114 Resource2Groups(SM.getNumProcResourceKinds() - 1, 0), in ResourceManager() 115 ProcResID2Mask(SM.getNumProcResourceKinds(), 0), in ResourceManager() 116 ResIndex2ProcResID(SM.getNumProcResourceKinds() - 1, 0), in ResourceManager() 119 computeProcResourceMasks(SM, ProcResID2Mask); in ResourceManager() 122 for (unsigned I = 1, E = SM.getNumProcResourceKinds(); I < E; ++I) { in ResourceManager() 127 for (unsigned I = 1, E = SM.getNumProcResourceKinds(); I < E; ++I) { in ResourceManager() 131 std::make_unique<ResourceState>(*SM.getProcResource(I), I, Mask); in ResourceManager() [all …]
|
D | RetireControlUnit.cpp | 22 RetireControlUnit::RetireControlUnit(const MCSchedModel &SM) in RetireControlUnit() argument 24 NumROBEntries(SM.MicroOpBufferSize), in RetireControlUnit() 25 AvailableEntries(SM.MicroOpBufferSize), MaxRetirePerCycle(0) { in RetireControlUnit() 29 if (SM.hasExtraProcessorInfo()) { in RetireControlUnit() 30 const MCExtraProcessorInfo &EPI = SM.getExtraProcessorInfo(); in RetireControlUnit()
|
D | LSUnit.cpp | 24 LSUnitBase::LSUnitBase(const MCSchedModel &SM, unsigned LQ, unsigned SQ, in LSUnitBase() argument 28 if (SM.hasExtraProcessorInfo()) { in LSUnitBase() 29 const MCExtraProcessorInfo &EPI = SM.getExtraProcessorInfo(); in LSUnitBase() 31 const MCProcResourceDesc &LdQDesc = *SM.getProcResource(EPI.LoadQueueID); in LSUnitBase() 36 const MCProcResourceDesc &StQDesc = *SM.getProcResource(EPI.StoreQueueID); in LSUnitBase()
|
D | RegisterFile.cpp | 25 RegisterFile::RegisterFile(const MCSchedModel &SM, const MCRegisterInfo &mri, in RegisterFile() argument 30 initialize(SM, NumRegs); 33 void RegisterFile::initialize(const MCSchedModel &SM, unsigned NumRegs) { in initialize() argument 39 if (!SM.hasExtraProcessorInfo()) in initialize() 45 const MCExtraProcessorInfo &Info = SM.getExtraProcessorInfo(); in initialize() 417 const MCSchedModel &SM = STI.getSchedModel(); in addRegisterRead() local 418 const MCSchedClassDesc *SC = SM.getSchedClassDesc(RD.SchedClassID); in addRegisterRead()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/Stages/ |
D | EntryStage.h | 29 SourceMgr &SM; variable 39 EntryStage(SourceMgr &SM) : CurrentInstruction(), SM(SM), NumRetired(0) { } in EntryStage() argument
|
D | InstructionTables.h | 29 const MCSchedModel &SM; variable 35 : Stage(), SM(Model), Masks(Model.getNumProcResourceKinds()) { in InstructionTables()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParser.cpp | 876 bool ParseIntelDotOperator(IntelExprStateMachine &SM, SMLoc &End); 880 bool ParseIntelNamedOperator(StringRef Name, IntelExprStateMachine &SM, 882 void RewriteIntelExpression(IntelExprStateMachine &SM, SMLoc Start, 884 bool ParseIntelExpression(IntelExprStateMachine &SM, SMLoc &End); 1457 IntelExprStateMachine &SM, in ParseIntelNamedOperator() argument 1463 SM.onNot(); in ParseIntelNamedOperator() 1465 SM.onOr(); in ParseIntelNamedOperator() 1467 SM.onLShift(); in ParseIntelNamedOperator() 1469 SM.onRShift(); in ParseIntelNamedOperator() 1471 SM.onXor(); in ParseIntelNamedOperator() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/ |
D | LSUnit.h | 199 LSUnitBase(const MCSchedModel &SM, unsigned LoadQueueSize, 419 LSUnit(const MCSchedModel &SM) in LSUnit() argument 420 : LSUnit(SM, /* LQSize */ 0, /* SQSize */ 0, /* NoAlias */ false) {} in LSUnit() 421 LSUnit(const MCSchedModel &SM, unsigned LQ, unsigned SQ) in LSUnit() argument 422 : LSUnit(SM, LQ, SQ, /* NoAlias */ false) {} in LSUnit() 423 LSUnit(const MCSchedModel &SM, unsigned LQ, unsigned SQ, bool AssumeNoAlias) in LSUnit() argument 424 : LSUnitBase(SM, LQ, SQ, AssumeNoAlias), CurrentLoadGroupID(0), in LSUnit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
D | YAMLRemarkParser.cpp | 36 YAMLParseError::YAMLParseError(StringRef Msg, SourceMgr &SM, in YAMLParseError() argument 45 auto OldDiagHandler = SM.getDiagHandler(); in YAMLParseError() 46 auto OldDiagCtx = SM.getDiagContext(); in YAMLParseError() 47 SM.setDiagHandler(handleDiagnostic, &Message); in YAMLParseError() 50 SM.setDiagHandler(OldDiagHandler, OldDiagCtx); in YAMLParseError() 54 SourceMgr SM; in setupSM() local 55 SM.setDiagHandler(handleDiagnostic, &LastErrorMessage); in setupSM() 56 return SM; in setupSM() 176 SM(setupSM(LastErrorMessage)), Stream(Buf, SM), YAMLIt(Stream.begin()) {} 179 return make_error<YAMLParseError>(Message, SM, Stream, Node); in error()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
D | MIRParser.cpp | 53 SourceMgr SM; member in llvm::MIRParserImpl 174 : SM(), in MIRParserImpl() 175 In(SM.getMemoryBuffer(SM.AddNewSourceBuffer(std::move(Contents), SMLoc())) in MIRParserImpl() 190 DS_Error, SM.GetMessage(Loc, SourceMgr::DK_Error, Message))); in error() 419 PerFunctionMIParsingState PFS(MF, SM, IRSlots, *Target); in initializeMachineFunction() 435 PFS.SM = &BlockSM; in initializeMachineFunction() 441 PFS.SM = &SM; in initializeMachineFunction() 459 PFS.SM = &InsnSM; in initializeMachineFunction() 465 PFS.SM = &SM; in initializeMachineFunction() 889 return SM.GetMessage(Loc, Error.getKind(), Error.getMessage(), None, in diagFromMIStringDiag() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZAsmPrinter.h | 27 StackMaps SM; 31 : AsmPrinter(TM, std::move(Streamer)), SM(*this) {} in SystemZAsmPrinter() 44 SM.reset(); in doInitialization()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/ |
D | EntryStage.cpp | 33 if (!SM.hasNext()) in getNextInstruction() 35 SourceRef SR = SM.peekNext(); in getNextInstruction() 39 SM.updateNext(); in getNextInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | FileCheck.h | 131 FileCheckDiag(const SourceMgr &SM, const Check::FileCheckType &CheckTy, 162 bool readCheckFile(SourceMgr &SM, StringRef Buffer, Regex &PrefixRE); 176 bool checkInput(SourceMgr &SM, StringRef Buffer,
|