File tree 6 files changed +59
-0
lines changed
6 files changed +59
-0
lines changed Original file line number Diff line number Diff line change @@ -561,6 +561,7 @@ static_library("spvtools_opt") {
561
561
" source/opt/eliminate_dead_functions_util.h" ,
562
562
" source/opt/eliminate_dead_members_pass.cpp" ,
563
563
" source/opt/eliminate_dead_members_pass.h" ,
564
+ " source/opt/empty_pass.h" ,
564
565
" source/opt/feature_manager.cpp" ,
565
566
" source/opt/feature_manager.h" ,
566
567
" source/opt/fix_storage_class.cpp" ,
Original file line number Diff line number Diff line change @@ -536,6 +536,18 @@ Optimizer::PassToken CreateDeadInsertElimPass();
536
536
// eliminated with standard dead code elimination.
537
537
Optimizer::PassToken CreateAggressiveDCEPass ();
538
538
539
+ // Creates an empty pass.
540
+ // This is deprecated and will be removed.
541
+ // TODO(jaebaek): remove this pass after handling glslang's broken unit tests.
542
+ // https://github.com/KhronosGroup/glslang/pull/2440
543
+ Optimizer::PassToken CreatePropagateLineInfoPass ();
544
+
545
+ // Creates an empty pass.
546
+ // This is deprecated and will be removed.
547
+ // TODO(jaebaek): remove this pass after handling glslang's broken unit tests.
548
+ // https://github.com/KhronosGroup/glslang/pull/2440
549
+ Optimizer::PassToken CreateRedundantLineInfoElimPass ();
550
+
539
551
// Creates a compact ids pass.
540
552
// The pass remaps result ids to a compact and gapless range starting from %1.
541
553
Optimizer::PassToken CreateCompactIdsPass ();
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ set(SPIRV_TOOLS_OPT_SOURCES
43
43
eliminate_dead_functions_pass.h
44
44
eliminate_dead_functions_util.h
45
45
eliminate_dead_members_pass.h
46
+ empty_pass.h
46
47
feature_manager.h
47
48
fix_storage_class.h
48
49
flatten_decoration_pass.h
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2020 Google LLC
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ #ifndef SOURCE_OPT_EMPTY_PASS_H_
16
+ #define SOURCE_OPT_EMPTY_PASS_H_
17
+
18
+ #include " source/opt/pass.h"
19
+
20
+ namespace spvtools {
21
+ namespace opt {
22
+
23
+ // Documented in optimizer.hpp
24
+ class EmptyPass : public Pass {
25
+ public:
26
+ EmptyPass () {}
27
+
28
+ const char * name () const override { return " empty-pass" ; }
29
+
30
+ Status Process () override { return Status::SuccessWithoutChange; }
31
+ };
32
+
33
+ } // namespace opt
34
+ } // namespace spvtools
35
+
36
+ #endif // SOURCE_OPT_EMPTY_PASS_H_
Original file line number Diff line number Diff line change @@ -753,6 +753,14 @@ Optimizer::PassToken CreateAggressiveDCEPass() {
753
753
MakeUnique<opt::AggressiveDCEPass>());
754
754
}
755
755
756
+ Optimizer::PassToken CreatePropagateLineInfoPass () {
757
+ return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::EmptyPass>());
758
+ }
759
+
760
+ Optimizer::PassToken CreateRedundantLineInfoElimPass () {
761
+ return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::EmptyPass>());
762
+ }
763
+
756
764
Optimizer::PassToken CreateCompactIdsPass () {
757
765
return MakeUnique<Optimizer::PassToken::Impl>(
758
766
MakeUnique<opt::CompactIdsPass>());
Original file line number Diff line number Diff line change 35
35
#include "source/opt/eliminate_dead_constant_pass.h"
36
36
#include "source/opt/eliminate_dead_functions_pass.h"
37
37
#include "source/opt/eliminate_dead_members_pass.h"
38
+ #include "source/opt/empty_pass.h"
38
39
#include "source/opt/fix_storage_class.h"
39
40
#include "source/opt/flatten_decoration_pass.h"
40
41
#include "source/opt/fold_spec_constant_op_and_composite_pass.h"
You can’t perform that action at this time.
0 commit comments