aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen
Commit message (Expand)AuthorAgeFilesLines
* Introduce emit statement.chriseth2018-02-222-0/+10
* Expect end of string at end of top-level block for assembly parser.chriseth2018-02-211-1/+1
* Make addmod and mulmod revert if the last argument is zero.chriseth2018-02-151-1/+5
* Allow `this.f.selector` to be pure.chriseth2018-02-131-0/+24
* Prevent libraries from being called.chriseth2018-01-194-3/+81
* Split inline assembly into loose and strict flavours.chriseth2018-01-062-4/+9
* Reset source location after using inline assembly.chriseth2018-01-041-0/+3
* Favour if over switch in ABI coder.chriseth2017-12-151-14/+14
* Cleanup and overflow checks for data pointers.chriseth2017-11-304-23/+47
* ABI decoder.chriseth2017-11-306-4/+503
* Use if statement in abi functions.chriseth2017-11-221-3/+3
* Add explanation to unimplemented assertionsAlex Beregszaszi2017-11-162-3/+3
* Do not accept truncated function selectors.chriseth2017-10-181-7/+4
* Allocate one byte per memory byte array element instead of 32.chriseth2017-10-171-2/+9
* Merge pull request #2982 from ethereum/encoderFixesAlex Beregszaszi2017-10-052-25/+18
|\
| * Rename "compacted" to "fromStack".chriseth2017-10-042-22/+18
| * ABI encoder fixes and test.chriseth2017-09-271-5/+2
* | Merge pull request #3029 from ethereum/tanwisgasAlex Beregszaszi2017-10-051-0/+3
|\ \
| * | Send all gas for 0.5.0.chriseth2017-10-051-0/+3
* | | Merge pull request #2968 from ethereum/calldataencodedsizechriseth2017-10-051-0/+3
|\ \ \ | |/ / |/| |
| * | Add some asserts about calldata encoded size.chriseth2017-10-041-0/+3
* | | Merge pull request #2962 from ethereum/optionalDebugInfoAsmchriseth2017-10-041-5/+16
|\ \ \
| * | | Debugging info in CompilerContext.chriseth2017-10-041-5/+16
* | | | Better readable encoder assembly.chriseth2017-09-271-6/+28
| |_|/ |/| |
* | | Split encodeToMemory to packedEncode and abiEncodeAlex Beregszaszi2017-09-274-18/+41
* | | Make most of the parameters mandatory in encodeToMemoryAlex Beregszaszi2017-09-272-6/+6
* | | Ensure that address types are always declared as 160bitAlex Beregszaszi2017-09-273-6/+6
| |/ |/|
* | Simplify switch statements by refactoring internal break statementsAlex Beregszaszi2017-09-252-24/+24
* | Avoid switch fallthrough in ExpressionCompilerAlex Beregszaszi2017-09-251-26/+32
* | Avoid switch fallthrough in CompilerUtilsAlex Beregszaszi2017-09-251-6/+3
|/
* More verbose errors for generated assembly.chriseth2017-09-221-2/+18
* Mark functions staticAlex Beregszaszi2017-09-202-2/+2
* Ensure parameter names match between headers and implementationAlex Beregszaszi2017-09-201-2/+2
* Implement struct encoder.chriseth2017-09-163-6/+131
* Update tests and error messages.chriseth2017-09-161-1/+1
* Move ABI encoder into its own function.chriseth2017-09-165-66/+82
* Named assembly labels.chriseth2017-09-163-15/+8
* Rename .sig to .selector on function typesAlex Beregszaszi2017-09-131-1/+1
* Add sig member on function typeAlex Beregszaszi2017-09-131-1/+8
* Introduce assemblyStringAlex Beregszaszi2017-09-112-4/+4
* Do not return the stream in asssemblyStreamAlex Beregszaszi2017-09-112-4/+4
* Split out the JSON functionality from assembly.stream()Alex Beregszaszi2017-09-112-6/+15
* Merge pull request #2847 from ethereum/codegen-docsAlex Beregszaszi2017-08-293-1/+25
|\
| * Document more of the codegen featuresAlex Beregszaszi2017-08-293-1/+25
* | Merge pull request #2833 from ethereum/statemutability-builtinschriseth2017-08-291-1/+1
|\ \
| * | Swap declaration/statemutability in FunctionType constructorAlex Beregszaszi2017-08-291-1/+1
| |/
* / Move all file specific globals to anonymous namespaceAlex Beregszaszi2017-08-291-0/+5
|/
* Mark to places fall-throughAlex Beregszaszi2017-08-252-0/+2
* Remove fallthrough from ArrayUtilsAlex Beregszaszi2017-08-251-3/+3
* Mark a lot of functions static (where possible)Alex Beregszaszi2017-08-222-2/+2
* Mark appropriate constructors explicitAlex Beregszaszi2017-08-223-3/+3
* Mark a lot of functions const (where possible)Alex Beregszaszi2017-08-226-9/+9
* Merge pull request #2704 from ethereum/newEncoderchriseth2017-08-147-10/+1296
|\
| * Experimental feature switch for ABI encoder.chriseth2017-08-143-2/+10
| * Remove unused magic global feature.chriseth2017-08-142-10/+2
| * Interface for new ABI encoder.chriseth2017-08-142-0/+40
| * New ABI encoder.chriseth2017-08-142-0/+1246
* | Remove constant/payable in all function typesAlex Beregszaszi2017-08-141-2/+1
|/
* .delegatecall() should always return a boolean of execution statusAlex Beregszaszi2017-08-021-1/+1
* Provide new account gas for low-level callcode/delegatecallAlex Beregszaszi2017-08-011-1/+1
* Rename Bare to BarecallAlex Beregszaszi2017-08-011-5/+5
* Fix for invalid clearing of memory in ecrecover.chriseth2017-07-281-1/+1
* Remove the need of jumping out of the fallbackAlex Beregszaszi2017-07-281-8/+4
* Merge pull request #2652 from ethereum/fixMultiModifierchriseth2017-07-272-6/+11
|\
| * Re-allow multiple modifiers per function.chriseth2017-07-272-6/+11
* | Merge pull request #2645 from ethereum/assertsAlex Beregszaszi2017-07-272-14/+12
|\ \ | |/ |/|
| * Use solAssert instead of boost throw where possibleAlex Beregszaszi2017-07-272-14/+12
* | Report location on stack too deep if possibleAlex Beregszaszi2017-07-272-1/+7
|/
* Change fixed point types to have digit countVoR02202017-07-201-1/+1
* Fix internal "variable already present" error.chriseth2017-07-051-0/+3
* Add assert to shift helperAlex Beregszaszi2017-07-031-0/+2
* Use shift helper in LValueAlex Beregszaszi2017-07-031-4/+2
* More uses of shift helperAlex Beregszaszi2017-07-031-6/+10
* Change shiftNumberOnStack to bitsAlex Beregszaszi2017-07-033-13/+13
* Use shift helperAlex Beregszaszi2017-07-032-8/+8
* Add shift helper to CompilerUtilsAlex Beregszaszi2017-07-032-0/+16
* Abort early if there is nothing to encode or decode.chriseth2017-06-302-3/+9
* Document appendFunctionSelectorAlex Beregszaszi2017-06-291-0/+4
* Stack adjustment and code generation for fallback function.chriseth2017-06-291-4/+6
* Fix negative stack size checks.chriseth2017-06-282-0/+11
* Merge pull request #2459 from ethereum/noComparisonForSomeTypesAlex Beregszaszi2017-06-271-0/+1
|\
| * Disallow comparisons between some types.chriseth2017-06-261-0/+1
* | Merge pull request #2453 from ethereum/memcopyAsForLoopAlex Beregszaszi2017-06-272-23/+20
|\ \ | |/ |/|
| * Comment about zero length.chriseth2017-06-271-0/+2
| * Reformat.chriseth2017-06-261-6/+9
| * Use for loop for assembly memcopy.chriseth2017-06-261-23/+15
* | Merge pull request #2460 from ethereum/disallowMultiModifierAlex Beregszaszi2017-06-262-0/+5
|\ \ | |/ |/|
| * Disallow invoking the same modifier multiple times.chriseth2017-06-242-0/+5
* | Review suggestions.chriseth2017-06-241-1/+1
* | Change invalid opcode to revert for input validation.chriseth2017-06-246-20/+52
|/
* Merge pull request #2444 from ethereum/parser-scannerAlex Beregszaszi2017-06-231-0/+1
|\
| * Avoid including Scanner.h in ParserBase.hAlex Beregszaszi2017-06-231-0/+1
* | Fix ABI encoding of empty string literal.chriseth2017-06-221-1/+1
|/
* Merge interface/Exceptions and interface/UtilsAlex Beregszaszi2017-06-223-2/+3
* Move subroutine helpers from CompilerContext to AssemblyAlex Beregszaszi2017-06-151-3/+3
* Remove obsolete errorTag()Alex Beregszaszi2017-06-151-2/+0
* Use inline assembly directly and not via AsmStackAlex Beregszaszi2017-06-091-3/+17
* Remove error reporter from code generation phase.chriseth2017-06-081-5/+1
* Initial EVM1.5 assembly implementation.chriseth2017-06-082-7/+13
* Merge pull request #2317 from ethereum/keccak256chriseth2017-05-314-8/+8
|\
| * Rename the SHA3 assembly instruction to KECCAK256Alex Beregszaszi2017-05-304-8/+8
* | Refactor error reportingRhett Aultman2017-05-301-2/+3
|/
* Adapt EVM codegen to new namespace.chriseth2017-05-262-9/+9
* Merge pull request #1810 from ethereum/compactJsonchriseth2017-05-221-3/+3
|\
| * refactoring functionCallAnnotationdjudjuu2017-05-191-3/+3
* | Refactor to abstract assembly to JULIA.chriseth2017-05-202-24/+28
|/
* Remove error label / invalid jump label.chriseth2017-04-282-23/+0
* Refactor to combined scope and stack height info.chriseth2017-04-261-1/+2
* Special case for storage types with offset zero.chriseth2017-04-251-3/+18
* Build fix.chriseth2017-04-251-1/+1
* Storage access from inline assembly.chriseth2017-04-251-10/+35
* Move analysis out of code generator.chriseth2017-04-251-1/+3
* Only allow access to local variables and only if they have a stack size of one.chriseth2017-04-251-34/+14
* Review comments.chriseth2017-04-252-2/+6
* Review comments and cleanup.chriseth2017-04-251-2/+5
* Split external identifier access into resolving and code generation.chriseth2017-04-252-80/+95
* Change references to FunctionType::LocationAlex Beregszaszi2017-03-163-86/+84
* Require and Assert.chriseth2017-03-141-2/+6
* Merge pull request #1702 from ethereum/assertErrorYoichi Hirai2017-03-041-3/+2
|\
| * Change effect of assert to invalid opcode.chriseth2017-02-161-3/+2
* | Merge pull request #1700 from ethereum/fixNoMobilechriseth2017-02-241-0/+3
|\ \
| * | Some checks for the existence of mobile type.chriseth2017-02-161-0/+3
| |/
* | Disallow setting .gas() on .transfer()Alex Beregszaszi2017-02-241-8/+4
* | Do not keep the gas stipend if sending non-zero valueAlex Beregszaszi2017-02-241-1/+1
* | Support gas modifier on addr.transfer()Alex Beregszaszi2017-02-241-1/+2
* | Implement address.transfer()Alex Beregszaszi2017-02-241-4/+15
|/
* Use the revert opcode in assert()Alex Beregszaszi2017-02-111-2/+8
* Use the REVERT opcode for throw;Alex Beregszaszi2017-02-111-1/+3
* Support revert()Alex Beregszaszi2017-02-111-0/+5
* Cleanup is not needed for assert()Alex Beregszaszi2017-02-101-1/+1
* Implement assert as a global functionAlex Beregszaszi2017-02-101-0/+8
* Rename SUICIDE opcode to SELFDESTRUCT in libevmasmAlex Beregszaszi2017-02-071-1/+1
* Warn early when exhausting stackAlex Beregszaszi2017-02-021-0/+1
* Only capture function type to address conversionAlex Beregszaszi2017-02-011-8/+10
* Be more verbose on the stack-mismatch errorsAlex Beregszaszi2017-02-011-1/+1
* Support explicit conversion of external function type to addressAlex Beregszaszi2017-02-012-1/+13
* Changelog and review suggestions.chriseth2017-01-271-1/+1
* Uninitialized internal function should call INVALID.chriseth2017-01-261-1/+3
* Allow inserting low-level functions without calling them.chriseth2017-01-262-5/+26
* Split line.chriseth2017-01-261-1/+3
* Address feedback from code review.Valentin Wüstholz2017-01-262-6/+6
* Change translation of implicit throws (issue #1589).Valentin Wüstholz2017-01-266-13/+31
* Warn about invalid checksums of addresses.chriseth2017-01-251-0/+1
* Include creation code only once.chriseth2017-01-251-14/+18
* Use int arithmetics for stack adjustment.chriseth2017-01-241-1/+1
* Change clearStorageLoop to TypePointer.chriseth2017-01-242-16/+18
* Use shared_ptrs to enable shared_from_this.chriseth2017-01-241-4/+4
* Convert ArrayUtils routines into low-level functions.chriseth2017-01-241-228/+251
* Move some util functions to low-level functions.chriseth2017-01-245-244/+320
* Low level named functions for CompilerContext.chriseth2017-01-242-0/+23
* Report source location on "stack too deep" errors.chriseth2017-01-212-2/+14
* Use fully-qualified names for linking, tooRhett Aultman2017-01-172-3/+3
* ast, codegen: enable accessing events through contract names.Yoichi Hirai2017-01-031-9/+33
* Merge pull request #1487 from ethereum/shift-opsYoichi Hirai2016-12-142-30/+98
|\
| * Use correct type for storing.chriseth2016-12-131-7/+7
| * Cleaner shift handling and type conversion for binary operations.chriseth2016-12-122-45/+80
| * Support bitshifting in variablesAlex Beregszaszi2016-12-122-9/+42
* | Renamed padToWordBoundaries -> padToWordschriseth2016-12-132-14/+14
* | Split memcopy into three functions.chriseth2016-12-123-54/+79
* | Fix inline assembly.chriseth2016-12-121-1/+2
* | Reset stack height after inline assembly blockAlex Beregszaszi2016-12-121-0/+1
* | Better assert message for appendInlineAssembnlyAlex Beregszaszi2016-12-121-1/+1
* | Implement identity call in inline assemblyAlex Beregszaszi2016-12-121-14/+21
* | Turn off the identity precompile for testingAlex Beregszaszi2016-12-121-1/+1
* | Implement CompilerUtils::memoryCopy using inline assemblyAlex Beregszaszi2016-12-121-1/+26
* | Add usingIdentity option to CompilerUtils::memoryCopyAlex Beregszaszi2016-12-122-2/+9
|/
* Merge pull request #1351 from ethereum/truncate_bitchriseth2016-12-083-3/+5
|\
| * codegen: clean not only booleans but all types before storing them into memoryYoichi Hirai2016-12-012-4/+3
| * codegen: clean any data from the inputYoichi Hirai2016-12-011-2/+2
| * codegen: truncate booleans before they enter storageYoichi Hirai2016-12-011-1/+0
| * codegen: cleanup booleans before storing them into memoryYoichi Hirai2016-12-011-0/+2
| * codegen: truncate a boolean calldata down to one bitYoichi Hirai2016-12-011-0/+2
* | Throw if calling the identity precompile (memoryCopy) failedAlex Beregszaszi2016-12-021-1/+2
* | Use CBOR encoding.chriseth2016-12-012-3/+3
* | Fix tests.chriseth2016-12-012-10/+0
* | Add swarm hash to the end of the bytecode.chriseth2016-12-013-12/+3
* | Metadata stamp.chriseth2016-12-014-7/+16
* | Merge pull request #1462 from ethereum/fix-incorrect-assertionchriseth2016-12-011-1/+1
|\ \
| * | codegen: assertion did not assert non-nullnessYoichi Hirai2016-12-011-1/+1
| |/
* / codegen: this commit removes one of duplicate assignmentsYoichi Hirai2016-12-011-2/+0
|/
* Use solUnimplemented wherever possibleAlex Beregszaszi2016-11-282-3/+3
* codegen: cleanup values to fit in storage bytesYoichi Hirai2016-11-251-0/+4
* codegen: storing of non-value types; add some assertionsYoichi Hirai2016-11-251-8/+5
* codegen: shorten the bit truncationYoichi Hirai2016-11-251-5/+2
* codegen: merge type conversion and cleaning upYoichi Hirai2016-11-251-3/+2
* codegen: document _chopSignBits parameter of convertType functionYoichi Hirai2016-11-251-0/+1
* codegen: add an option to CovertType so that it can truncate sign bitsYoichi Hirai2016-11-253-10/+22
* codegen: cleanup stored values in a more consistent wayYoichi Hirai2016-11-251-4/+16
* codegen: cleanup value types before storing themYoichi Hirai2016-11-241-0/+5
* Fix licensing headersVoR02202016-11-2314-56/+56
* Add appendCallValueCheckAlex Beregszaszi2016-11-182-20/+14
* Add payable check for constructor in codegenAlex Beregszaszi2016-11-181-0/+12
* Some more assertions and style changes.chriseth2016-11-161-1/+1
* Change encoding to address-funid and add "function" as ABI type.chriseth2016-11-162-14/+19
* Simple peephole optimizer that is activated even if not requested.chriseth2016-11-162-5/+3
* Converted sub assembly to smart pointer.chriseth2016-11-165-48/+50
* Stored combined creation and runtime tags.chriseth2016-11-169-59/+122
* Fix tests.chriseth2016-11-161-1/+11
* codegen: add a compilation mode and a runtime context to CompilerContextYoichi Hirai2016-11-164-6/+23
* Implement uninitialized storage functions.chriseth2016-11-162-11/+17
* Bugfix in code generator.chriseth2016-11-161-1/+1
* Change alignment.chriseth2016-11-163-30/+42
* External functions in storage.chriseth2016-11-163-18/+49
* Code generator for function types.chriseth2016-11-162-1/+34
* Unimplemented features moved to their own exception (#1361)Rhett Aultman2016-11-155-17/+17
* Merge pull request #1372 from ethereum/invalid_enum_as_external_retchriseth2016-11-151-2/+2
|\
| * codegen: overflow checking also during conversion from enumsYoichi Hirai2016-11-151-2/+2
* | codegen: add a missing `break;`Yoichi Hirai2016-11-141-0/+1
|/
* codegen: move the enum overflow checking closer to the conversion into enumsYoichi Hirai2016-11-141-8/+16
* ast, codegen: disallow conversion between different enum typesYoichi Hirai2016-11-121-1/+1
* codegen: shorten the overflow checking when converting into enumsYoichi Hirai2016-11-121-1/+2
* codegen: check the value range after converting something to an enum elementYoichi Hirai2016-11-121-0/+8
* Add support for do/while loopsRhett Aultman2016-11-101-3/+16
* Clear all value types prior to storing.chriseth2016-10-311-7/+1
* Merge pull request #1264 from ethereum/988chriseth2016-10-252-9/+16
|\
| * codegen: refactor common codeYoichi Hirai2016-10-242-20/+15
| * codegen: if a member access has been resolved as a variable, follow thatYoichi Hirai2016-10-241-0/+12
* | More checks for missing mobile type.chriseth2016-10-242-5/+16
|/
* codegen: skip contract L for L.Foo where Foo is a typeYoichi Hirai2016-10-241-1/+6
* Allow warnings for inline assembly blockAlex Beregszaszi2016-10-201-1/+1
* Rename dev::sha3 to dev::keccak256Alex Beregszaszi2016-10-061-1/+1
* Merge pull request #1104 from ethereum/fixmemcostschriseth2016-09-171-4/+13
|\
| * Access output memory area so that we do not pay for resize during call.chriseth2016-09-171-4/+13
* | Allow value transfer to library functions.chriseth2016-09-171-1/+3
|/
* Provide gas stipend manually for send(0).chriseth2016-09-061-1/+6
* Merge pull request #665 from axic/feature/accept-etherchriseth2016-09-062-0/+16
|\
| * Change function type to include and propagate payable and constant modifier.chriseth2016-09-062-0/+8
| * Merged in changes from chriseth/payableAlex Beregszaszi2016-09-061-11/+2
| * Support payable keyword for functionsAlex Beregszaszi2016-09-061-0/+17
* | Merge pull request #1006 from ethereum/nenewaccountgaschriseth2016-09-061-1/+3
|\ \ | |/ |/|
| * Do not pay new account gas.chriseth2016-09-051-1/+3
* | Improve error message.chriseth2016-09-051-1/+1
* | Guard encoding crashes with assertions.chriseth2016-09-021-0/+8
|/
* Make fallback function throw by default.chriseth2016-08-301-4/+1
* Merge pull request #839 from chriseth/checkcodechriseth2016-08-171-0/+7
|\
| * Make function calls throw if target does not have code.chriseth2016-08-171-0/+7
* | Merge pull request #888 from chriseth/throwOnDivZerochriseth2016-08-171-3/+10
|\ \
| * | Throw on division by zero.chriseth2016-08-171-3/+10
| |/
* / BREAKING: return only exits current function/modifierchriseth2016-08-172-35/+45
|/
* Merge pull request #838 from chriseth/ecrecoverchriseth2016-08-171-5/+38
|\
| * Actually better to return zero on error.chriseth2016-08-161-2/+0
| * Make ecrecover throw for malformed input.chriseth2016-08-161-5/+40
* | Provide inline assembly to the code generator. (#840)chriseth2016-08-163-0/+58
* | Throw if contract creation fails.chriseth2016-08-161-0/+3
|/
* Remove After from ExpressionCompilerDenton Liu2016-08-111-3/+0
* Merge pull request #722 from NicolaiSoeborg/developchriseth2016-08-112-2/+2
|\
| * Remove the remains of "expresison"Nicolai2016-07-152-2/+2
* | Fix identity precompile gas calculationAlex Beregszaszi2016-08-061-2/+2
* | Bugfix: Allocate empty array.chriseth2016-07-282-3/+7
|/
* Merge pull request #641 from axic/patch/shift-parserchriseth2016-06-091-0/+2
|\