aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/ExpressionCompiler.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Allow calling internal functions of libraries.chriseth2016-05-041-32/+68
| | | | | | | | | | | | Internal functions of libraries can be called as if the library were a base contract of the calling contract. As the calling convention for internal functions is to not create a new call context, the code of these functions will be pulled into the context of the caller, duplicating their code. This might pull in code of further internal or even private functions. The use case for such functions is to allow libraries which can operate on memory types such that these types can also be modified in place.
* Make solidity independent from ethcore.chriseth2016-04-071-7/+4
|
* reduce unnecessary solidity:: namespaceDimitry2016-04-041-121/+121
|
* rename namespace for instruction.h/cpp in libevmasmDimitry2016-04-021-121/+121
|
* Correctly clean higher order bits for index access.chriseth2016-03-311-0/+2
|
* Fixed Windows warningsBob Summerwill2016-03-181-1/+2
|
* BREAKING: Implement delegatecall and make default for library calls.chriseth2016-03-121-11/+18
|
* Index access for bytesXX.chriseth2016-02-101-0/+26
|
* [cond-expr] fixup according to code reviewLu Guanqun2016-01-231-1/+3
|
* [cond-expr] make the codegen one instruction lessLu Guanqun2016-01-231-5/+4
|
* [cond-expr] generate assembly for _ ? _ : _Lu Guanqun2016-01-231-0/+15
|
* Detect library name clashes.chriseth2016-01-141-2/+0
|
* final changes to typechecker, the expression compiler, and a couple more ↵RJ Catalano2016-01-121-8/+7
| | | | tests for good measure
* Update ExpressionCompiler.cppRJ2016-01-111-14/+16
|
* Update ExpressionCompiler.cppRJ2016-01-111-4/+2
|
* Update ExpressionCompiler.cppRJ2016-01-101-17/+39
|
* support decayed tuple expression as left valueLu Guanqun2016-01-041-1/+6
|
* Add structs and enums to contract types.chriseth2015-12-181-7/+9
|
* Fix: Segfaults connected to paramater types.chriseth2015-12-101-2/+2
| | | | parameterTypes does not return by const reference anymore.
* Code generation for calling bound methods.chriseth2015-12-011-4/+37
|
* Merge pull request #251 from chriseth/bind2chriseth2015-11-301-1/+1
|\ | | | | Bind library functions to types.
| * Add bound functions to types.chriseth2015-11-291-1/+1
| |
* | Introduce selfdestruct alias for suicide.chriseth2015-11-291-1/+1
|/
* Make members context-sensitive.chriseth2015-11-261-6/+2
|
* Code generation for creating arrays.chriseth2015-11-261-0/+47
|
* Fixed string inside struct allocation bug.chriseth2015-11-241-1/+1
|
* Merge pull request #236 from ethereum/hot_gavGav Wood2015-11-231-5/+7
|\ | | | | Fix up for new API from EIP-1.1.
| * Fix up for new API from EIP-1.1.Gav Wood2015-11-211-5/+7
| |
* | Addmod and mulmod.chriseth2015-11-191-0/+14
| |
* | Fix dynamic indexed event arguments - applies sha3.chriseth2015-11-171-5/+18
|/
* File reorganisation.chriseth2015-10-211-0/+1370