Skip to content

Commit 487d5af

Browse files
authoredMay 17, 2024··
[ctx_profile] Integration test (#92456)
Compile with clang a program that's instrumented for contextual profiling and verify a profile can be collected.
1 parent f7516c7 commit 487d5af

File tree

3 files changed

+116
-0
lines changed

3 files changed

+116
-0
lines changed
 

‎compiler-rt/lib/ctx_profile/CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,12 @@ append_list_if(COMPILER_RT_HAS_NOSTDINCXX_FLAG -nostdinc++ EXTRA_FLAGS)
1818
if(COMPILER_RT_INCLUDE_TESTS)
1919
add_subdirectory(tests)
2020
endif()
21+
22+
add_compiler_rt_runtime(clang_rt.ctx_profile
23+
STATIC
24+
ARCHS ${CTX_PROFILE_SUPPORTED_ARCH}
25+
OBJECT_LIBS RTSanitizerCommon RTSanitizerCommonLibc
26+
CFLAGS ${EXTRA_FLAGS}
27+
SOURCES ${CTX_PROFILE_SOURCES}
28+
ADDITIONAL_HEADERS ${CTX_PROFILE_HEADERS}
29+
PARENT_TARGET ctx_profile)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
// Simple integration test for contextual instrumentation
2+
//
3+
// Copy the header defining ContextNode.
4+
// RUN: mkdir -p %t_include
5+
// RUN: cp %llvm_src/include/llvm/ProfileData/CtxInstrContextNode.h %t_include/
6+
//
7+
// Compile with ctx instrumentation "on". We treat "theRoot" as callgraph root.
8+
// RUN: %clangxx %s -lclang_rt.ctx_profile -I%t_include -O2 -o %t.bin -mllvm -profile-context-root=theRoot
9+
//
10+
// Run the binary, and observe the profile fetch handler's output.
11+
// RUN: %t.bin | FileCheck %s
12+
13+
#include "CtxInstrContextNode.h"
14+
#include <cstdio>
15+
#include <iostream>
16+
17+
using namespace llvm::ctx_profile;
18+
extern "C" bool __llvm_ctx_profile_fetch(void *Data,
19+
bool (*Writer)(void *,
20+
const ContextNode &));
21+
22+
// avoid name mangling
23+
extern "C" {
24+
__attribute__((noinline)) void someFunction(int I) {
25+
if (I % 2)
26+
printf("check odd\n");
27+
else
28+
printf("check even\n");
29+
}
30+
31+
// block inlining because the pre-inliner otherwise will inline this - it's
32+
// too small.
33+
__attribute__((noinline)) void theRoot() {
34+
printf("check 1\n");
35+
someFunction(1);
36+
#pragma nounroll
37+
for (auto I = 0; I < 2; ++I) {
38+
someFunction(I);
39+
}
40+
}
41+
}
42+
43+
// Make sure the program actually ran correctly.
44+
// CHECK: check 1
45+
// CHECK-NEXT: check odd
46+
// CHECK-NEXT: check even
47+
// CHECK-NEXT: check odd
48+
49+
void printProfile(const ContextNode &Node, const std::string &Indent,
50+
const std::string &Increment) {
51+
std::cout << Indent << "Guid: " << Node.guid() << std::endl;
52+
std::cout << Indent << "Entries: " << Node.entrycount() << std::endl;
53+
std::cout << Indent << Node.counters_size() << " counters and "
54+
<< Node.callsites_size() << " callsites" << std::endl;
55+
std::cout << Indent << "Counter values: ";
56+
for (uint32_t I = 0U; I < Node.counters_size(); ++I)
57+
std::cout << Node.counters()[I] << " ";
58+
std::cout << std::endl;
59+
for (uint32_t I = 0U; I < Node.callsites_size(); ++I)
60+
for (const auto *N = Node.subContexts()[I]; N; N = N->next()) {
61+
std::cout << Indent << "At Index " << I << ":" << std::endl;
62+
printProfile(*N, Indent + Increment, Increment);
63+
}
64+
}
65+
66+
// 8657661246551306189 is theRoot. We expect 2 callsites and 2 counters - one
67+
// for the entry basic block and one for the loop.
68+
// 6759619411192316602 is someFunction. We expect all context instances to show
69+
// the same nr of counters and callsites, but the counters will be different.
70+
// The first context is for the first callsite with theRoot as parent, and the
71+
// second counter in someFunction will be 0 (we pass an odd nr, and the other
72+
// path gets instrumented).
73+
// The second context is in the loop. We expect 2 entries and each of the
74+
// branches would be taken once, so the second counter is 1.
75+
// CHECK-NEXT: Guid: 8657661246551306189
76+
// CHECK-NEXT: Entries: 1
77+
// CHECK-NEXT: 2 counters and 3 callsites
78+
// CHECK-NEXT: Counter values: 1 2
79+
// CHECK-NEXT: At Index 1:
80+
// CHECK-NEXT: Guid: 6759619411192316602
81+
// CHECK-NEXT: Entries: 1
82+
// CHECK-NEXT: 2 counters and 2 callsites
83+
// CHECK-NEXT: Counter values: 1 0
84+
// CHECK-NEXT: At Index 2:
85+
// CHECK-NEXT: Guid: 6759619411192316602
86+
// CHECK-NEXT: Entries: 2
87+
// CHECK-NEXT: 2 counters and 2 callsites
88+
// CHECK-NEXT: Counter values: 2 1
89+
90+
bool profileWriter() {
91+
return __llvm_ctx_profile_fetch(
92+
nullptr, +[](void *, const ContextNode &Node) {
93+
printProfile(Node, "", " ");
94+
return true;
95+
});
96+
}
97+
98+
int main(int argc, char **argv) {
99+
theRoot();
100+
// This would be implemented in a specific RPC handler, but here we just call
101+
// it directly.
102+
return !profileWriter();
103+
}

‎compiler-rt/test/ctx_profile/lit.cfg.py

+4
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ def get_required_attr(config, attr_name):
2929
config.test_source_root = os.path.dirname(__file__)
3030
# Default test suffixes.
3131
config.suffixes = [".c", ".cpp", ".test"]
32+
33+
config.substitutions.append(
34+
("%clangxx ", " ".join([config.clang] + config.cxx_mode_flags) + " ")
35+
)

0 commit comments

Comments
 (0)
Please sign in to comment.