aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/optimiser/Disambiguator.h
blob: 74a491abf893551873dee92179396ea1ece82ddc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
    This file is part of solidity.

    solidity is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    solidity is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with solidity.  If not, see <http://www.gnu.org/licenses/>.
*/
/**
 * Optimiser component that makes all identifiers unique.
 */

#pragma once

#include <libyul/ASTDataForward.h>

#include <libyul/optimiser/ASTCopier.h>
#include <libyul/optimiser/NameDispenser.h>

#include <libsolidity/inlineasm/AsmAnalysisInfo.h>

#include <boost/variant.hpp>
#include <boost/optional.hpp>

#include <set>

namespace dev
{
namespace yul
{

/**
 * Creates a copy of a Yul AST replacing all identifiers by unique names.
 */
class Disambiguator: public ASTCopier
{
public:
    explicit Disambiguator(
        solidity::assembly::AsmAnalysisInfo const& _analysisInfo,
        std::set<std::string> const& _externallyUsedIdentifiers = {}
    ):
        m_info(_analysisInfo), m_externallyUsedIdentifiers(_externallyUsedIdentifiers), m_nameDispenser(m_externallyUsedIdentifiers)
    {
    }

protected:
    virtual void enterScope(Block const& _block) override;
    virtual void leaveScope(Block const& _block) override;
    virtual void enterFunction(FunctionDefinition const& _function) override;
    virtual void leaveFunction(FunctionDefinition const& _function) override;
    virtual std::string translateIdentifier(std::string const& _name) override;

    void enterScopeInternal(solidity::assembly::Scope& _scope);
    void leaveScopeInternal(solidity::assembly::Scope& _scope);

    solidity::assembly::AsmAnalysisInfo const& m_info;
    std::set<std::string> const& m_externallyUsedIdentifiers;

    std::vector<solidity::assembly::Scope*> m_scopes;
    std::map<void const*, std::string> m_translations;
    NameDispenser m_nameDispenser;
};

}
}