Lines Matching refs:Extra
922 unsigned Extra; // Count of extra cycles that the component adds. in shouldConvertIf() member
938 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf() local
939 LLVM_DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n"); in shouldConvertIf()
940 if (Extra > Cond.Extra) in shouldConvertIf()
941 Cond = {Extra, CondDepth}; in shouldConvertIf()
942 if (Extra > CritLimit) { in shouldConvertIf()
951 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf() local
952 LLVM_DEBUG(dbgs() << "TBB data adds " << Extra << " cycles.\n"); in shouldConvertIf()
953 if (Extra > TBlock.Extra) in shouldConvertIf()
954 TBlock = {Extra, TDepth}; in shouldConvertIf()
955 if (Extra > CritLimit) { in shouldConvertIf()
964 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf() local
965 LLVM_DEBUG(dbgs() << "FBB data adds " << Extra << " cycles.\n"); in shouldConvertIf()
966 if (Extra > FBlock.Extra) in shouldConvertIf()
967 FBlock = {Extra, FDepth}; in shouldConvertIf()
968 if (Extra > CritLimit) { in shouldConvertIf()
978 const CriticalPathInfo Short = TBlock.Extra > FBlock.Extra ? FBlock : TBlock; in shouldConvertIf()
979 const CriticalPathInfo Long = TBlock.Extra > FBlock.Extra ? TBlock : FBlock; in shouldConvertIf()
986 << Cycles{"CondCycles", Cond.Extra} << " to the critical path"; in shouldConvertIf()
987 if (Short.Extra > 0) in shouldConvertIf()
989 << Cycles{"ShortCycles", Short.Extra}; in shouldConvertIf()
990 if (Long.Extra > 0) in shouldConvertIf()
992 << Cycles{"LongCycles", Long.Extra}; in shouldConvertIf()
1002 << Cycles{"CondCycles", Cond.Extra} << " to the critical path"; in shouldConvertIf()
1003 if (Cond.Extra > CritLimit) in shouldConvertIf()
1005 if (Short.Extra > 0) { in shouldConvertIf()
1007 << Cycles{"ShortCycles", Short.Extra}; in shouldConvertIf()
1008 if (Short.Extra > CritLimit) in shouldConvertIf()
1011 if (Long.Extra > 0) { in shouldConvertIf()
1013 << Cycles{"LongCycles", Long.Extra}; in shouldConvertIf()
1014 if (Long.Extra > CritLimit) in shouldConvertIf()