Home
last modified time | relevance | path

Searched refs:DefCycle (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCInstrItineraries.h210 int DefCycle = getOperandCycle(DefClass, DefIdx); in getOperandLatency() local
211 if (DefCycle == -1) in getOperandLatency()
218 UseCycle = DefCycle - UseCycle + 1; in getOperandLatency()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DUniformityAnalysis.cpp75 const Instruction &I, const Cycle &DefCycle) const { in usesValueFromCycle()
80 if (DefCycle.contains(I->getParent())) in usesValueFromCycle()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineUniformityAnalysis.cpp99 const MachineInstr &I, const MachineCycle &DefCycle) const { in usesValueFromCycle()
107 if (DefCycle.contains(Def->getParent())) in usesValueFromCycle()
H A DTargetInstrInfo.cpp1303 int DefCycle = ItinData->getOperandCycle(DefClass, DefIdx); in hasLowDefLatency() local
1304 return (DefCycle != -1 && DefCycle <= 1); in hasLowDefLatency()
H A DModuloSchedule.cpp1205 int DefCycle = Schedule.getCycle(&Phi); in isLoopCarried() local
1216 return (LoopCycle > DefCycle) || (LoopStage <= DefStage); in isLoopCarried()
H A DMachinePipeliner.cpp2622 unsigned DefCycle = cycleScheduled(DefSU); in isLoopCarried() local
2635 return (LoopCycle > DefCycle) || (LoopStage <= DefStage); in isLoopCarried()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp3898 int DefCycle; in getVLDMDefCycle() local
3901 DefCycle = RegNo / 2 + 1; in getVLDMDefCycle()
3903 ++DefCycle; in getVLDMDefCycle()
3905 DefCycle = RegNo; in getVLDMDefCycle()
3920 ++DefCycle; in getVLDMDefCycle()
3923 DefCycle = RegNo + 2; in getVLDMDefCycle()
3926 return DefCycle; in getVLDMDefCycle()
3939 int DefCycle; in getLDMDefCycle() local
3943 DefCycle = RegNo / 2; in getLDMDefCycle()
3944 if (DefCycle < 1) in getLDMDefCycle()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DGenericUniformityImpl.h463 bool usesValueFromCycle(const InstructionT &I, const CycleT &DefCycle) const;