File tree Expand file tree Collapse file tree 15 files changed +16
-17
lines changed Expand file tree Collapse file tree 15 files changed +16
-17
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 13
13
#ifndef FORTRAN_LOWER_REDUCTIONPROCESSOR_H
14
14
#define FORTRAN_LOWER_REDUCTIONPROCESSOR_H
15
15
16
- #include " Clauses.h"
16
+ #include " flang/Lower/OpenMP/ Clauses.h"
17
17
#include " flang/Optimizer/Builder/FIRBuilder.h"
18
18
#include " flang/Optimizer/Dialect/FIRType.h"
19
19
#include " flang/Parser/parse-tree.h"
Original file line number Diff line number Diff line change 12
12
13
13
#include " flang/Lower/Bridge.h"
14
14
15
- #include " OpenMP/ReductionProcessor.h"
16
15
#include " flang/Lower/Allocatable.h"
17
16
#include " flang/Lower/CallInterface.h"
18
17
#include " flang/Lower/Coarray.h"
32
31
#include " flang/Lower/PFTBuilder.h"
33
32
#include " flang/Lower/Runtime.h"
34
33
#include " flang/Lower/StatementContext.h"
34
+ #include " flang/Lower/Support/ReductionProcessor.h"
35
35
#include " flang/Lower/Support/Utils.h"
36
36
#include " flang/Optimizer/Builder/BoxValue.h"
37
37
#include " flang/Optimizer/Builder/CUFCommon.h"
Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ add_flang_library(FortranLower
28
28
OpenMP/DataSharingProcessor.cpp
29
29
OpenMP/Decomposer.cpp
30
30
OpenMP/OpenMP.cpp
31
- OpenMP/ReductionProcessor.cpp
32
31
OpenMP/Utils.cpp
33
32
PFTBuilder.cpp
34
33
Runtime.cpp
35
34
Support/PrivateReductionUtils.cpp
35
+ Support/ReductionProcessor.cpp
36
36
Support/Utils.cpp
37
37
SymbolMap.cpp
38
38
VectorSubscripts.cpp
Original file line number Diff line number Diff line change 12
12
#ifndef FORTRAN_LOWER_CLAUSEFINDER_H
13
13
#define FORTRAN_LOWER_CLAUSEFINDER_H
14
14
15
- #include " Clauses.h"
15
+ #include " flang/Lower/OpenMP/ Clauses.h"
16
16
17
17
namespace Fortran {
18
18
namespace lower {
Original file line number Diff line number Diff line change 11
11
// ===----------------------------------------------------------------------===//
12
12
13
13
#include " ClauseProcessor.h"
14
- #include " Clauses.h"
15
- #include " ReductionProcessor.h"
16
14
#include " Utils.h"
17
15
18
16
#include " flang/Lower/ConvertExprToHLFIR.h"
17
+ #include " flang/Lower/OpenMP/Clauses.h"
19
18
#include " flang/Lower/PFTBuilder.h"
19
+ #include " flang/Lower/Support/ReductionProcessor.h"
20
20
#include " flang/Parser/tools.h"
21
21
#include " flang/Semantics/tools.h"
22
22
#include " llvm/Frontend/OpenMP/OMP.h.inc"
Original file line number Diff line number Diff line change 13
13
#define FORTRAN_LOWER_CLAUSEPROCESSOR_H
14
14
15
15
#include " ClauseFinder.h"
16
- #include " Clauses.h"
17
16
#include " Utils.h"
18
17
#include " flang/Lower/AbstractConverter.h"
19
18
#include " flang/Lower/Bridge.h"
20
19
#include " flang/Lower/DirectivesCommon.h"
20
+ #include " flang/Lower/OpenMP/Clauses.h"
21
21
#include " flang/Optimizer/Builder/Todo.h"
22
22
#include " flang/Parser/dump-parse-tree.h"
23
23
#include " flang/Parser/parse-tree.h"
Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #include " Clauses.h"
9
+ #include " flang/Lower/OpenMP/ Clauses.h"
10
10
11
11
#include " flang/Common/idioms.h"
12
12
#include " flang/Evaluate/expression.h"
Original file line number Diff line number Diff line change 12
12
#ifndef FORTRAN_LOWER_DATASHARINGPROCESSOR_H
13
13
#define FORTRAN_LOWER_DATASHARINGPROCESSOR_H
14
14
15
- #include " Clauses.h"
16
15
#include " flang/Lower/AbstractConverter.h"
17
16
#include " flang/Lower/OpenMP.h"
17
+ #include " flang/Lower/OpenMP/Clauses.h"
18
18
#include " flang/Optimizer/Builder/FIRBuilder.h"
19
19
#include " flang/Parser/parse-tree.h"
20
20
#include " flang/Semantics/symbol.h"
Original file line number Diff line number Diff line change 12
12
13
13
#include " Decomposer.h"
14
14
15
- #include " Clauses.h"
16
15
#include " Utils.h"
16
+ #include " flang/Lower/OpenMP/Clauses.h"
17
17
#include " flang/Lower/PFTBuilder.h"
18
18
#include " flang/Semantics/semantics.h"
19
19
#include " flang/Tools/CrossToolHelpers.h"
Original file line number Diff line number Diff line change 8
8
#ifndef FORTRAN_LOWER_OPENMP_DECOMPOSER_H
9
9
#define FORTRAN_LOWER_OPENMP_DECOMPOSER_H
10
10
11
- #include " Clauses.h"
11
+ #include " flang/Lower/OpenMP/ Clauses.h"
12
12
#include " mlir/IR/BuiltinOps.h"
13
13
#include " llvm/Frontend/OpenMP/ConstructDecompositionT.h"
14
14
#include " llvm/Frontend/OpenMP/OMP.h"
Original file line number Diff line number Diff line change 13
13
#include " flang/Lower/OpenMP.h"
14
14
15
15
#include " ClauseProcessor.h"
16
- #include " Clauses.h"
17
16
#include " DataSharingProcessor.h"
18
17
#include " Decomposer.h"
19
18
#include " Utils.h"
22
21
#include " flang/Lower/ConvertExpr.h"
23
22
#include " flang/Lower/ConvertVariable.h"
24
23
#include " flang/Lower/DirectivesCommon.h"
24
+ #include " flang/Lower/OpenMP/Clauses.h"
25
25
#include " flang/Lower/StatementContext.h"
26
26
#include " flang/Lower/SymbolMap.h"
27
27
#include " flang/Optimizer/Builder/BoxValue.h"
Original file line number Diff line number Diff line change 12
12
13
13
#include " Utils.h"
14
14
15
- #include " Clauses.h"
16
-
17
15
#include " ClauseFinder.h"
16
+ #include " flang/Lower/OpenMP/Clauses.h"
18
17
#include < flang/Lower/AbstractConverter.h>
19
18
#include < flang/Lower/ConvertType.h>
20
19
#include < flang/Lower/DirectivesCommon.h>
Original file line number Diff line number Diff line change 9
9
#ifndef FORTRAN_LOWER_OPENMPUTILS_H
10
10
#define FORTRAN_LOWER_OPENMPUTILS_H
11
11
12
- #include " Clauses.h"
12
+ #include " flang/Lower/OpenMP/ Clauses.h"
13
13
#include " mlir/Dialect/OpenMP/OpenMPDialect.h"
14
14
#include " mlir/IR/Location.h"
15
15
#include " mlir/IR/Value.h"
Original file line number Diff line number Diff line change 10
10
//
11
11
// ===----------------------------------------------------------------------===//
12
12
13
- #include " ReductionProcessor.h"
13
+ #include " flang/Lower/Support/ ReductionProcessor.h"
14
14
15
- #include " Clauses.h"
16
15
#include " flang/Lower/AbstractConverter.h"
17
16
#include " flang/Lower/ConvertType.h"
17
+ #include " flang/Lower/OpenMP/Clauses.h"
18
18
#include " flang/Lower/Support/PrivateReductionUtils.h"
19
19
#include " flang/Lower/SymbolMap.h"
20
20
#include " flang/Optimizer/Builder/Complex.h"
You can’t perform that action at this time.
0 commit comments