| Yabin Cui | 76769e5 | 2015-07-13 12:23:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef SIMPLE_PERF_PERF_REGS_H_ |
| 18 | #define SIMPLE_PERF_PERF_REGS_H_ |
| 19 | |
| Yabin Cui | 8ca8ae8 | 2015-07-13 21:41:05 -0700 | [diff] [blame] | 20 | #if defined(USE_BIONIC_UAPI_HEADERS) |
| 21 | #include <uapi/asm-x86/asm/perf_regs.h> |
| 22 | #include <uapi/asm-arm/asm/perf_regs.h> |
| 23 | #define perf_event_arm_regs perf_event_arm64_regs |
| 24 | #include <uapi/asm-arm64/asm/perf_regs.h> |
| 25 | #else |
| Yabin Cui | 76769e5 | 2015-07-13 12:23:54 -0700 | [diff] [blame] | 26 | #include <asm-x86/asm/perf_regs.h> |
| 27 | #include <asm-arm/asm/perf_regs.h> |
| 28 | #define perf_event_arm_regs perf_event_arm64_regs |
| 29 | #include <asm-arm64/asm/perf_regs.h> |
| Yabin Cui | 8ca8ae8 | 2015-07-13 21:41:05 -0700 | [diff] [blame] | 30 | #endif |
| 31 | |
| Yabin Cui | 76769e5 | 2015-07-13 12:23:54 -0700 | [diff] [blame] | 32 | #include <stdint.h> |
| 33 | #include <string> |
| 34 | |
| 35 | enum ArchType { |
| 36 | ARCH_X86_32, |
| 37 | ARCH_X86_64, |
| 38 | ARCH_ARM, |
| 39 | ARCH_ARM64, |
| Yabin Cui | ca7b9e7 | 2015-07-13 19:44:24 -0700 | [diff] [blame] | 40 | ARCH_UNSUPPORTED, |
| Yabin Cui | 76769e5 | 2015-07-13 12:23:54 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | ArchType GetCurrentArch(); |
| 44 | bool SetCurrentArch(const std::string& arch); |
| 45 | |
| 46 | uint64_t GetSupportedRegMask(); |
| 47 | |
| 48 | std::string GetRegName(size_t reg); |
| 49 | |
| 50 | #endif // SIMPLE_PERF_PERF_REGS_H_ |