2016-06-02 22:51:05 +00:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// 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
|
2016-06-02 22:51:05 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2016-06-02 22:51:05 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// 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.
|
2016-06-02 22:51:05 +00:00
|
|
|
|
2018-08-03 19:06:09 +00:00
|
|
|
#include "source/val/basic_block.h"
|
2016-06-02 22:51:05 +00:00
|
|
|
|
2016-08-05 19:20:59 +00:00
|
|
|
#include <algorithm>
|
2016-06-24 06:14:16 +00:00
|
|
|
#include <utility>
|
2016-06-02 22:51:05 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-07-07 13:38:00 +00:00
|
|
|
namespace spvtools {
|
2018-07-10 03:18:44 +00:00
|
|
|
namespace val {
|
2016-06-02 22:51:05 +00:00
|
|
|
|
2016-06-25 03:45:25 +00:00
|
|
|
BasicBlock::BasicBlock(uint32_t label_id)
|
|
|
|
: id_(label_id),
|
2016-06-02 22:51:05 +00:00
|
|
|
immediate_dominator_(nullptr),
|
2016-06-04 01:24:24 +00:00
|
|
|
immediate_post_dominator_(nullptr),
|
2016-06-02 22:51:05 +00:00
|
|
|
predecessors_(),
|
|
|
|
successors_(),
|
2016-06-04 01:24:24 +00:00
|
|
|
type_(0),
|
2018-07-03 19:06:54 +00:00
|
|
|
reachable_(false),
|
|
|
|
label_(nullptr),
|
|
|
|
terminator_(nullptr) {}
|
2016-06-02 22:51:05 +00:00
|
|
|
|
|
|
|
void BasicBlock::SetImmediateDominator(BasicBlock* dom_block) {
|
|
|
|
immediate_dominator_ = dom_block;
|
|
|
|
}
|
|
|
|
|
2016-06-04 01:24:24 +00:00
|
|
|
void BasicBlock::SetImmediatePostDominator(BasicBlock* pdom_block) {
|
|
|
|
immediate_post_dominator_ = pdom_block;
|
|
|
|
}
|
|
|
|
|
2016-06-25 03:45:25 +00:00
|
|
|
const BasicBlock* BasicBlock::immediate_dominator() const {
|
2016-06-02 22:51:05 +00:00
|
|
|
return immediate_dominator_;
|
|
|
|
}
|
|
|
|
|
2016-06-25 03:45:25 +00:00
|
|
|
const BasicBlock* BasicBlock::immediate_post_dominator() const {
|
2016-06-04 01:24:24 +00:00
|
|
|
return immediate_post_dominator_;
|
|
|
|
}
|
|
|
|
|
2016-06-25 03:45:25 +00:00
|
|
|
BasicBlock* BasicBlock::immediate_dominator() { return immediate_dominator_; }
|
|
|
|
BasicBlock* BasicBlock::immediate_post_dominator() {
|
2016-06-04 01:24:24 +00:00
|
|
|
return immediate_post_dominator_;
|
|
|
|
}
|
2016-06-02 22:51:05 +00:00
|
|
|
|
2018-08-01 18:58:12 +00:00
|
|
|
void BasicBlock::RegisterSuccessors(
|
|
|
|
const std::vector<BasicBlock*>& next_blocks) {
|
2016-06-02 22:51:05 +00:00
|
|
|
for (auto& block : next_blocks) {
|
|
|
|
block->predecessors_.push_back(this);
|
|
|
|
successors_.push_back(block);
|
2016-06-04 01:24:24 +00:00
|
|
|
if (block->reachable_ == false) block->set_reachable(reachable_);
|
2016-06-02 22:51:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BasicBlock::RegisterBranchInstruction(SpvOp branch_instruction) {
|
|
|
|
if (branch_instruction == SpvOpUnreachable) reachable_ = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-05 19:20:59 +00:00
|
|
|
bool BasicBlock::dominates(const BasicBlock& other) const {
|
|
|
|
return (this == &other) ||
|
|
|
|
!(other.dom_end() ==
|
|
|
|
std::find(other.dom_begin(), other.dom_end(), this));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BasicBlock::postdominates(const BasicBlock& other) const {
|
|
|
|
return (this == &other) ||
|
|
|
|
!(other.pdom_end() ==
|
|
|
|
std::find(other.pdom_begin(), other.pdom_end(), this));
|
|
|
|
}
|
|
|
|
|
2016-06-02 22:51:05 +00:00
|
|
|
BasicBlock::DominatorIterator::DominatorIterator() : current_(nullptr) {}
|
2016-06-04 01:24:24 +00:00
|
|
|
|
|
|
|
BasicBlock::DominatorIterator::DominatorIterator(
|
|
|
|
const BasicBlock* block,
|
|
|
|
std::function<const BasicBlock*(const BasicBlock*)> dominator_func)
|
|
|
|
: current_(block), dom_func_(dominator_func) {}
|
2016-06-02 22:51:05 +00:00
|
|
|
|
|
|
|
BasicBlock::DominatorIterator& BasicBlock::DominatorIterator::operator++() {
|
2016-06-04 01:24:24 +00:00
|
|
|
if (current_ == dom_func_(current_)) {
|
2016-06-02 22:51:05 +00:00
|
|
|
current_ = nullptr;
|
|
|
|
} else {
|
2016-06-04 01:24:24 +00:00
|
|
|
current_ = dom_func_(current_);
|
2016-06-02 22:51:05 +00:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BasicBlock::DominatorIterator BasicBlock::dom_begin() const {
|
2016-06-04 01:24:24 +00:00
|
|
|
return DominatorIterator(
|
2016-06-25 03:45:25 +00:00
|
|
|
this, [](const BasicBlock* b) { return b->immediate_dominator(); });
|
2016-06-02 22:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BasicBlock::DominatorIterator BasicBlock::dom_begin() {
|
2016-06-04 01:24:24 +00:00
|
|
|
return DominatorIterator(
|
2016-06-25 03:45:25 +00:00
|
|
|
this, [](const BasicBlock* b) { return b->immediate_dominator(); });
|
2016-06-02 22:51:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const BasicBlock::DominatorIterator BasicBlock::dom_end() const {
|
|
|
|
return DominatorIterator();
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicBlock::DominatorIterator BasicBlock::dom_end() {
|
|
|
|
return DominatorIterator();
|
|
|
|
}
|
|
|
|
|
2016-06-04 01:24:24 +00:00
|
|
|
const BasicBlock::DominatorIterator BasicBlock::pdom_begin() const {
|
|
|
|
return DominatorIterator(
|
2016-06-25 03:45:25 +00:00
|
|
|
this, [](const BasicBlock* b) { return b->immediate_post_dominator(); });
|
2016-06-04 01:24:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BasicBlock::DominatorIterator BasicBlock::pdom_begin() {
|
|
|
|
return DominatorIterator(
|
2017-11-08 17:40:02 +00:00
|
|
|
this, [](const BasicBlock* b) { return b->immediate_post_dominator(); });
|
2016-06-04 01:24:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const BasicBlock::DominatorIterator BasicBlock::pdom_end() const {
|
|
|
|
return DominatorIterator();
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicBlock::DominatorIterator BasicBlock::pdom_end() {
|
|
|
|
return DominatorIterator();
|
|
|
|
}
|
|
|
|
|
2016-06-02 22:51:05 +00:00
|
|
|
bool operator==(const BasicBlock::DominatorIterator& lhs,
|
|
|
|
const BasicBlock::DominatorIterator& rhs) {
|
|
|
|
return lhs.current_ == rhs.current_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const BasicBlock::DominatorIterator& lhs,
|
|
|
|
const BasicBlock::DominatorIterator& rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
const BasicBlock*& BasicBlock::DominatorIterator::operator*() {
|
|
|
|
return current_;
|
|
|
|
}
|
2018-07-10 03:18:44 +00:00
|
|
|
|
|
|
|
} // namespace val
|
2018-07-07 13:38:00 +00:00
|
|
|
} // namespace spvtools
|