2018-05-09 09:39:11 +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
|
2018-05-09 09:39:11 +00:00
|
|
|
/**
|
2018-06-18 21:26:31 +00:00
|
|
|
* Exceptions in Yul.
|
2018-05-09 09:39:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/Exceptions.h>
|
|
|
|
#include <libsolutil/Assertions.h>
|
2018-05-09 09:39:11 +00:00
|
|
|
|
2021-04-12 10:33:28 +00:00
|
|
|
#include <libyul/YulString.h>
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::yul
|
2018-05-09 09:39:11 +00:00
|
|
|
{
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
struct YulException: virtual util::Exception {};
|
2018-06-25 22:11:14 +00:00
|
|
|
struct OptimizerException: virtual YulException {};
|
2018-09-25 02:47:25 +00:00
|
|
|
struct CodegenException: virtual YulException {};
|
2018-10-17 09:33:35 +00:00
|
|
|
struct YulAssertion: virtual YulException {};
|
|
|
|
|
2021-04-12 10:33:28 +00:00
|
|
|
struct StackTooDeepError: virtual YulException
|
|
|
|
{
|
|
|
|
StackTooDeepError(YulString _variable, int _depth, std::string const& _message):
|
|
|
|
variable(_variable), depth(_depth)
|
|
|
|
{
|
|
|
|
*this << util::errinfo_comment(_message);
|
|
|
|
}
|
|
|
|
StackTooDeepError(YulString _functionName, YulString _variable, int _depth, std::string const& _message):
|
|
|
|
functionName(_functionName), variable(_variable), depth(_depth)
|
|
|
|
{
|
|
|
|
*this << util::errinfo_comment(_message);
|
|
|
|
}
|
|
|
|
YulString functionName;
|
|
|
|
YulString variable;
|
|
|
|
int depth;
|
|
|
|
};
|
|
|
|
|
2018-10-17 09:33:35 +00:00
|
|
|
/// Assertion that throws an YulAssertion containing the given description if it is not met.
|
|
|
|
#define yulAssert(CONDITION, DESCRIPTION) \
|
2019-12-11 16:31:36 +00:00
|
|
|
assertThrow(CONDITION, ::solidity::yul::YulAssertion, DESCRIPTION)
|
2018-05-09 09:39:11 +00:00
|
|
|
|
|
|
|
}
|