Lines Matching defs:Extra
956 unsigned Extra; // Count of extra cycles that the component adds.
971 unsigned Extra = CondDepth - MaxDepth;
972 LLVM_DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n");
973 if (Extra > Cond.Extra)
974 Cond = {Extra, CondDepth};
975 if (Extra > CritLimit) {
984 unsigned Extra = TDepth - MaxDepth;
985 LLVM_DEBUG(dbgs() << "TBB data adds " << Extra << " cycles.\n");
986 if (Extra > TBlock.Extra)
987 TBlock = {Extra, TDepth};
988 if (Extra > CritLimit) {
997 unsigned Extra = FDepth - MaxDepth;
998 LLVM_DEBUG(dbgs() << "FBB data adds " << Extra << " cycles.\n");
999 if (Extra > FBlock.Extra)
1000 FBlock = {Extra, FDepth};
1001 if (Extra > CritLimit) {
1011 const CriticalPathInfo Short = TBlock.Extra > FBlock.Extra ? FBlock : TBlock;
1012 const CriticalPathInfo Long = TBlock.Extra > FBlock.Extra ? TBlock : FBlock;
1019 << Cycles{"CondCycles", Cond.Extra} << " to the critical path";
1020 if (Short.Extra > 0)
1022 << Cycles{"ShortCycles", Short.Extra};
1023 if (Long.Extra > 0)
1025 << Cycles{"LongCycles", Long.Extra};
1035 << Cycles{"CondCycles", Cond.Extra} << " to the critical path";
1036 if (Cond.Extra > CritLimit)
1038 if (Short.Extra > 0) {
1040 << Cycles{"ShortCycles", Short.Extra};
1041 if (Short.Extra > CritLimit)
1044 if (Long.Extra > 0) {
1046 << Cycles{"LongCycles", Long.Extra};
1047 if (Long.Extra > CritLimit)