eliminate_common_subexpression.cpp 2.86 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
#include <migraphx/eliminate_common_subexpression.hpp>
Paul's avatar
Paul committed
25
26
27
28
29
#include <migraphx/program.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/functional.hpp>
Paul's avatar
Paul committed
30

Paul's avatar
Paul committed
31
32
#include <unordered_set>

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

Paul's avatar
Paul committed
36
template <class Range>
37
void cse_range(module& m, Range&& r)
Paul's avatar
Paul committed
38
39
{
    std::unordered_multimap<std::string, instruction_ref> instructions;
kahmed10's avatar
kahmed10 committed
40
    std::unordered_set<instruction_ref> processed_ins;
Paul's avatar
Paul committed
41
42
43
44
45
    for(auto ins : r)
    {
        // Skip dead instructions
        if(ins->outputs().empty())
            continue;
kahmed10's avatar
kahmed10 committed
46

Paul's avatar
Paul committed
47
48
        // Find instruction with the same name
        auto found_instructions = range(instructions.equal_range(ins->name()));
Paul's avatar
Paul committed
49
        for(const auto& pp : found_instructions)
Paul's avatar
Paul committed
50
51
        {
            auto eq = pp.second;
kahmed10's avatar
kahmed10 committed
52
53
            if(contains(processed_ins, eq))
                continue;
Paul's avatar
Paul committed
54
55
            if(*eq != *ins)
                continue;
56
            m.replace_instruction(ins, eq);
kahmed10's avatar
kahmed10 committed
57
            processed_ins.emplace(ins);
58
59
60
61
            std::vector<instruction_ref> outputs;
            std::copy_if(eq->outputs().begin(),
                         eq->outputs().end(),
                         std::back_inserter(outputs),
62
                         [&](auto x) { return m.has_instruction(x); });
63

Paul's avatar
Paul committed
64
65
66
            std::sort(outputs.begin(), outputs.end(), [&](auto x, auto y) {
                return std::distance(eq, x) < std::distance(eq, y);
            });
67
            cse_range(m, outputs);
Paul's avatar
Paul committed
68
69
70
71
72
        }
        instructions.emplace(ins->name(), ins);
    }
}

73
void eliminate_common_subexpression::apply(module& m) const { cse_range(m, iterator_for(m)); }
Paul's avatar
Paul committed
74

Paul's avatar
Paul committed
75
} // namespace MIGRAPHX_INLINE_NS
Paul's avatar
Paul committed
76
} // namespace migraphx