1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
SUITE_profiling_clang_PROBE() {
touch test.c
if ! $COMPILER_TYPE_CLANG; then
echo "compiler is not Clang"
elif ! command -v llvm-profdata$CLANG_VERSION_SUFFIX >/dev/null; then
echo "llvm-profdata$CLANG_VERSION_SUFFIX tool not found"
elif ! $COMPILER -c -fdebug-prefix-map=old=new test.c 2>/dev/null; then
echo "compiler does not support -fdebug-prefix-map"
elif ! $COMPILER -c -fprofile-sample-accurate test.c 2>/dev/null; then
echo "compiler does not support -fprofile-sample-accurate"
fi
}
SUITE_profiling_clang_SETUP() {
echo 'int main(void) { return 0; }' >test.c
unset CCACHE_NODIRECT
}
SUITE_profiling_clang() {
# -------------------------------------------------------------------------
TEST "-fprofile-use=file"
mkdir data
$CCACHE_COMPILE -fprofile-generate=data -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 1
$COMPILER -fprofile-generate=data test.o -o test
./test
llvm-profdata$CLANG_VERSION_SUFFIX merge -output foo.profdata data/default_*.profraw
$CCACHE_COMPILE -fprofile-use=foo.profdata -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 2
$CCACHE_COMPILE -fprofile-use=foo.profdata -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 2
./test
llvm-profdata$CLANG_VERSION_SUFFIX merge -output foo.profdata data/default_*.profraw
$CCACHE_COMPILE -fprofile-use=foo.profdata -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 3
# -------------------------------------------------------------------------
TEST "-fprofile-instr-use"
mkdir data
$CCACHE_COMPILE -fprofile-instr-generate -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 1
$COMPILER -fprofile-instr-generate test.o -o test
./test
llvm-profdata$CLANG_VERSION_SUFFIX merge -output default.profdata default.profraw
$CCACHE_COMPILE -fprofile-instr-use -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 2
$CCACHE_COMPILE -fprofile-instr-use -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 2
echo >>default.profdata # Dummy change to trigger modification
$CCACHE_COMPILE -fprofile-instr-use -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 3
# -------------------------------------------------------------------------
TEST "-fprofile-instr-use=file"
$CCACHE_COMPILE -fprofile-instr-generate=foo.profraw -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 1
$COMPILER -fprofile-instr-generate=data=foo.profraw test.o -o test
./test
llvm-profdata$CLANG_VERSION_SUFFIX merge -output foo.profdata foo.profraw
$CCACHE_COMPILE -fprofile-instr-use=foo.profdata -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 2
$CCACHE_COMPILE -fprofile-instr-use=foo.profdata -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 2
echo >>foo.profdata # Dummy change to trigger modification
$CCACHE_COMPILE -fprofile-instr-use=foo.profdata -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 3
# -------------------------------------------------------------------------
TEST "-fprofile-sample-use"
echo 'main:1:1' > sample.prof
$CCACHE_COMPILE -fprofile-sample-use=sample.prof -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 1
$CCACHE_COMPILE -fprofile-sample-use=sample.prof -fprofile-sample-accurate -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 2
$CCACHE_COMPILE -fprofile-sample-use=sample.prof -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 2
$CCACHE_COMPILE -fprofile-sample-use=sample.prof -fprofile-sample-accurate -c test.c
expect_stat direct_cache_hit 2
expect_stat cache_miss 2
echo 'main:2:2' > sample.prof
$CCACHE_COMPILE -fprofile-sample-use=sample.prof -c test.c
expect_stat direct_cache_hit 2
expect_stat cache_miss 3
echo 'main:1:1' > sample.prof
$CCACHE_COMPILE -fprofile-sample-use=sample.prof -c test.c
expect_stat direct_cache_hit 3
expect_stat cache_miss 3
# -------------------------------------------------------------------------
TEST "-fprofile-update=single"
if $COMPILER -fprofile-update=single -fprofile-generate -c test.c 2>/dev/null; then
$CCACHE_COMPILE -fprofile-update=single -fprofile-generate -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 1
$COMPILER -fprofile-generate -fprofile-update=single test.o -o test
./test
llvm-profdata$CLANG_VERSION_SUFFIX merge -output default.profdata default_*.profraw
$CCACHE_COMPILE -fprofile-update=single -fprofile-generate -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 1
$CCACHE_COMPILE -fprofile-use -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 2
fi
# -------------------------------------------------------------------------
TEST "-fprofile-update=atomic"
if $COMPILER -fprofile-update=atomic -fprofile-generate -c test.c 2>/dev/null; then
$CCACHE_COMPILE -fprofile-update=atomic -fprofile-generate -c test.c
expect_stat direct_cache_hit 0
expect_stat cache_miss 1
$COMPILER -fprofile-generate -fprofile-update=atomic test.o -o test
./test
llvm-profdata$CLANG_VERSION_SUFFIX merge -output default.profdata default_*.profraw
$CCACHE_COMPILE -fprofile-update=atomic -fprofile-generate -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 1
$CCACHE_COMPILE -fprofile-use -c test.c
expect_stat direct_cache_hit 1
expect_stat cache_miss 2
fi
}
|