Home
last modified time | relevance | path

Searched refs:hasValidHeight (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp228 assert(SuccTBI->hasValidHeight() && "Trace below has not been computed yet"); in computeHeightResources()
253 return TBI->hasValidHeight() ? TBI : nullptr; in getHeightResources()
474 if (LB.Downward ? TBI.hasValidHeight() : TBI.hasValidDepth()) in insertEdge()
546 if (BadTBI.hasValidHeight()) { in invalidate()
557 if (!TBI.hasValidHeight()) in invalidate()
618 if (TBI.hasValidHeight() && TBI.Succ) { in verify()
621 assert(BlockInfo[TBI.Succ->getNumber()].hasValidHeight() && in verify()
1015 assert(TBI.hasValidHeight() && "Incomplete trace"); in computeInstrHeights()
1167 if (!TBI.hasValidDepth() || !TBI.hasValidHeight()) in getTrace()
1315 if (hasValidHeight()) { in print()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h195 bool hasValidHeight() const { return InstrHeight != ~0u; } in hasValidHeight() function