Home ⌂Doc Index ◂Up ▴
Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
_tbb_trace_impl.h
Go to the documentation of this file.
1 /*
2  Copyright (c) 2005-2020 Intel Corporation
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 _FGT_TBB_TRACE_IMPL_H
18 #define _FGT_TBB_TRACE_IMPL_H
19 
20 #include "../tbb_profiling.h"
21 
22 namespace tbb {
23  namespace internal {
24 
25 #if TBB_PREVIEW_ALGORITHM_TRACE
26  static inline void fgt_algorithm( string_index t, void *algorithm, void *parent ) {
27  itt_make_task_group( ITT_DOMAIN_FLOW, algorithm, ALGORITHM, parent, ALGORITHM, t );
28  }
29  static inline void fgt_begin_algorithm( string_index t, void *algorithm ) {
30  itt_task_begin( ITT_DOMAIN_FLOW, algorithm, ALGORITHM, NULL, FLOW_NULL, t );
31  }
32  static inline void fgt_end_algorithm( void * ) {
34  }
35  static inline void fgt_alg_begin_body( string_index t, void *body, void *algorithm ) {
36  itt_task_begin( ITT_DOMAIN_FLOW, body, FLOW_BODY, algorithm, ALGORITHM, t );
37  }
38  static inline void fgt_alg_end_body( void * ) {
40  }
41 
42 #else // TBB_PREVIEW_ALGORITHM_TRACE
43 
44  static inline void fgt_algorithm( string_index /*t*/, void * /*algorithm*/, void * /*parent*/ ) { }
45  static inline void fgt_begin_algorithm( string_index /*t*/, void * /*algorithm*/ ) { }
46  static inline void fgt_end_algorithm( void * ) { }
47  static inline void fgt_alg_begin_body( string_index /*t*/, void * /*body*/, void * /*algorithm*/ ) { }
48  static inline void fgt_alg_end_body( void * ) { }
49 
50 #endif // TBB_PREVIEW_ALGORITHM_TRACEE
51 
52  } // namespace internal
53 } // namespace tbb
54 
55 #endif
void itt_task_begin(itt_domain_enum, void *, unsigned long long, void *, unsigned long long, string_index)
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id parent
static void fgt_algorithm(string_index, void *, void *)
void itt_task_end(itt_domain_enum)
static void fgt_alg_begin_body(string_index, void *, void *)
static void fgt_alg_end_body(void *)
static void fgt_end_algorithm(void *)
void itt_make_task_group(itt_domain_enum, void *, unsigned long long, void *, unsigned long long, string_index)
The graph class.
static void fgt_begin_algorithm(string_index, void *)

Copyright © 2005-2020 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.