aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmAnalysis.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Initial EVM1.5 assembly implementation.chriseth2017-06-081-5/+14
|
* Add comma.chriseth2017-06-011-1/+1
|
* Improved error message.chriseth2017-06-011-1/+1
|
* Refactor to use expectExpression in analyzer.chriseth2017-06-011-37/+23
|
* Refactor error reportingRhett Aultman2017-05-301-94/+59
| | | | | | | | | This commit introduces ErrorReporter, a utility class which consolidates all of the error logging functionality into a common set of functions. It also replaces all direct interactions with an ErrorList with calls to an ErrorReporter. This commit resolves issue #2209
* Introduce virtual blocks for function arguments.chriseth2017-05-291-7/+8
|
* Move builtin type list to the topAlex Beregszaszi2017-05-271-1/+7
|
* Change error message for invalid typeAlex Beregszaszi2017-05-271-1/+1
|
* Introduce Julia mode in AsmAnalyzerAlex Beregszaszi2017-05-271-3/+6
|
* Validate that only basic types are used in JuliaAlex Beregszaszi2017-05-271-0/+20
|
* Move constructor to AsmAnalyzer headerAlex Beregszaszi2017-05-271-9/+0
|
* Adapt EVM codegen to new namespace.chriseth2017-05-261-3/+3
|
* Do not stop on first switch errorAlex Beregszaszi2017-05-261-5/+7
|
* Change switch case string to LiteralAlex Beregszaszi2017-05-261-11/+19
|
* Implement switch statement in the assembly parser/printerAlex Beregszaszi2017-05-261-0/+32
|
* Fix scope assert in AsmAnalyzerAlex Beregszaszi2017-05-241-0/+1
|
* Rename FunctionalAssignment to AssignmentAlex Beregszaszi2017-05-241-1/+1
|
* Rename Assignment to StackAssignmentAlex Beregszaszi2017-05-241-1/+1
|
* Display actual error message and not assertion in analysisAlex Beregszaszi2017-05-231-1/+9
|
* Enable a single right hand item on letAlex Beregszaszi2017-05-231-19/+2
|
* Support multiple variables in a variable declaration in inline assemblyAlex Beregszaszi2017-05-231-4/+24
|
* Support true/false literals in inline assemblyAlex Beregszaszi2017-05-191-1/+1
|
* Parse types in Julia modeAlex Beregszaszi2017-05-061-4/+5
|
* Refactor to combined scope and stack height info.chriseth2017-04-261-25/+19
|
* Store stack height in analysis phase.chriseth2017-04-261-3/+27
|
* Fix storage access tests.chriseth2017-04-251-10/+16
|
* Another stack check.chriseth2017-04-251-0/+2
|
* Only allow access to local variables and only if they have a stack size of one.chriseth2017-04-251-1/+1
|
* Check again that instruction argument count is correct.chriseth2017-04-251-0/+1
|
* Review comments and cleanup.chriseth2017-04-251-4/+3
|
* Perform stack height checks in assembly analysis phase.chriseth2017-04-251-21/+133
|
* Add some missing error locations.chriseth2017-04-251-2/+3
|
* Use actual type checking phase of assembler.chriseth2017-04-251-5/+19
|
* Refactor assembly analysis into scope filling and checking.chriseth2017-04-251-104/+125
|
* Register functions.chriseth2017-04-251-25/+71
|
* Fix error message.chriseth2017-03-031-1/+1
|
* Remove stack annotations again.chriseth2017-03-031-30/+1
|
* Slightly cleaner label ids.chriseth2017-03-031-5/+6
|
* Partially add functions.chriseth2017-03-031-3/+33
|
* Refactor CodeGen to recurse on blocks.chriseth2017-03-031-15/+14
|
* Analysis refactoring.chriseth2017-03-031-0/+179