Lines Matching defs:Stats
986 PerFunctionStats &Stats = Entry.getValue();
987 uint64_t TotalVars = Stats.VarsInFunction.size() *
988 (Stats.NumFnInlined + Stats.NumFnOutOfLine);
990 if (!Stats.IsFunction)
992 Stats.NumLocalVars + Stats.ConstantMembers + Stats.NumArtificial;
993 uint64_t Constants = Stats.ConstantMembers;
994 VarParamWithLoc += Stats.TotalVarWithLoc + Constants;
996 VarParamUnique += Stats.VarsInFunction.size();
998 : Stats.VarsInFunction) llvm::dbgs()
1000 NumFunctions += Stats.IsFunction;
1001 NumFuncsWithSrcLoc += Stats.HasSourceLocation;
1002 NumInlinedFunctions += Stats.IsFunction * Stats.NumFnInlined;
1003 NumAbstractOrigins += Stats.IsFunction * Stats.NumAbstractOrigins;
1004 ParamTotal += Stats.NumParams;
1005 ParamWithType += Stats.NumParamTypes;
1006 ParamWithLoc += Stats.NumParamLocations;
1007 ParamWithSrcLoc += Stats.NumParamSourceLocations;
1008 LocalVarTotal += Stats.NumLocalVars;
1009 LocalVarWithType += Stats.NumLocalVarTypes;
1010 LocalVarWithLoc += Stats.NumLocalVarLocations;
1011 LocalVarWithSrcLoc += Stats.NumLocalVarSourceLocations;