Skip to content

Commit f7da527

Browse files
authored
Temporarily add EmptyPass to prevent glslang from failing (KhronosGroup#4004)
Removing PropagateLineInfoPass and RedundantLineInfoElimPass from 56d0f50 makes unit tests of many open source projects fail. It will happen before submitting this glslang PR KhronosGroup/glslang#2440. This commit will be git-reverted after merging the glslang PR.
1 parent 82b378d commit f7da527

File tree

6 files changed

+59
-0
lines changed

6 files changed

+59
-0
lines changed

BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ static_library("spvtools_opt") {
561561
"source/opt/eliminate_dead_functions_util.h",
562562
"source/opt/eliminate_dead_members_pass.cpp",
563563
"source/opt/eliminate_dead_members_pass.h",
564+
"source/opt/empty_pass.h",
564565
"source/opt/feature_manager.cpp",
565566
"source/opt/feature_manager.h",
566567
"source/opt/fix_storage_class.cpp",

include/spirv-tools/optimizer.hpp

+12
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,18 @@ Optimizer::PassToken CreateDeadInsertElimPass();
536536
// eliminated with standard dead code elimination.
537537
Optimizer::PassToken CreateAggressiveDCEPass();
538538

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+
539551
// Creates a compact ids pass.
540552
// The pass remaps result ids to a compact and gapless range starting from %1.
541553
Optimizer::PassToken CreateCompactIdsPass();

source/opt/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ set(SPIRV_TOOLS_OPT_SOURCES
4343
eliminate_dead_functions_pass.h
4444
eliminate_dead_functions_util.h
4545
eliminate_dead_members_pass.h
46+
empty_pass.h
4647
feature_manager.h
4748
fix_storage_class.h
4849
flatten_decoration_pass.h

source/opt/empty_pass.h

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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_

source/opt/optimizer.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,14 @@ Optimizer::PassToken CreateAggressiveDCEPass() {
753753
MakeUnique<opt::AggressiveDCEPass>());
754754
}
755755

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+
756764
Optimizer::PassToken CreateCompactIdsPass() {
757765
return MakeUnique<Optimizer::PassToken::Impl>(
758766
MakeUnique<opt::CompactIdsPass>());

source/opt/passes.h

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include "source/opt/eliminate_dead_constant_pass.h"
3636
#include "source/opt/eliminate_dead_functions_pass.h"
3737
#include "source/opt/eliminate_dead_members_pass.h"
38+
#include "source/opt/empty_pass.h"
3839
#include "source/opt/fix_storage_class.h"
3940
#include "source/opt/flatten_decoration_pass.h"
4041
#include "source/opt/fold_spec_constant_op_and_composite_pass.h"

0 commit comments

Comments
 (0)