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