| 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 |  | 
| Josh Gao | 4956c37 | 2019-12-19 16:35:51 -0800 | [diff] [blame] | 19 | #include "platform/bionic/macros.h" | 
| Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 20 |  | 
|  | 21 | // Tracing class for bionic. To begin a trace at a specified point: | 
|  | 22 | //   ScopedTrace("Trace message"); | 
|  | 23 | // The trace will end when the contructor goes out of scope. | 
|  | 24 |  | 
| Dan Albert | ebb6b4a | 2014-08-13 11:25:01 -0700 | [diff] [blame] | 25 | class __LIBC_HIDDEN__ ScopedTrace { | 
| Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 26 | public: | 
|  | 27 | explicit ScopedTrace(const char* message); | 
|  | 28 | ~ScopedTrace(); | 
|  | 29 |  | 
| Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 30 | void End(); | 
| Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 31 | private: | 
| Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 32 | bool called_end_; | 
| Elliott Hughes | 5e62b34 | 2018-10-25 11:00:00 -0700 | [diff] [blame] | 33 | BIONIC_DISALLOW_COPY_AND_ASSIGN(ScopedTrace); | 
| Elliott Hughes | 9e87f2f | 2014-09-17 14:59:24 -0700 | [diff] [blame] | 34 | }; | 
|  | 35 |  | 
| Dimitry Ivanov | 2a4a5e7 | 2017-03-20 10:54:52 -0700 | [diff] [blame] | 36 | void bionic_trace_begin(const char* message); | 
|  | 37 | void bionic_trace_end(); |