blob: 4b9c91ec5f7e1e33bcc50bc3eba350c9b4cfdc92 [file] [log] [blame]
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -08001/*
2 * Copyright (C) 2012 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 ANDROID_TRACE_H
18#define ANDROID_TRACE_H
19
Elliott Hughes9b828ad2015-07-30 08:47:35 -070020#if defined(__ANDROID__)
Tim Murray214c7012013-05-23 13:44:08 -070021
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080022#include <stdint.h>
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080023
Alex Ray5b2d36e2012-11-14 17:28:10 -080024#include <cutils/trace.h>
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080025
Alex Ray5b2d36e2012-11-14 17:28:10 -080026// See <cutils/trace.h> for more ATRACE_* macros.
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080027
Josh Gao01937ee2016-11-29 10:49:23 -080028// ATRACE_NAME traces from its location until the end of its enclosing scope.
29#define _PASTE(x, y) x ## y
30#define PASTE(x, y) _PASTE(x,y)
31#define ATRACE_NAME(name) android::ScopedTrace PASTE(___tracer, __LINE__) (ATRACE_TAG, name)
Mathias Agopian22dbf392017-02-28 15:06:51 -080032
Alex Rayfcb349f2012-11-30 19:32:12 -080033// ATRACE_CALL is an ATRACE_NAME that uses the current function name.
34#define ATRACE_CALL() ATRACE_NAME(__FUNCTION__)
Romain Guy3fc49ad2012-10-18 16:16:10 -070035
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080036namespace android {
37
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080038class ScopedTrace {
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080039public:
Mathias Agopian22dbf392017-02-28 15:06:51 -080040 inline ScopedTrace(uint64_t tag, const char* name) : mTag(tag) {
41 atrace_begin(mTag, name);
42 }
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080043
Mathias Agopian22dbf392017-02-28 15:06:51 -080044 inline ~ScopedTrace() {
45 atrace_end(mTag);
46 }
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080047
48private:
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080049 uint64_t mTag;
50};
51
Pirama Arumuga Nainar90affce2018-04-11 23:10:28 -070052} // namespace android
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080053
Elliott Hughes9b828ad2015-07-30 08:47:35 -070054#else // !__ANDROID__
Tim Murray214c7012013-05-23 13:44:08 -070055
56#define ATRACE_NAME(...)
57#define ATRACE_CALL()
58
Elliott Hughes9b828ad2015-07-30 08:47:35 -070059#endif // __ANDROID__
Tim Murray214c7012013-05-23 13:44:08 -070060
Jamie Gennis2ccfe1a2012-02-23 11:28:28 -080061#endif // ANDROID_TRACE_H