2017-09-06 12:56:41 +00:00
|
|
|
// Copyright (c) 2017 Google Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef LIBSPIRV_OPT_CFG_CLEANUP_PASS_H_
|
|
|
|
#define LIBSPIRV_OPT_CFG_CLEANUP_PASS_H_
|
|
|
|
|
|
|
|
#include "function.h"
|
|
|
|
#include "mem_pass.h"
|
2017-10-19 19:22:02 +00:00
|
|
|
#include "module.h"
|
2017-09-06 12:56:41 +00:00
|
|
|
|
|
|
|
namespace spvtools {
|
|
|
|
namespace opt {
|
|
|
|
|
|
|
|
class CFGCleanupPass : public MemPass {
|
|
|
|
public:
|
|
|
|
CFGCleanupPass() = default;
|
|
|
|
const char* name() const override { return "cfg-cleanup"; }
|
2017-10-30 15:13:24 +00:00
|
|
|
Status Process(ir::IRContext* c) override;
|
2017-09-06 12:56:41 +00:00
|
|
|
|
2017-11-09 16:24:41 +00:00
|
|
|
ir::IRContext::Analysis GetPreservedAnalyses() override {
|
|
|
|
return ir::IRContext::kAnalysisDefUse;
|
|
|
|
}
|
|
|
|
|
2017-09-06 12:56:41 +00:00
|
|
|
private:
|
|
|
|
// Initialize the pass.
|
2017-10-30 15:13:24 +00:00
|
|
|
void Initialize(ir::IRContext* c);
|
2017-09-06 12:56:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace opt
|
|
|
|
} // namespace spvtools
|
|
|
|
|
|
|
|
#endif
|