aboutsummaryrefslogtreecommitdiffstats
path: root/libevmasm/Assembly.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Use curly-brackets initializationMathias Baumann2018-12-111-7/+7
|
* Replace push_back with emplace_back where it makes senseMathias Baumann2018-12-111-1/+1
|
* liblangutil: SourceLocation: adds (shared) pointer to underlying CharStream ↵Christian Parpart2018-12-011-5/+5
| | | | | | source, eliminating sourceName Also, adapted affecting code to those changes.
* Introduce namespace `langutil` in liblangutil directory.Christian Parpart2018-11-221-0/+1
| | | | | | | Also: - Use {}-style list initialisation for SourceLocation construction - Introduce new system includes - Changes the API of the Scanner to take source as value (with move) as opposed to as a reference
* Eliminate `byte`-typedef and use `uint8_t` in all their places instead.Christian Parpart2018-11-071-13/+13
| | | | | | | | | | | This change is made to (easily) be forward compatible with future C++ standards, in order to allow compiling the code with newer standards at some point in the future. * Removed the `using byte = uint8_t;` line from Common.h * Mechanically change all uses of `byte` to `uint8_t`. Tested with GCC 7.3 in C++11/14/17 modes :-)
* Use 'switch' instead of 'else if'Khan M Rashedun-Naby2018-09-271-2/+11
|
* Group append() functions in libevmasmAlex Beregszaszi2018-09-261-15/+15
|
* Replace safety stop by invalidLeonardo Alt2018-08-141-2/+2
|
* Use dev::toString() in Assembly instead of misusing string{} for u256Alex Beregszaszi2018-08-091-2/+2
|
* Optimize across MLOAD if MSIZE is not used.chriseth2018-04-031-1/+3
|
* Use EVM version in gas meter and optimizer.chriseth2018-03-051-1/+3
|
* Prevent libraries from being called.chriseth2018-01-191-0/+9
|
* Throw on too many peephole optimizer iterations.chriseth2017-10-171-1/+4
|
* Assume peephole optimizer was successful if number of pops increased.chriseth2017-10-141-1/+1
|
* Add useful messages to exceptions in the assemblerAlex Beregszaszi2017-09-181-3/+3
|
* Named assembly labels.chriseth2017-09-161-0/+11
|
* Introduce assemblyStringAlex Beregszaszi2017-09-111-0/+7
|
* Do not return the stream in asssemblyStreamAlex Beregszaszi2017-09-111-3/+1
|
* Split out the JSON functionality from assembly.stream()Alex Beregszaszi2017-09-111-17/+4
|
* Mark functions static in libevmasmAlex Beregszaszi2017-09-111-2/+2
|
* Introduce JumpdestRemover optimisation stepAlex Beregszaszi2017-08-251-7/+23
|
* Avoid some Json copy operations.chriseth2017-08-211-5/+2
|
* Introduce fine-grained optimiser settings in libevmasmAlex Beregszaszi2017-07-271-16/+43
|
* Fix negative stack size checks.chriseth2017-06-281-0/+1
|
* Use assertThrow where possibleAlex Beregszaszi2017-06-221-8/+5
|
* Replace obsolete assembly code in LLLAlex Beregszaszi2017-06-221-3/+0
|
* Merge pull request #2398 from ethereum/assembly-cleanupchriseth2017-06-151-8/+1
|\ | | | | Remove obsolete features from libevmasm
| * Remove obsolete Assembly::outAlex Beregszaszi2017-06-151-7/+0
| |
| * Remove obsolete errorTag()Alex Beregszaszi2017-06-151-1/+1
| |
* | Print auxiliary data in the assemblyAlex Beregszaszi2017-06-151-0/+6
| |
* | Print assembly even if there's no data sectionAlex Beregszaszi2017-06-151-1/+3
|/
* Implement missing assembly output functions and do not use PushString for ↵chriseth2017-04-121-1/+2
| | | | assembly.
* Print source location before items.chriseth2017-02-241-1/+1
|
* Create functional assembly output, if possible.chriseth2017-01-241-13/+81
|
* Fix error tag usage in lll.chriseth2017-01-231-1/+1
|
* Optimise AssemblyItem::m_data.chriseth2017-01-131-1/+1
|
* Assembly output for Assembly object.chriseth2017-01-031-51/+18
|
* Fix tests.chriseth2016-12-011-2/+3
|
* Add swarm hash to the end of the bytecode.chriseth2016-12-011-3/+7
|
* libevmasm: remove an unused variable `total`Yoichi Hirai2016-12-011-3/+2
|
* Integrate AddPop.chriseth2016-11-251-1/+1
|
* Fix licensing headersVoR02202016-11-231-4/+4
| | | | Signed-off-by: VoR0220 <rj@erisindustries.com>
* Optimizer: Clear state for JUMPDESTs.chriseth2016-11-221-36/+25
|
* Some more assertions and style changes.chriseth2016-11-161-1/+1
|
* Simple peephole optimizer that is activated even if not requested.chriseth2016-11-161-11/+22
|
* Converted sub assembly to smart pointer.chriseth2016-11-161-18/+36
|
* Stored combined creation and runtime tags.chriseth2016-11-161-41/+61
| | | | | | | Includes a change to Assembly to allow tags from sub-assemblies to be used. Sorry, this get a bit bigger than I thought.
* Implement uninitialized storage functions.chriseth2016-11-161-0/+1
|
* Optimizer: generate code starting with empty statechriseth2016-10-221-2/+4
|
* Rename dev::sha3 to dev::keccak256Alex Beregszaszi2016-10-061-1/+1
|
* Explicitly specify length of push data for assembly output.chriseth2016-08-181-1/+1
|
* Reset knowledge in optimizer for path joins.chriseth2016-08-011-1/+2
|
* Remove log.h from solidity.chriseth2016-04-121-9/+0
|
* move libevmasmDimitry2016-03-211-0/+545