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

/external/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h151 unsigned InstrDepth; member in struct:llvm::MachineTraceMetrics::TraceBlockInfo
159 InstrDepth(~0u), InstrHeight(~0u),
164 bool hasValidDepth() const { return InstrDepth != ~0u; }
171 void invalidateDepth() { InstrDepth = ~0u; HasValidInstrDepths = false; }
194 return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth;
249 return TBI.InstrDepth + TBI.InstrHeight;
/external/llvm/lib/CodeGen/
H A DMachineCombiner.cpp128 SmallVector<unsigned, 16> InstrDepth; local
134 // are tracked in the InstrIdxForVirtReg map depth is looked up in InstrDepth
150 assert(II->second < InstrDepth.size() && "Bad Index");
154 DepthOp = InstrDepth[II->second];
169 InstrDepth.push_back(IDepth);
172 return InstrDepth[NewRootIdx];
H A DMachineTraceMetrics.cpp171 TBI->InstrDepth = 0;
184 TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount;
251 /// Compare TraceBlockInfo::InstrDepth.
329 // Pick the predecessor that would give this block the smallest InstrDepth.
330 unsigned Depth = PredTBI->InstrDepth + CurCount;
811 dbgs() << format("%7u Instructions\n", TBI.InstrDepth);
1190 unsigned Instrs = TBI.InstrDepth;
1242 unsigned Instrs = TBI.InstrDepth + TBI.InstrHeight;
1276 OS << "depth=" << InstrDepth;
[all...]

Completed in 87 milliseconds