/freebsd/contrib/llvm-project/llvm/lib/MCA/ |
H A D | Pipeline.cpp | 27 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() 55 for (auto I = Stages.rbegin(), E = Stages.rend(); I != E && !Err; ++I) { in runCycle() 67 Stage &FirstStage = *Stages[0]; in runCycle() 77 for (const std::unique_ptr<Stage> &S : Stages) { in runCycle() 88 if (!Stages.empty()) { in appendStage() 89 Stage *Last = Stages.back().get(); in appendStage() 93 Stages.push_back(std::move(S)); in appendStage()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ModuloSchedule.h | 239 std::pair<unsigned, bool> Stages = RegToStageDiff[Reg]; in getStagesForReg() local 240 if ((int)CurStage > Schedule.getNumStages() - 1 && Stages.first == 0 && in getStagesForReg() 241 Stages.second) in getStagesForReg() 243 return Stages.first; in getStagesForReg() 253 std::pair<unsigned, bool> Stages = RegToStageDiff[Reg]; in getStagesForPhi() local 254 if (Stages.second) in getStagesForPhi() 255 return Stages.first; in getStagesForPhi() 256 return Stages.first - 1; in getStagesForPhi()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCInstrItineraries.h | 114 const InstrStage *Stages = nullptr; ///< Array of stages selected 123 : SchedModel(SM), Stages(S), OperandCycles(OS), Forwardings(F), in InstrItineraryData() 138 return Stages + StageIdx; in beginStage() 144 return Stages + StageIdx; in endStage() 113 const InstrStage *Stages = nullptr; ///< Array of stages selected global() variable
|
H A D | MCSubtargetInfo.h | 89 const InstrStage *Stages; // Instruction itinerary stages variable
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86PartialReduction.cpp | 316 unsigned Stages = Log2_32(NumSplits); in trySADReplacement() local 317 for (unsigned s = Stages; s > 0; --s) { in trySADReplacement() 374 unsigned Stages = Log2_32(NumElems); in matchAddReduction() local 375 for (unsigned i = 0; i != Stages; ++i) { in matchAddReduction()
|
H A D | X86ISelLowering.cpp | 44537 unsigned Stages = Log2_32(VT.getVectorNumElements()); in combineVPDPBUSDPattern() local 44540 if (Stages > StageBias) { in combineVPDPBUSDPattern() 44543 for (unsigned i = Stages - StageBias; i > 0; --i) { in combineVPDPBUSDPattern() 44612 unsigned Stages = Log2_32(VT.getVectorNumElements()); in combineBasicSADPattern() local 44614 if (Stages > 3) { in combineBasicSADPattern() 44617 for(unsigned i = Stages - 3; i > 0; --i) { in combineBasicSADPattern()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCSubtargetInfo.cpp | 236 WriteLatencyTable(WL), ReadAdvanceTable(RA), Stages(IS), in MCSubtargetInfo() 331 return InstrItineraryData(SchedModel, Stages, OperandCycles, ForwardingPaths); in getInstrItineraryForCPU() 335 InstrItins = InstrItineraryData(getSchedModel(), Stages, OperandCycles, in initInstrItins()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/ |
H A D | Pipeline.h | 62 SmallVector<std::unique_ptr<Stage>, 8> Stages; variable
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | WindowScheduler.cpp | 628 DenseMap<MachineInstr *, int> Cycles, Stages; in expand() local 634 Stages[MI] = std::get<2>(Info); in expand() 635 LLVM_DEBUG(dbgs() << "\tCycle " << Cycles[MI] << " [S." << Stages[MI] in expand() 639 std::move(Stages)); in expand()
|
H A D | MachinePipeliner.cpp | 705 DenseMap<MachineInstr *, int> Cycles, Stages; in schedule() local 712 Stages[SU->getInstr()] = Schedule.stageScheduled(SU); in schedule() 718 Stages[KV.first] = Stages[KV.second]; in schedule() 723 std::move(Stages)); in schedule() 1086 DenseMap<MachineInstr *, unsigned> &Stages) { in computeScheduledInsts() argument 1108 Stages[MI] = Schedule.stageScheduled(SU); in computeScheduledInsts() 1383 Instr2StageTy &Stages) const { in computeLastUses() 1403 const auto InstrScore = [&Stages](MachineInstr *MI) { in computeLastUses() 1404 return Stages[MI] + MI->isPHI(); in computeLastUses() 1445 Instr2StageTy &Stages, in computeMaxSetPressure() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetItinerary.td | 114 list<InstrStage> Stages = stages;
|
/freebsd/lib/clang/libllvm/ |
H A D | Makefile | 974 SRCS_EXT+= MCA/Stages/DispatchStage.cpp 975 SRCS_EXT+= MCA/Stages/EntryStage.cpp 976 SRCS_EXT+= MCA/Stages/ExecuteStage.cpp 977 SRCS_EXT+= MCA/Stages/InOrderIssueStage.cpp 978 SRCS_EXT+= MCA/Stages/InstructionTables.cpp 979 SRCS_EXT+= MCA/Stages/MicroOpQueueStage.cpp 980 SRCS_EXT+= MCA/Stages/RetireStage.cpp 981 SRCS_EXT+= MCA/Stages/Stage.cpp
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 12322 unsigned Stages = Log2_32(Op.getValueType().getVectorNumElements()); in matchBinOpReduction() local 12324 for (unsigned i = 0; i < Stages; ++i) { in matchBinOpReduction()
|