2019-04-30 16:32:56 +00:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2019-04-30 16:32:56 +00:00
|
|
|
/**
|
2020-02-06 13:05:25 +00:00
|
|
|
* Classes that store locations of lvalues.
|
2019-04-30 16:32:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-06 13:05:25 +00:00
|
|
|
#include <libsolidity/codegen/ir/IRVariable.h>
|
|
|
|
#include <variant>
|
2019-04-30 16:32:56 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::frontend
|
2019-04-30 16:32:56 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
class Type;
|
|
|
|
|
2020-02-06 13:05:25 +00:00
|
|
|
struct IRLValue
|
2019-04-30 16:32:56 +00:00
|
|
|
{
|
2020-02-06 13:05:25 +00:00
|
|
|
Type const& type;
|
|
|
|
struct Stack
|
|
|
|
{
|
|
|
|
IRVariable variable;
|
|
|
|
};
|
2020-04-02 18:06:52 +00:00
|
|
|
struct Immutable
|
|
|
|
{
|
|
|
|
VariableDeclaration const* variable = nullptr;
|
|
|
|
};
|
2020-02-06 13:05:25 +00:00
|
|
|
struct Storage
|
|
|
|
{
|
|
|
|
std::string const slot;
|
|
|
|
/// unsigned: Used when the offset is known at compile time, uses optimized
|
|
|
|
/// functions
|
|
|
|
/// string: Used when the offset is determined at run time
|
|
|
|
std::variant<std::string, unsigned> const offset;
|
|
|
|
std::string offsetString() const
|
|
|
|
{
|
|
|
|
if (std::holds_alternative<unsigned>(offset))
|
|
|
|
return std::to_string(std::get<unsigned>(offset));
|
|
|
|
else
|
|
|
|
return std::get<std::string>(offset);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct Memory
|
|
|
|
{
|
|
|
|
std::string const address;
|
|
|
|
bool byteArrayElement = false;
|
|
|
|
};
|
|
|
|
struct Tuple
|
|
|
|
{
|
|
|
|
std::vector<std::optional<IRLValue>> components;
|
|
|
|
};
|
2020-04-02 18:06:52 +00:00
|
|
|
std::variant<Stack, Immutable, Storage, Memory, Tuple> kind;
|
2019-06-27 11:36:06 +00:00
|
|
|
};
|
|
|
|
|
2020-04-02 18:06:52 +00:00
|
|
|
}
|