2017-06-16 21:37:31 +00:00
|
|
|
// Copyright (c) 2017 The Khronos Group Inc.
|
|
|
|
// Copyright (c) 2017 Valve Corporation
|
|
|
|
// Copyright (c) 2017 LunarG 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_LOCAL_SSA_ELIM_PASS_H_
|
|
|
|
#define LIBSPIRV_OPT_LOCAL_SSA_ELIM_PASS_H_
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <map>
|
|
|
|
#include <queue>
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
2017-11-08 17:40:02 +00:00
|
|
|
#include <utility>
|
2017-06-16 21:37:31 +00:00
|
|
|
|
|
|
|
#include "basic_block.h"
|
|
|
|
#include "def_use_manager.h"
|
2017-07-27 19:30:12 +00:00
|
|
|
#include "mem_pass.h"
|
2017-11-08 17:40:02 +00:00
|
|
|
#include "module.h"
|
2017-06-16 21:37:31 +00:00
|
|
|
|
|
|
|
namespace spvtools {
|
|
|
|
namespace opt {
|
|
|
|
|
|
|
|
// See optimizer.hpp for documentation.
|
2017-07-27 19:30:12 +00:00
|
|
|
class LocalMultiStoreElimPass : public MemPass {
|
2017-06-16 21:37:31 +00:00
|
|
|
using cbb_ptr = const ir::BasicBlock*;
|
|
|
|
|
|
|
|
public:
|
2017-11-08 17:40:02 +00:00
|
|
|
using GetBlocksFunction =
|
|
|
|
std::function<std::vector<ir::BasicBlock*>*(const ir::BasicBlock*)>;
|
2017-06-16 21:37:31 +00:00
|
|
|
|
|
|
|
LocalMultiStoreElimPass();
|
|
|
|
const char* name() const override { return "eliminate-local-multi-store"; }
|
2017-10-30 15:13:24 +00:00
|
|
|
Status Process(ir::IRContext* c) override;
|
2017-06-16 21:37:31 +00:00
|
|
|
|
2017-11-09 16:24:41 +00:00
|
|
|
ir::IRContext::Analysis GetPreservedAnalyses() override {
|
2018-01-11 20:05:39 +00:00
|
|
|
return ir::IRContext::kAnalysisDefUse |
|
|
|
|
ir::IRContext::kAnalysisInstrToBlockMapping;
|
2017-11-09 16:24:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-16 21:37:31 +00:00
|
|
|
private:
|
2017-07-19 00:57:26 +00:00
|
|
|
// Initialize extensions whitelist
|
|
|
|
void InitExtensions();
|
|
|
|
|
2017-06-16 21:37:31 +00:00
|
|
|
// Return true if all extensions in this module are allowed by this pass.
|
|
|
|
bool AllExtensionsSupported() const;
|
|
|
|
|
2017-10-30 15:13:24 +00:00
|
|
|
void Initialize(ir::IRContext* c);
|
2017-06-16 21:37:31 +00:00
|
|
|
Pass::Status ProcessImpl();
|
|
|
|
|
2017-07-19 00:57:26 +00:00
|
|
|
// Extensions supported by this pass.
|
|
|
|
std::unordered_set<std::string> extensions_whitelist_;
|
2017-06-16 21:37:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace opt
|
|
|
|
} // namespace spvtools
|
|
|
|
|
|
|
|
#endif // LIBSPIRV_OPT_LOCAL_SSA_ELIM_PASS_H_
|