Searched refs:InstrHeight (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DMachineTraceMetrics.h147 unsigned InstrHeight; member in struct:llvm::MachineTraceMetrics::TraceBlockInfo
151 InstrDepth(~0u), InstrHeight(~0u),
160 bool hasValidHeight() const { return InstrHeight != ~0u; }
166 void invalidateHeight() { InstrHeight = ~0u; HasValidInstrHeights = false; }
228 return TBI.InstrDepth + TBI.InstrHeight;
H A DMachineTraceMetrics.cpp150 TBI->InstrHeight = MTM.getResources(MBB)->InstrCount;
162 TBI->InstrHeight += SuccTBI->InstrHeight;
272 // Pick the successor that would give this block the smallest InstrHeight.
273 unsigned Height = SuccTBI->InstrHeight;
1075 unsigned Instrs = TBI.InstrDepth + TBI.InstrHeight;
1107 OS << "height=" << InstrHeight;

Completed in 186 milliseconds