Lines Matching defs:Extra
970 unsigned Extra; // Count of extra cycles that the component adds.
985 unsigned Extra = CondDepth - MaxDepth;
986 LLVM_DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n");
987 if (Extra > Cond.Extra)
988 Cond = {Extra, CondDepth};
989 if (Extra > CritLimit) {
998 unsigned Extra = TDepth - MaxDepth;
999 LLVM_DEBUG(dbgs() << "TBB data adds " << Extra << " cycles.\n");
1000 if (Extra > TBlock.Extra)
1001 TBlock = {Extra, TDepth};
1002 if (Extra > CritLimit) {
1011 unsigned Extra = FDepth - MaxDepth;
1012 LLVM_DEBUG(dbgs() << "FBB data adds " << Extra << " cycles.\n");
1013 if (Extra > FBlock.Extra)
1014 FBlock = {Extra, FDepth};
1015 if (Extra > CritLimit) {
1025 const CriticalPathInfo Short = TBlock.Extra > FBlock.Extra ? FBlock : TBlock;
1026 const CriticalPathInfo Long = TBlock.Extra > FBlock.Extra ? TBlock : FBlock;
1033 << Cycles{"CondCycles", Cond.Extra} << " to the critical path";
1034 if (Short.Extra > 0)
1036 << Cycles{"ShortCycles", Short.Extra};
1037 if (Long.Extra > 0)
1039 << Cycles{"LongCycles", Long.Extra};
1049 << Cycles{"CondCycles", Cond.Extra} << " to the critical path";
1050 if (Cond.Extra > CritLimit)
1052 if (Short.Extra > 0) {
1054 << Cycles{"ShortCycles", Short.Extra};
1055 if (Short.Extra > CritLimit)
1058 if (Long.Extra > 0) {
1060 << Cycles{"LongCycles", Long.Extra};
1061 if (Long.Extra > CritLimit)