File tree 13 files changed +27
-27
lines changed
13 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 1
- // ===---- OmptCallback .h - Target independent OMPT callbacks --*- C++ -*-- -===//
1
+ // ===-- OpenMP/OMPT/Callback .h - OpenMP Tooling callbacks ------- *- C++ -*-===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
11
11
//
12
12
// ===----------------------------------------------------------------------===//
13
13
14
- #ifndef _OMPTCALLBACK_H
15
- #define _OMPTCALLBACK_H
14
+ #ifndef OMPTARGET_OPENMP_OMPT_CALLBACK_H
15
+ #define OMPTARGET_OPENMP_OMPT_CALLBACK_H
16
16
17
17
#ifdef OMPT_SUPPORT
18
18
@@ -102,4 +102,4 @@ extern bool Initialized;
102
102
#define performIfOmptInitialized (stmt )
103
103
#endif // OMPT_SUPPORT
104
104
105
- #endif // _OMPTCALLBACK_H
105
+ #endif // OMPTARGET_OPENMP_OMPT_CALLBACK_H
Original file line number Diff line number Diff line change 1
- // ===- OmptConnector .h - Target independent OpenMP target RTL - - C++ ----- -===//
1
+ // ===-- OpenMP/OMPT/Connector .h - OpenMP Tooling lib connector -* - C++ -* -===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
12
12
//
13
13
// ===----------------------------------------------------------------------===//
14
14
15
- #ifndef _OMPTCONNECTOR_H
16
- #define _OMPTCONNECTOR_H
15
+ #ifndef OMPTARGET_OPENMP_OMPT_CONNECTOR_H
16
+ #define OMPTARGET_OPENMP_OMPT_CONNECTOR_H
17
17
18
18
#ifdef OMPT_SUPPORT
19
19
@@ -106,4 +106,4 @@ class OmptLibraryConnectorTy {
106
106
107
107
#pragma pop_macro("DEBUG_PREFIX")
108
108
109
- #endif // _OMPTCONNECTOR_H
109
+ #endif // OMPTARGET_OPENMP_OMPT_CONNECTOR_H
Original file line number Diff line number Diff line change 1
- // ===-------- OmptInterface .h - Target independent OpenMP target RTL ----- -===//
1
+ // ===-- OpenMP/OMPT/Interface .h - OpenMP Tooling interfaces ----*- C++ -* -===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
//
9
- // Declarations for OpenMP Tool callback dispatchers
9
+ // Declarations for OpenMP Tool callback dispatchers.
10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
18
18
#include < functional>
19
19
#include < tuple>
20
20
21
- #include " OmptCallback .h"
21
+ #include " Callback .h"
22
22
#include " omp-tools.h"
23
23
24
24
#include " llvm/Support/ErrorHandling.h"
Original file line number Diff line number Diff line change 25
25
#include " Shared/Utils.h"
26
26
27
27
#include " GlobalHandler.h"
28
- #include " OmptCallback .h"
28
+ #include " OpenMP/OMPT/Callback .h"
29
29
#include " PluginInterface.h"
30
30
#include " UtilitiesRTL.h"
31
31
#include " omptarget.h"
Original file line number Diff line number Diff line change 20
20
21
21
#include " Shared/Debug.h"
22
22
23
- #include " OmptCallback .h"
24
- #include " OmptConnector .h"
23
+ #include " OpenMP/OMPT/Callback .h"
24
+ #include " OpenMP/OMPT/Connector .h"
25
25
26
26
using namespace llvm ::omp::target::ompt;
27
27
Original file line number Diff line number Diff line change 20
20
#include " omptargetplugin.h"
21
21
22
22
#ifdef OMPT_SUPPORT
23
- #include " OmptCallback .h"
23
+ #include " OpenMP/OMPT/Callback .h"
24
24
#include " omp-tools.h"
25
25
#endif
26
26
Original file line number Diff line number Diff line change 20
20
#include " Shared/Environment.h"
21
21
22
22
#include " GlobalHandler.h"
23
- #include " OmptCallback .h"
23
+ #include " OpenMP/OMPT/Callback .h"
24
24
#include " PluginInterface.h"
25
25
26
26
#include " llvm/BinaryFormat/ELF.h"
Original file line number Diff line number Diff line change 20
20
#include " Shared/Environment.h"
21
21
22
22
#include " GlobalHandler.h"
23
- #include " OmptCallback .h"
23
+ #include " OpenMP/OMPT/Callback .h"
24
24
#include " PluginInterface.h"
25
25
#include " omptarget.h"
26
26
Original file line number Diff line number Diff line change 20
20
21
21
#include " Shared/Debug.h"
22
22
23
- #include " OmptCallback .h"
24
- #include " OmptConnector .h"
25
- #include " OmptInterface .h"
23
+ #include " OpenMP/OMPT/Callback .h"
24
+ #include " OpenMP/OMPT/Connector .h"
25
+ #include " OpenMP/OMPT/Interface .h"
26
26
27
27
#undef DEBUG_PREFIX
28
28
#define DEBUG_PREFIX " OMPT"
Original file line number Diff line number Diff line change 11
11
// ===----------------------------------------------------------------------===//
12
12
13
13
#include " device.h"
14
- #include " OmptCallback .h"
15
- #include " OmptInterface .h"
14
+ #include " OpenMP/OMPT/Callback .h"
15
+ #include " OpenMP/OMPT/Interface .h"
16
16
#include " omptarget.h"
17
17
#include " private.h"
18
18
#include " rtl.h"
Original file line number Diff line number Diff line change 11
11
//
12
12
// ===----------------------------------------------------------------------===//
13
13
14
- #include " OmptCallback .h"
15
- #include " OmptInterface .h"
14
+ #include " OpenMP/OMPT/Interface .h"
15
+ #include " OpenMP/OMPT/Callback .h"
16
16
#include " device.h"
17
17
#include " omptarget.h"
18
18
#include " private.h"
Original file line number Diff line number Diff line change 12
12
// ===----------------------------------------------------------------------===//
13
13
14
14
#include " omptarget.h"
15
- #include " OmptCallback .h"
16
- #include " OmptInterface .h"
15
+ #include " OpenMP/OMPT/Callback .h"
16
+ #include " OpenMP/OMPT/Interface .h"
17
17
#include " device.h"
18
18
#include " private.h"
19
19
#include " rtl.h"
Original file line number Diff line number Diff line change 12
12
13
13
#include " llvm/Object/OffloadBinary.h"
14
14
15
- #include " OmptCallback .h"
15
+ #include " OpenMP/OMPT/Callback .h"
16
16
#include " device.h"
17
17
#include " private.h"
18
18
#include " rtl.h"
You can’t perform that action at this time.
0 commit comments