summaryrefslogtreecommitdiff
path: root/simpleperf/test_util.cpp
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-08 04:42:02 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-08 04:42:02 +0000
commit0b7f6188999de41831050dc8e7fb6ff730b7ff67 (patch)
tree90bb3813b2e964d5e7e5c3cb42cc08f6e267240e /simpleperf/test_util.cpp
parent1265f0a23957196e60991d64fcfa31c29fc77565 (diff)
parentd6f259b4285f74ed240a6392a7c2b2812ed1320f (diff)
downloadextras-0b7f6188999de41831050dc8e7fb6ff730b7ff67.tar.gz
Snap for 10460766 from d6f259b4285f74ed240a6392a7c2b2812ed1320f to mainline-healthfitness-release
Change-Id: Iea0f5dd966a447278ad6076de7a6bc508287e642
Diffstat (limited to 'simpleperf/test_util.cpp')
-rw-r--r--simpleperf/test_util.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/simpleperf/test_util.cpp b/simpleperf/test_util.cpp
index d93ddcd8..60d8ea35 100644
--- a/simpleperf/test_util.cpp
+++ b/simpleperf/test_util.cpp
@@ -85,9 +85,10 @@ bool HasHardwareCounter() {
android::base::StartsWith(fingerprint, "google/sdk_gpc") ||
android::base::StartsWith(fingerprint, "generic/cf");
- if (arch == ARCH_X86_64 || arch == ARCH_X86_32 || is_emulator) {
- // On x86 and x86_64, it's likely to run on an emulator or vm without hardware perf
- // counters. It's hard to enumerate them all. So check the support at runtime.
+ if (arch == ARCH_X86_64 || arch == ARCH_X86_32 || !IsInNativeAbi() || is_emulator) {
+ // On x86 and x86_64, or when we are not in native abi, it's likely to run on an emulator or
+ // vm without hardware perf counters. It's hard to enumerate them all. So check the support
+ // at runtime.
const simpleperf::EventType* type = simpleperf::FindEventTypeByName("cpu-cycles", false);
CHECK(type != nullptr);
perf_event_attr attr = CreateDefaultPerfEventAttr(*type);