24 #ifndef LLVM_ANALYSIS_ALIASANALYSISEVALUATOR_H
25 #define LLVM_ANALYSIS_ALIASANALYSISEVALUATOR_H
35 int64_t FunctionCount = 0;
36 int64_t NoAliasCount = 0, MayAliasCount = 0, PartialAliasCount = 0;
37 int64_t MustAliasCount = 0;
38 int64_t NoModRefCount = 0, ModCount = 0, RefCount = 0, ModRefCount = 0;
39 int64_t MustCount = 0, MustRefCount = 0, MustModCount = 0;
40 int64_t MustModRefCount = 0;
45 : FunctionCount(
Arg.FunctionCount), NoAliasCount(
Arg.NoAliasCount),
46 MayAliasCount(
Arg.MayAliasCount),
47 PartialAliasCount(
Arg.PartialAliasCount),
48 MustAliasCount(
Arg.MustAliasCount), NoModRefCount(
Arg.NoModRefCount),
49 ModCount(
Arg.ModCount), RefCount(
Arg.RefCount),
50 ModRefCount(
Arg.ModRefCount), MustCount(
Arg.MustCount),
51 MustRefCount(
Arg.MustRefCount), MustModCount(
Arg.MustModCount),
52 MustModRefCount(
Arg.MustModRefCount) {
53 Arg.FunctionCount = 0;