-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add builtin erc7201 #15968
base: develop
Are you sure you want to change the base?
Add builtin erc7201 #15968
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ | |
#include <libsolidity/ast/AST.h> | ||
#include <libsolidity/ast/TypeProvider.h> | ||
#include <liblangutil/ErrorReporter.h> | ||
#include <libsolutil/Keccak256.h> | ||
#include <libsolutil/StringUtils.h> | ||
#include <libsolutil/FixedHash.h> | ||
|
||
#include <limits> | ||
|
||
|
@@ -407,3 +410,35 @@ void ConstantEvaluator::endVisit(TupleExpression const& _tuple) | |
if (!_tuple.isInlineArray() && _tuple.components().size() == 1) | ||
m_values[&_tuple] = evaluate(*_tuple.components().front()); | ||
} | ||
|
||
void ConstantEvaluator::endVisit(FunctionCall const& _functionCall) | ||
{ | ||
using util::keccak256; | ||
using util::h256; | ||
|
||
auto const* builtinFunction = dynamic_cast<MagicVariableDeclaration const*>(ASTNode::referencedDeclaration(_functionCall.expression())); | ||
if (!builtinFunction) | ||
return; | ||
|
||
auto const* functionType = builtinFunction->functionType(true); | ||
solAssert(functionType); | ||
switch (functionType->kind()) | ||
{ | ||
case FunctionType::Kind::ERC7201: | ||
{ | ||
solAssert(_functionCall.arguments().size() == 1); | ||
auto const* argument = dynamic_cast<Literal const*>(_functionCall.arguments()[0].get()); | ||
solAssert(argument); | ||
ASTString argStringLiteral = argument->valueWithoutUnderscores(); | ||
auto value = | ||
u256(keccak256(h256(u256(keccak256(argStringLiteral)) - 1))) & | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have to check that but looks like probably those conversions can be skipped. |
||
u256(~0xff) | ||
; | ||
solAssert(functionType->returnParameterTypes().size() == 1); | ||
m_values[&_functionCall] = TypedRational{functionType->returnParameterTypes()[0], rational{value}}; | ||
break; | ||
} | ||
default: | ||
break; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
contract C { | ||
uint constant x = erc7201("A"); | ||
uint[x] array; | ||
} | ||
// ---- | ||
// Warning 7325: (53-60): Type uint256[36579005187129934694193755934841191771209741707776365283473783080460440925696] covers a large part of storage and thus makes collisions likely. Either use mappings or dynamic arrays and allow their size to be increased only in small quantities per transaction. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
contract C { | ||
function f() public pure returns (uint) { | ||
return erc7201("ABC"); | ||
} | ||
} | ||
// ---- | ||
// UnimplementedFeatureError 1834: (0-97): Codegen does not support erc7201 builtin yet. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
function erc7201() pure returns (uint) { | ||
return 42; | ||
} | ||
// ---- | ||
// Warning 2319: (0-57): This declaration shadows a builtin symbol. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
contract C { | ||
function f() public pure { | ||
erc7201; | ||
} | ||
} | ||
// ---- | ||
// Warning 6133: (52-59): Statement has no effect. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
contract C { | ||
uint erc7201; | ||
} | ||
// ---- | ||
// Warning 2319: (17-29): This declaration shadows a builtin symbol. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
contract C { | ||
uint x = erc7201(); | ||
uint y = erc7201("12", "34"); | ||
uint z = erc7201("A", "BC", "D"); | ||
} | ||
// ---- | ||
// TypeError 6160: (26-35): Wrong argument count for function call: 0 arguments given but expected 1. | ||
// TypeError 6160: (50-69): Wrong argument count for function call: 2 arguments given but expected 1. | ||
// TypeError 6160: (84-107): Wrong argument count for function call: 3 arguments given but expected 1. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
contract C { | ||
uint constant x = erc7201("abc"); | ||
function f() public pure returns(uint) { | ||
return x; | ||
} | ||
} | ||
// ---- | ||
// UnimplementedFeatureError 1834: (0-121): Codegen does not support erc7201 builtin yet. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
contract C { | ||
function f() public { | ||
erc7201.gas(); | ||
} | ||
} | ||
// ---- | ||
// TypeError 9582: (47-58): Member "gas" not found or not visible after argument-dependent lookup in function (bytes memory) pure returns (uint256). |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
contract C { | ||
function f() public { | ||
erc7201.value(); | ||
} | ||
} | ||
// ---- | ||
// TypeError 8820: (47-60): Member "value" is only available for payable functions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we report an error instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is already checked in
TypeChecker::typeCheckFunctionGeneralChecks
.I think also it doesn't make sense to raise such error here.
But your question touches on something I am uncomfortable still in extending the
ConstantEvaluator
, which is depending/assuming that analysis step already passed.