Lines Matching refs:Extra

924     unsigned Extra; // Count of extra cycles that the component adds.  in shouldConvertIf()  member
940 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf() local
941 LLVM_DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n"); in shouldConvertIf()
942 if (Extra > Cond.Extra) in shouldConvertIf()
943 Cond = {Extra, CondDepth}; in shouldConvertIf()
944 if (Extra > CritLimit) { in shouldConvertIf()
953 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf() local
954 LLVM_DEBUG(dbgs() << "TBB data adds " << Extra << " cycles.\n"); in shouldConvertIf()
955 if (Extra > TBlock.Extra) in shouldConvertIf()
956 TBlock = {Extra, TDepth}; in shouldConvertIf()
957 if (Extra > CritLimit) { in shouldConvertIf()
966 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf() local
967 LLVM_DEBUG(dbgs() << "FBB data adds " << Extra << " cycles.\n"); in shouldConvertIf()
968 if (Extra > FBlock.Extra) in shouldConvertIf()
969 FBlock = {Extra, FDepth}; in shouldConvertIf()
970 if (Extra > CritLimit) { in shouldConvertIf()
980 const CriticalPathInfo Short = TBlock.Extra > FBlock.Extra ? FBlock : TBlock; in shouldConvertIf()
981 const CriticalPathInfo Long = TBlock.Extra > FBlock.Extra ? TBlock : FBlock; in shouldConvertIf()
988 << Cycles{"CondCycles", Cond.Extra} << " to the critical path"; in shouldConvertIf()
989 if (Short.Extra > 0) in shouldConvertIf()
991 << Cycles{"ShortCycles", Short.Extra}; in shouldConvertIf()
992 if (Long.Extra > 0) in shouldConvertIf()
994 << Cycles{"LongCycles", Long.Extra}; in shouldConvertIf()
1004 << Cycles{"CondCycles", Cond.Extra} << " to the critical path"; in shouldConvertIf()
1005 if (Cond.Extra > CritLimit) in shouldConvertIf()
1007 if (Short.Extra > 0) { in shouldConvertIf()
1009 << Cycles{"ShortCycles", Short.Extra}; in shouldConvertIf()
1010 if (Short.Extra > CritLimit) in shouldConvertIf()
1013 if (Long.Extra > 0) { in shouldConvertIf()
1015 << Cycles{"LongCycles", Long.Extra}; in shouldConvertIf()
1016 if (Long.Extra > CritLimit) in shouldConvertIf()