Lines Matching refs:CalleeMetrics
616 CodeMetrics &CalleeMetrics = CachedFunctionInfo[Callee].Metrics; in growCachedCostInfo() local
621 if (CalleeMetrics.NumBlocks == 0) { in growCachedCostInfo()
628 CallerMetrics.usesDynamicAlloca |= CalleeMetrics.usesDynamicAlloca; in growCachedCostInfo()
632 CallerMetrics.callsSetJmp |= CalleeMetrics.callsSetJmp; in growCachedCostInfo()
633 CallerMetrics.isRecursive |= CalleeMetrics.isRecursive; in growCachedCostInfo()
634 CallerMetrics.containsIndirectBr |= CalleeMetrics.containsIndirectBr; in growCachedCostInfo()
636 CallerMetrics.NumInsts += CalleeMetrics.NumInsts; in growCachedCostInfo()
637 CallerMetrics.NumBlocks += CalleeMetrics.NumBlocks; in growCachedCostInfo()
638 CallerMetrics.NumCalls += CalleeMetrics.NumCalls; in growCachedCostInfo()
639 CallerMetrics.NumVectorInsts += CalleeMetrics.NumVectorInsts; in growCachedCostInfo()
640 CallerMetrics.NumRets += CalleeMetrics.NumRets; in growCachedCostInfo()