Home
last modified time | relevance | path

Searched refs:Stages (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/
DPipeline.cpp27 for (auto &S : Stages) in addEventListener()
32 return any_of(Stages, [](const std::unique_ptr<Stage> &S) { in hasWorkToProcess()
38 assert(!Stages.empty() && "Unexpected empty pipeline found!"); in run()
54 for (auto I = Stages.rbegin(), E = Stages.rend(); I != E && !Err; ++I) { in runCycle()
61 Stage &FirstStage = *Stages[0]; in runCycle()
66 for (const std::unique_ptr<Stage> &S : Stages) { in runCycle()
77 if (!Stages.empty()) { in appendStage()
78 Stage *Last = Stages.back().get(); in appendStage()
82 Stages.push_back(std::move(S)); in appendStage()
DCMakeLists.txt14 Stages/DispatchStage.cpp
15 Stages/EntryStage.cpp
16 Stages/ExecuteStage.cpp
17 Stages/InstructionTables.cpp
18 Stages/MicroOpQueueStage.cpp
19 Stages/RetireStage.cpp
20 Stages/Stage.cpp
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DModuloSchedule.h229 std::pair<unsigned, bool> Stages = RegToStageDiff[Reg]; in getStagesForReg() local
230 if ((int)CurStage > Schedule.getNumStages() - 1 && Stages.first == 0 && in getStagesForReg()
231 Stages.second) in getStagesForReg()
233 return Stages.first; in getStagesForReg()
243 std::pair<unsigned, bool> Stages = RegToStageDiff[Reg]; in getStagesForPhi() local
244 if (Stages.second) in getStagesForPhi()
245 return Stages.first; in getStagesForPhi()
246 return Stages.first - 1; in getStagesForPhi()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCInstrItineraries.h110 const InstrStage *Stages = nullptr; ///< Array of stages selected variable
119 : SchedModel(SM), Stages(S), OperandCycles(OS), Forwardings(F), in InstrItineraryData()
134 return Stages + StageIdx; in beginStage()
140 return Stages + StageIdx; in endStage()
DMCSubtargetInfo.h86 const InstrStage *Stages; // Instruction itinerary stages variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCSubtargetInfo.cpp217 ReadAdvanceTable(RA), Stages(IS), OperandCycles(OC), ForwardingPaths(FP) { in MCSubtargetInfo()
311 return InstrItineraryData(SchedModel, Stages, OperandCycles, ForwardingPaths); in getInstrItineraryForCPU()
315 InstrItins = InstrItineraryData(getSchedModel(), Stages, OperandCycles, in initInstrItins()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
DPipeline.h57 SmallVector<std::unique_ptr<Stage>, 8> Stages; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetItinerary.td114 list<InstrStage> Stages = stages;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachinePipeliner.cpp531 DenseMap<MachineInstr *, int> Cycles, Stages; in schedule() local
538 Stages[SU->getInstr()] = Schedule.stageScheduled(SU); in schedule()
544 Stages[KV.first] = Stages[KV.second]; in schedule()
549 std::move(Stages)); in schedule()
/third_party/mesa3d/docs/
Dperfetto.rst33 - Render Stages
/third_party/skia/third_party/externals/swiftshader/docs/
DRegres.md183 7. Stages 3 - 5 are repeated for both the LLVM and Subzero backends.
/third_party/openGLES/extensions/KHR/
DKHR_shader_subgroup.txt241 SG.2.2 Subgroup Supported Stages
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingBuiltinTests.cpp2445 static const struct Stages struct
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp9220 unsigned Stages = Log2_32(Op.getValueType().getVectorNumElements()); in matchBinOpReduction() local
9222 for (unsigned i = 0; i < Stages; ++i) { in matchBinOpReduction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp37011 unsigned Stages = Log2_32(VT.getVectorNumElements()); in combineBasicSADPattern() local
37013 if (Stages > 3) { in combineBasicSADPattern()
37016 for(unsigned i = Stages - 3; i > 0; --i) { in combineBasicSADPattern()