aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/CompilerContext.cpp
diff options
context:
space:
mode:
authorValentin Wüstholz <wuestholz@gmail.com>2017-01-23 03:49:12 +0800
committerchriseth <c@ethdev.com>2017-01-26 23:39:07 +0800
commit9bcbd93ac59a19320fd56e27c58a6283f2450666 (patch)
treecf102bce6745c1e771dcacbd83a6e850a09c0054 /libsolidity/codegen/CompilerContext.cpp
parent102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220 (diff)
downloaddexon-solidity-9bcbd93ac59a19320fd56e27c58a6283f2450666.tar.gz
dexon-solidity-9bcbd93ac59a19320fd56e27c58a6283f2450666.tar.zst
dexon-solidity-9bcbd93ac59a19320fd56e27c58a6283f2450666.zip
Change translation of implicit throws (issue #1589).
This adds a new invalid instruction that is used for encoding implicit throws that are emitted by the compiler. This makes it possible to distinguish such runtime errors from user-provided, explicit throws.
Diffstat (limited to 'libsolidity/codegen/CompilerContext.cpp')
-rw-r--r--libsolidity/codegen/CompilerContext.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/libsolidity/codegen/CompilerContext.cpp b/libsolidity/codegen/CompilerContext.cpp
index e26f96e8..45450350 100644
--- a/libsolidity/codegen/CompilerContext.cpp
+++ b/libsolidity/codegen/CompilerContext.cpp
@@ -215,6 +215,18 @@ CompilerContext& CompilerContext::appendJump(eth::AssemblyItem::JumpType _jumpTy
return *this << item;
}
+CompilerContext& CompilerContext::appendInvalid()
+{
+ return *this << Instruction::INVALID;
+}
+
+CompilerContext& CompilerContext::appendConditionalInvalid()
+{
+ eth::AssemblyItem falseTag = appendConditionalJump();
+ eth::AssemblyItem endTag = appendJumpToNew();
+ return *this << falseTag << Instruction::INVALID << endTag;
+}
+
void CompilerContext::resetVisitedNodes(ASTNode const* _node)
{
stack<ASTNode const*> newStack;