Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | LLL: change (include) to use a callback | Alex Beregszaszi | 2017-10-03 | 1 | -12/+13 |
| | |||||
* | lll: do not expose push/dup/swap/jumpdest as functions | Alex Beregszaszi | 2017-10-02 | 1 | -1/+17 |
| | |||||
* | Merge pull request #2622 from benjaminion/lll-switch | Alex Beregszaszi | 2017-10-02 | 1 | -0/+38 |
|\ | | | | | LLL: Implement a "switch" expression | ||||
| * | LLL: Implement a switch expression. | benjaminion | 2017-10-02 | 1 | -0/+38 |
| | | |||||
* | | lll: better error reporting in some cases | Alex Beregszaszi | 2017-10-02 | 1 | -7/+7 |
|/ | |||||
* | Merge pull request #2573 from benjaminion/lll-error-report-symbol | Alex Beregszaszi | 2017-07-20 | 1 | -11/+11 |
|\ | | | | | LLL: Improve error reporting in certain cases. | ||||
| * | LLL: Improve error reporting in certain cases. | benjaminion | 2017-07-16 | 1 | -11/+11 |
| | | |||||
* | | LLL: remove useless code | Alex Beregszaszi | 2017-07-19 | 1 | -5/+1 |
|/ | |||||
* | LLL: rewrite alloc to avoid issues with edge cases. | benjaminion | 2017-07-12 | 1 | -6/+22 |
| | |||||
* | LLL: fix redefinitions on some compilers | Alex Beregszaszi | 2017-06-24 | 1 | -1/+5 |
| | |||||
* | LLL: fix the set keyword (create symbol if not present) | Alex Beregszaszi | 2017-06-23 | 1 | -3/+13 |
| | |||||
* | LLL: report correct name if a symbol was not found | Alex Beregszaszi | 2017-06-23 | 1 | -1/+1 |
| | |||||
* | LLL: do not allow empty variable names | Alex Beregszaszi | 2017-06-23 | 1 | -0/+2 |
| | |||||
* | Merge pull request #2440 from ethereum/lll-include | chriseth | 2017-06-22 | 1 | -1/+7 |
|\ | | | | | LLL: better error reporting in (include) | ||||
| * | LLL: report errors if (include) failed | Alex Beregszaszi | 2017-06-22 | 1 | -1/+7 |
| | | |||||
* | | Replace obsolete assembly code in LLL | Alex Beregszaszi | 2017-06-22 | 1 | -8/+11 |
|/ | |||||
* | Move subroutine helpers from CompilerContext to Assembly | Alex Beregszaszi | 2017-06-15 | 1 | -2/+1 |
| | |||||
* | Remove single use Assembly::popTo | Alex Beregszaszi | 2017-06-15 | 1 | -1/+3 |
| | |||||
* | Change opcode generated by (panic) to INVALID | benjaminion | 2017-06-14 | 1 | -4/+0 |
| | | | | | | EIP-141 ethereum/EIPs#141 has preserved 0xfe as an invalid opcode for aborting EVM execution. The EVM assembler supports this via the INVALID opcode. The LLL "panic" expression used to generate a jump to an invalid location in order to abort EVM execution. This change brings "panic" into line with EIP-141 by generating the INVALID opcode instead. | ||||
* | Replace cpp-ethereum with solidity in the license headers | Alex Beregszaszi | 2017-02-02 | 1 | -4/+4 |
| | |||||
* | LLL: throw exceptions on invalid symbols | Alex Beregszaszi | 2016-12-01 | 1 | -12/+6 |
| | |||||
* | Merge pull request #1329 from ethereum/lll-lit-changes | Alex Beregszaszi | 2016-11-26 | 1 | -19/+20 |
|\ | | | | | LLL: improvements (and fixes) to the lit keyword | ||||
| * | LLL: simplify the LIT parsing code | Alex Beregszaszi | 2016-11-26 | 1 | -5/+17 |
| | | |||||
| * | LLL: only support variable length bigendian numbers in LIT | Alex Beregszaszi | 2016-11-01 | 1 | -13/+2 |
| | | |||||
| * | LLL: support multiple strings in LIT | Alex Beregszaszi | 2016-11-01 | 1 | -2/+2 |
| | | |||||
* | | Converted sub assembly to smart pointer. | chriseth | 2016-11-16 | 1 | -1/+2 |
| | | |||||
* | | Stored combined creation and runtime tags. | chriseth | 2016-11-16 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Includes a change to Assembly to allow tags from sub-assemblies to be used. Sorry, this get a bit bigger than I thought. | ||||
* | | LLL: add bytecodesize keyword to push resulting bytecode size | Alex Beregszaszi | 2016-11-02 | 1 | -0/+4 |
| | | |||||
* | | LLL: properly support dashes (-) as part of variable names | Alex Beregszaszi | 2016-11-01 | 1 | -2/+2 |
| | | |||||
* | | LLL: remove unneeded includes | Alex Beregszaszi | 2016-11-01 | 1 | -3/+0 |
| | | |||||
* | | LLL: report back unsupported keywords | Alex Beregszaszi | 2016-11-01 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #1302 from ethereum/lll-panic | chriseth | 2016-10-28 | 1 | -0/+4 |
|\ | | | | | LLL: introduce panic keyword | ||||
| * | LLL: introduce panic keyword | Alex Beregszaszi | 2016-10-27 | 1 | -0/+4 |
| | | |||||
* | | Added support for `until`, the inverse of `while`. | Daniel Ellison | 2016-10-26 | 1 | -2/+3 |
|/ | |||||
* | LLL: reorder arithmetic/binary instruction list for readability | Alex Beregszaszi | 2016-10-26 | 1 | -3/+26 |
| | |||||
* | LLL: use NOT for ~ | Alex Beregszaszi | 2016-10-26 | 1 | -10/+1 |
| | |||||
* | LLL: replace (1 0 sub) with literal value | Alex Beregszaszi | 2016-10-26 | 1 | -3/+1 |
| | |||||
* | LLL: fix the commented out debugging code | Alex Beregszaszi | 2016-10-15 | 1 | -8/+9 |
| | |||||
* | Remove log.h from solidity. | chriseth | 2016-04-12 | 1 | -1/+0 |
| | |||||
* | return instructionInfo style | Dimitry | 2016-04-04 | 1 | -1/+1 |
| | |||||
* | rename namespace for instruction.h/cpp in libevmasm | Dimitry | 2016-04-02 | 1 | -1/+1 |
| | |||||
* | move libevmcore to solidity | Dimitry | 2016-04-02 | 1 | -1/+1 |
| | |||||
* | move liblll | Dimitry | 2016-03-21 | 1 | -0/+586 |