Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 | |
Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 17 | #pragma once |
Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 18 | |
Bowgo Tsai | d0ecf0b | 2020-04-13 13:07:43 +0800 | [diff] [blame] | 19 | #include <cutils/trace.h> // For ATRACE_TAG_BIONIC. |
| 20 | |
Josh Gao | 4956c37 | 2019-12-19 16:35:51 -0800 | [diff] [blame] | 21 | #include "platform/bionic/macros.h" |
Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 22 | |
Bowgo Tsai | d0ecf0b | 2020-04-13 13:07:43 +0800 | [diff] [blame] | 23 | static constexpr char kTraceTagsProp[] = "debug.atrace.tags.enableflags"; |
| 24 | |
Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 25 | // Tracing class for bionic. To begin a trace at a specified point: |
| 26 | // ScopedTrace("Trace message"); |
| 27 | // The trace will end when the contructor goes out of scope. |
| 28 | |
Dan Albert | ebb6b4a | 2014-08-13 11:25:01 -0700 | [diff] [blame] | 29 | class __LIBC_HIDDEN__ ScopedTrace { |
Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 30 | public: |
| 31 | explicit ScopedTrace(const char* message); |
| 32 | ~ScopedTrace(); |
| 33 | |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 34 | void End(); |
Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 35 | private: |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 36 | bool called_end_; |
Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 37 | BIONIC_DISALLOW_COPY_AND_ASSIGN(ScopedTrace); |
Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Bowgo Tsai | d0ecf0b | 2020-04-13 13:07:43 +0800 | [diff] [blame] | 40 | int get_trace_marker_fd(); |
| 41 | bool should_trace(const uint64_t enable_tags = ATRACE_TAG_BIONIC); |
| 42 | void output_trace(const char* message, const char event = 'B'); |
| 43 | |
Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 44 | void bionic_trace_begin(const char* message); |
| 45 | void bionic_trace_end(); |