Searched refs:InstrDepth (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h172 unsigned InstrDepth = ~0u; member in struct:llvm::MachineTraceMetrics::TraceBlockInfo
182 bool hasValidDepth() const { return InstrDepth != ~0u; }
189 void invalidateDepth() { InstrDepth = ~0u; HasValidInstrDepths = false; }
212 return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth;
268 return TBI.InstrDepth + TBI.InstrHeight;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineCombiner.cpp168 SmallVector<unsigned, 16> InstrDepth; local
174 // are tracked in the InstrIdxForVirtReg map depth is looked up in InstrDepth
189 assert(II->second < InstrDepth.size() && "Bad Index");
193 DepthOp = InstrDepth[II->second];
209 InstrDepth.push_back(IDepth);
212 return InstrDepth[NewRootIdx];
H A DMachineTraceMetrics.cpp183 TBI->InstrDepth = 0;
196 TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount;
262 /// Compare TraceBlockInfo::InstrDepth.
342 // Pick the predecessor that would give this block the smallest InstrDepth.
343 unsigned Depth = PredTBI->InstrDepth + CurCount;
869 dbgs() << format("%7u Instructions\n", TBI.InstrDepth);
1214 unsigned Instrs = TBI.InstrDepth;
1266 unsigned Instrs = TBI.InstrDepth + TBI.InstrHeight;
1300 OS << "depth=" << InstrDepth;
[all...]

Completed in 123 milliseconds