/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef SIMPLE_PERF_PERF_REGS_H_ #define SIMPLE_PERF_PERF_REGS_H_ #if defined(USE_BIONIC_UAPI_HEADERS) #include #include #define perf_event_arm_regs perf_event_arm64_regs #include #else #include #include #define perf_event_arm_regs perf_event_arm64_regs #include #endif #include #include #include enum ArchType { ARCH_X86_32, ARCH_X86_64, ARCH_ARM, ARCH_ARM64, ARCH_UNSUPPORTED, }; constexpr ArchType GetBuildArch() { #if defined(__i386__) return ARCH_X86_32; #elif defined(__x86_64__) return ARCH_X86_64; #elif defined(__aarch64__) return ARCH_ARM64; #elif defined(__arm__) return ARCH_ARM; #else return ARCH_UNSUPPORTED; #endif } ArchType GetCurrentArch(); bool SetCurrentArch(const std::string& arch); uint64_t GetSupportedRegMask(); std::string GetRegName(size_t reg); struct RegSet { uint64_t valid_mask; uint64_t data[64]; }; RegSet CreateRegSet(uint64_t valid_mask, const std::vector& valid_regs); bool GetRegValue(const RegSet& regs, size_t regno, uint64_t* value); bool GetSpRegValue(const RegSet& regs, uint64_t* value); #endif // SIMPLE_PERF_PERF_REGS_H_