aboutsummaryrefslogtreecommitdiffstats
path: root/liblll/CompilerState.cpp
blob: 019582d4c33cde8aa22d64d3cdb308ef8641aed6 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
    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/>.
*/
/** @file CompilerState.cpp
 * @author Gav Wood <i@gavwood.com>
 * @date 2014
 */

#include "CompilerState.h"
#include "CodeFragment.h"

using namespace std;
using namespace dev;
using namespace dev::lll;

CompilerState::CompilerState()
{
}

CodeFragment const& CompilerState::getDef(std::string const& _s) const
{
    if (defs.count(_s))
        return defs.at(_s);
    else if (args.count(_s))
        return args.at(_s);
    else if (outers.count(_s))
        return outers.at(_s);
    else
        return NullCodeFragment;
}

void CompilerState::populateStandard()
{
    static const string s = "{"
    "(def 'panic () (asm INVALID))"
    // Alternative macro version of alloc, which is currently implemented in the parser
    // "(def 'alloc (n) (raw (msize) (when n (pop (mload (+ (msize) (& (- n 1) (~ 0x1f))))))))"
    "(def 'allgas (- (gas) 21))"
    "(def 'send (to value) (call allgas to value 0 0 0 0))"
    "(def 'send (gaslimit to value) (call gaslimit to value 0 0 0 0))"
    // NOTE: in this macro, memory location 0 is set in order to force msize to be at least 32 bytes.
    "(def 'msg (gaslimit to value data datasize outsize) { [0]:0 [0]:(msize) (call gaslimit to value data datasize @0 outsize) @0 })"
    "(def 'msg (gaslimit to value data datasize) { (call gaslimit to value data datasize 0 32) @0 })"
    "(def 'msg (gaslimit to value data) { [0]:data (msg gaslimit to value 0 32) })"
    "(def 'msg (to value data) { [0]:data (msg allgas to value 0 32) })"
    "(def 'msg (to data) { [0]:data (msg allgas to 0 0 32) })"
    // NOTE: in the create macros, memory location 0 is set in order to force msize to be at least 32 bytes.
    "(def 'create (value code) { [0]:0 [0]:(msize) (create value @0 (lll code @0)) })"
    "(def 'create (code) { [0]:0 [0]:(msize) (create 0 @0 (lll code @0)) })"
    "(def 'sha3 (loc len) (keccak256 loc len))"
    "(def 'sha3 (val) { [0]:val (sha3 0 32) })"
    "(def 'sha3pair (a b) { [0]:a [32]:b (sha3 0 64) })"
    "(def 'sha3trip (a b c) { [0]:a [32]:b [64]:c (sha3 0 96) })"
    "(def 'return (val) { [0]:val (return 0 32) })"
    "(def 'returnlll (code) (return 0 (lll code 0)) )"
    "(def 'makeperm (name pos) { (def name (sload pos)) (def name (v) (sstore pos v)) } )"
    "(def 'permcount 0)"
    "(def 'perm (name) { (makeperm name permcount) (def 'permcount (+ permcount 1)) } )"
    "(def 'ecrecover (hash v r s) { [0] hash [32] v [64] r [96] s (msg allgas 1 0 0 128) })"
    "(def 'sha256 (data datasize) (msg allgas 2 0 data datasize))"
    "(def 'ripemd160 (data datasize) (msg allgas 3 0 data datasize))"
    "(def 'sha256 (val) { [0]:val (sha256 0 32) })"
    "(def 'ripemd160 (val) { [0]:val (ripemd160 0 32) })"
    "(def 'wei 1)"
    "(def 'szabo 1000000000000)"
    "(def 'finney 1000000000000000)"
    "(def 'ether 1000000000000000000)"
    // these could be replaced by native instructions once supported by EVM
    "(def 'shl (val shift) (mul val (exp 2 shift)))"
    "(def 'shr (val shift) (div val (exp 2 shift)))"
    "}";
    CodeFragment::compile(s, *this, CodeFragment::ReadCallback());
}