dead_code_elimination.cpp 3.45 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
Paul's avatar
Paul committed
24
25
26
27
28
29
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/functional.hpp>
#include <migraphx/ranges.hpp>
30
#include <migraphx/stringutils.hpp>
31
#include <unordered_set>
Paul's avatar
Paul committed
32

Paul's avatar
Paul committed
33
namespace migraphx {
Paul's avatar
Paul committed
34
inline namespace MIGRAPHX_INLINE_NS {
Paul's avatar
Paul committed
35

36
37
38
void dead_code_elimination::apply(program& p) const { p.remove_unused_modules(); }

void dead_code_elimination::apply(module& m) const
Paul's avatar
Paul committed
39
{
40
41
    auto last = std::prev(m.end());
    for(auto ins : iterator_for(m))
Paul's avatar
Paul committed
42
    {
Paul's avatar
Paul committed
43
44
        // Skip the first instruction, since we always process the previous
        // instruction
45
        if(ins == m.begin())
Paul's avatar
Paul committed
46
            continue;
47
        const auto i = std::prev(ins);
Paul's avatar
Paul committed
48
        // Skip the last instruction
49
        if(i == last)
Paul's avatar
Paul committed
50
            break;
51
        // Skip instruction with empty shape as output unless its [dynamic, builtin, undefined,
52
53
54
55
        // identity, allocate or tuple_type]
        if((not i->get_shape().dynamic() and
            (i->get_shape().elements() == 0 and
             i->get_shape().type() != migraphx::shape::tuple_type)) and
56
57
           not(i->name().front() == '@') and not contains({"identity", "allocate"}, i->name()) and
           not i->is_undefined())
Paul's avatar
Paul committed
58
            continue;
59
60
        assert(std::distance(m.begin(), i) <= std::distance(m.begin(), last));
        std::unordered_set<instruction_ref> visited;
61
        fix([&](auto self, auto leaf) {
62
            if(not m.has_instruction(leaf))
Shucai Xiao's avatar
Shucai Xiao committed
63
64
                return;

Paul's avatar
Paul committed
65
            if(leaf->outputs().empty())
Paul's avatar
Paul committed
66
            {
67
68
69
                // Dont visit inputs twice
                if(not visited.insert(leaf).second)
                    return;
Paul's avatar
Paul committed
70
71
                std::unordered_set<instruction_ref> args(leaf->inputs().begin(),
                                                         leaf->inputs().end());
Paul's avatar
Paul committed
72
                leaf->clear_arguments();
73
                assert(std::distance(m.begin(), leaf) < std::distance(m.begin(), last));
Paul's avatar
Paul committed
74
                assert(leaf != ins);
75
76
                if(leaf->name() != "@param")
                    m.move_instruction(leaf, m.end());
Paul's avatar
Paul committed
77
                for(auto arg : args)
Paul's avatar
Paul committed
78
79
                    self(arg);
            }
80
        })(i);
Paul's avatar
Paul committed
81
    }
82
    m.remove_instructions(std::next(last), m.end());
Paul's avatar
Paul committed
83
84
}

Paul's avatar
Paul committed
85
} // namespace MIGRAPHX_INLINE_NS
Paul's avatar
Paul committed
86
} // namespace migraphx