blob: 52b29613a450e5f9ea037e542b313dc52b9c5092 [file] [log] [blame]
Dejan Mircevski57bbde42016-01-19 11:44:53 -05001//
John Kessenich927608b2017-01-06 12:34:14 -07002// Copyright (C) 2016 Google, Inc.
Dejan Mircevski57bbde42016-01-19 11:44:53 -05003//
John Kessenich927608b2017-01-06 12:34:14 -07004// All rights reserved.
Dejan Mircevski57bbde42016-01-19 11:44:53 -05005//
John Kessenich927608b2017-01-06 12:34:14 -07006// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions
8// are met:
Dejan Mircevski57bbde42016-01-19 11:44:53 -05009//
10// Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12//
13// Redistributions in binary form must reproduce the above
14// copyright notice, this list of conditions and the following
15// disclaimer in the documentation and/or other materials provided
16// with the distribution.
17//
18// Neither the name of 3Dlabs Inc. Ltd. nor the names of its
19// contributors may be used to endorse or promote products derived
20// from this software without specific prior written permission.
21//
John Kessenich927608b2017-01-06 12:34:14 -070022// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33// POSSIBILITY OF SUCH DAMAGE.
Dejan Mircevski57bbde42016-01-19 11:44:53 -050034
Dejan Mircevski44bfb0d2016-01-18 16:18:37 -050035// The SPIR-V spec requires code blocks to appear in an order satisfying the
36// dominator-tree direction (ie, dominator before the dominated). This is,
37// actually, easy to achieve: any pre-order CFG traversal algorithm will do it.
38// Because such algorithms visit a block only after traversing some path to it
39// from the root, they necessarily visit the block's idom first.
40//
41// But not every graph-traversal algorithm outputs blocks in an order that
42// appears logical to human readers. The problem is that unrelated branches may
43// be interspersed with each other, and merge blocks may come before some of the
44// branches being merged.
45//
46// A good, human-readable order of blocks may be achieved by performing
47// depth-first search but delaying merge nodes until after all their branches
48// have been visited. This is implemented below by the inReadableOrder()
49// function.
50
51#include "spvIR.h"
52
Dejan Mircevski38d039d2016-01-19 10:01:27 -050053#include <cassert>
Lei Zhang2840f632017-05-11 20:46:01 -040054#include <unordered_set>
Dejan Mircevski44bfb0d2016-01-18 16:18:37 -050055
56using spv::Block;
57using spv::Id;
Dejan Mircevski44bfb0d2016-01-18 16:18:37 -050058
59namespace {
Dejan Mircevski38d039d2016-01-19 10:01:27 -050060// Traverses CFG in a readable order, invoking a pre-set callback on each block.
61// Use by calling visit() on the root block.
62class ReadableOrderTraverser {
Dejan Mircevski159b59f2016-01-19 14:52:31 -050063public:
64 explicit ReadableOrderTraverser(std::function<void(Block*)> callback) : callback_(callback) {}
65 // Visits the block if it hasn't been visited already and isn't currently
Dejan Mircevskif3c63cc2016-01-19 16:56:45 -050066 // being delayed. Invokes callback(block), then descends into its
67 // successors. Delays merge-block and continue-block processing until all
68 // the branches have been completed.
Dejan Mircevski159b59f2016-01-19 14:52:31 -050069 void visit(Block* block)
70 {
71 assert(block);
Lei Zhang2840f632017-05-11 20:46:01 -040072 if (visited_.count(block) || delayed_.count(block))
Dejan Mircevski159b59f2016-01-19 14:52:31 -050073 return;
74 callback_(block);
Lei Zhang2840f632017-05-11 20:46:01 -040075 visited_.insert(block);
Dejan Mircevski159b59f2016-01-19 14:52:31 -050076 Block* mergeBlock = nullptr;
Dejan Mircevskif3c63cc2016-01-19 16:56:45 -050077 Block* continueBlock = nullptr;
Dejan Mircevski159b59f2016-01-19 14:52:31 -050078 auto mergeInst = block->getMergeInstruction();
79 if (mergeInst) {
80 Id mergeId = mergeInst->getIdOperand(0);
81 mergeBlock = block->getParent().getParent().getInstruction(mergeId)->getBlock();
Lei Zhang2840f632017-05-11 20:46:01 -040082 delayed_.insert(mergeBlock);
Dejan Mircevskif3c63cc2016-01-19 16:56:45 -050083 if (mergeInst->getOpCode() == spv::OpLoopMerge) {
84 Id continueId = mergeInst->getIdOperand(1);
85 continueBlock =
86 block->getParent().getParent().getInstruction(continueId)->getBlock();
Lei Zhang2840f632017-05-11 20:46:01 -040087 delayed_.insert(continueBlock);
Dejan Mircevskif3c63cc2016-01-19 16:56:45 -050088 }
Dejan Mircevski159b59f2016-01-19 14:52:31 -050089 }
rdb32084e82016-02-23 22:17:38 +010090 const auto successors = block->getSuccessors();
91 for (auto it = successors.cbegin(); it != successors.cend(); ++it)
92 visit(*it);
Dejan Mircevskif3c63cc2016-01-19 16:56:45 -050093 if (continueBlock) {
Lei Zhang2840f632017-05-11 20:46:01 -040094 delayed_.erase(continueBlock);
Dejan Mircevskif3c63cc2016-01-19 16:56:45 -050095 visit(continueBlock);
96 }
Dejan Mircevski159b59f2016-01-19 14:52:31 -050097 if (mergeBlock) {
Lei Zhang2840f632017-05-11 20:46:01 -040098 delayed_.erase(mergeBlock);
Dejan Mircevski159b59f2016-01-19 14:52:31 -050099 visit(mergeBlock);
100 }
Dejan Mircevski38d039d2016-01-19 10:01:27 -0500101 }
Dejan Mircevski38d039d2016-01-19 10:01:27 -0500102
Dejan Mircevski159b59f2016-01-19 14:52:31 -0500103private:
104 std::function<void(Block*)> callback_;
105 // Whether a block has already been visited or is being delayed.
Lei Zhang2840f632017-05-11 20:46:01 -0400106 std::unordered_set<Block *> visited_, delayed_;
Dejan Mircevski38d039d2016-01-19 10:01:27 -0500107};
Dejan Mircevski44bfb0d2016-01-18 16:18:37 -0500108}
109
Dejan Mircevski159b59f2016-01-19 14:52:31 -0500110void spv::inReadableOrder(Block* root, std::function<void(Block*)> callback)
111{
112 ReadableOrderTraverser(callback).visit(root);
Dejan Mircevski44bfb0d2016-01-18 16:18:37 -0500113}