Lines Matching refs:Extra
958 unsigned Extra; // Count of extra cycles that the component adds. in shouldConvertIf() member
974 unsigned Extra = CondDepth - MaxDepth; in shouldConvertIf() local
975 LLVM_DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n"); in shouldConvertIf()
976 if (Extra > Cond.Extra) in shouldConvertIf()
977 Cond = {Extra, CondDepth}; in shouldConvertIf()
978 if (Extra > CritLimit) { in shouldConvertIf()
987 unsigned Extra = TDepth - MaxDepth; in shouldConvertIf() local
988 LLVM_DEBUG(dbgs() << "TBB data adds " << Extra << " cycles.\n"); in shouldConvertIf()
989 if (Extra > TBlock.Extra) in shouldConvertIf()
990 TBlock = {Extra, TDepth}; in shouldConvertIf()
991 if (Extra > CritLimit) { in shouldConvertIf()
1000 unsigned Extra = FDepth - MaxDepth; in shouldConvertIf() local
1001 LLVM_DEBUG(dbgs() << "FBB data adds " << Extra << " cycles.\n"); in shouldConvertIf()
1002 if (Extra > FBlock.Extra) in shouldConvertIf()
1003 FBlock = {Extra, FDepth}; in shouldConvertIf()
1004 if (Extra > CritLimit) { in shouldConvertIf()
1014 const CriticalPathInfo Short = TBlock.Extra > FBlock.Extra ? FBlock : TBlock; in shouldConvertIf()
1015 const CriticalPathInfo Long = TBlock.Extra > FBlock.Extra ? TBlock : FBlock; in shouldConvertIf()
1022 << Cycles{"CondCycles", Cond.Extra} << " to the critical path"; in shouldConvertIf()
1023 if (Short.Extra > 0) in shouldConvertIf()
1025 << Cycles{"ShortCycles", Short.Extra}; in shouldConvertIf()
1026 if (Long.Extra > 0) in shouldConvertIf()
1028 << Cycles{"LongCycles", Long.Extra}; in shouldConvertIf()
1038 << Cycles{"CondCycles", Cond.Extra} << " to the critical path"; in shouldConvertIf()
1039 if (Cond.Extra > CritLimit) in shouldConvertIf()
1041 if (Short.Extra > 0) { in shouldConvertIf()
1043 << Cycles{"ShortCycles", Short.Extra}; in shouldConvertIf()
1044 if (Short.Extra > CritLimit) in shouldConvertIf()
1047 if (Long.Extra > 0) { in shouldConvertIf()
1049 << Cycles{"LongCycles", Long.Extra}; in shouldConvertIf()
1050 if (Long.Extra > CritLimit) in shouldConvertIf()