Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-20 | Just a save commit (I need to work on another branch...) | Micael Karlberg | |
2011-04-15 | Merge branch 'bmk/snmp/manager/request_override_options' into ↵ | Micael Karlberg | |
bmk/snmp/snmp420_integration Conflicts: lib/snmp/src/app/snmp.appup.src OTP-9162 | |||
2011-04-15 | Fixed appup. | Micael Karlberg | |
2011-04-15 | Merge branch 'bmk/snmp/snmp420_integration' of super:bmk_otp into ↵ | Micael Karlberg | |
bmk/snmp/snmp420_integration | |||
2011-04-15 | Merge branch 'dev' into bmk/snmp/snmp420_integration | Micael Karlberg | |
2011-04-15 | Async get-bulk test case for version 3 request API. | Micael Karlberg | |
2011-04-15 | Prepare for release | Ingela Anderton Andin | |
2011-04-15 | Sync get-bulk test case for version 3 of the request API. | Micael Karlberg | |
2011-04-15 | Merge branch 'ia/public_key/prepare-for-release' into dev | Ingela Anderton Andin | |
* ia/public_key/prepare-for-release: Prepare for release | |||
2011-04-15 | Prepare for release | Ingela Anderton Andin | |
2011-04-15 | Merge branch 'ta/dialyzer-doc' into dev | Henrik Nord | |
* ta/dialyzer-doc: dialyzer/doc: synchronize manual.txt and dialyzer.xml dialyzer/doc: fix whitespace errors dialyzer/doc: use consistent colons in type specs OTP-9226 | |||
2011-04-15 | Merge branch 'ms/heart-rem-garbage-append' into dev | Henrik Nord | |
* ms/heart-rem-garbage-append: heart: remove garbage appended to heart command OTP-9224 | |||
2011-04-15 | Async set test case for version 3 request API. | Micael Karlberg | |
2011-04-14 | Sync set test case for version 2 request API. | Micael Karlberg | |
2011-04-14 | Merge branch 'bjorn/compiler/coverage' into dev | Björn Gustavsson | |
* bjorn/compiler/coverage: bs_match_SUITE: Improve coverage of beam_bsm beam_bsm: Eliminate uncovered line in warning generation match_SUITE: Cover a clause in beam_dead:forward/4 beam_dead: Remove uncovered special case handling of empty blocks beam_dead: Remove uncovered clauses in binary matching optimization beam_dead: Remove uncoverable case clause in update_value_dict/3 beam_dead: Remove code that cannot be covered in forward/4 record_SUITE: Cover optimization of is_record/3 in beam_type compiler tests: Reinstate ?MODULE macro in calls to test_lib:recompile/1 | |||
2011-04-14 | Async get-next test cases for version 3 request API. | Micael Karlberg | |
2011-04-14 | Sync get-next test case for version 3 request API. | Micael Karlberg | |
2011-04-14 | Async get test case for version 3 request API. | Micael Karlberg | |
2011-04-14 | First test case for request API version 3. | Micael Karlberg | |
2011-04-14 | Detailed usage of "Extra" usage in the request API functions, | Micael Karlberg | |
including the reserved value. | |||
2011-04-14 | Added the documentation for the previous request API | Micael Karlberg | |
(removed by misstake). | |||
2011-04-14 | Final version of the (new) API. | Micael Karlberg | |
2011-04-13 | Merge branch 'mh/eunit-surefire-reports' into dev | Henrik Nord | |
* mh/eunit-surefire-reports: Increase depth of error messages in Eunit Surefire reports OTP-9220 | |||
2011-04-13 | Proper interface documentation for new API. Also release notes | Micael Karlberg | |
with links into API. | |||
2011-04-12 | First time through the compiler. | Micael Karlberg | |
2011-04-12 | "Time to go to the gym"-backup... | Micael Karlberg | |
2011-04-12 | Merge branch 'bmk/snmp/manager/request_override_options' of ↵ | Micael Karlberg | |
github.com:bmk/otp into bmk/snmp/manager/request_override_options | |||
2011-04-12 | Merge branch 'dev' into bmk/snmp/manager/request_override_options | Micael Karlberg | |
2011-04-12 | Merge branch 'sa/dialyzer-invalid-spec-fix' into dev | Henrik Nord | |
* sa/dialyzer-invalid-spec-fix: Fix crash related with the contract blame assignment patch OTP-9219 | |||
2011-04-12 | Merge branch 'gc/gen-format-status-improvements' into dev | Henrik Nord | |
* gc/gen-format-status-improvements: Fix format_status bug for unregistered gen_event processes Conflicts: lib/stdlib/test/gen_event_SUITE.erl OTP-9218 | |||
2011-04-12 | bs_match_SUITE: Improve coverage of beam_bsm | Björn Gustavsson | |
2011-04-12 | beam_bsm: Eliminate uncovered line in warning generation | Björn Gustavsson | |
In warning_translate_label/2, gb_trees:lookup/2 is called to translate from the entry label for a function to its name. Since the gb_tree has an entry for all functions in the module, there is no way that the lookup can fail unless there is a serious bug. Therefore, use gb_trees:get/2 so that an exception and an internal compiler error will be generated if the lookup would ever fail. | |||
2011-04-12 | match_SUITE: Cover a clause in beam_dead:forward/4 | Björn Gustavsson | |
2011-04-12 | beam_dead: Remove uncovered special case handling of empty blocks | Björn Gustavsson | |
There is never any empty blocks when beam_dead is invoked. Even if there were, they will be removed a little bit later in forward/4. | |||
2011-04-12 | beam_dead: Remove uncovered clauses in binary matching optimization | Björn Gustavsson | |
In the optimization of binary matching, it seems that two clauses cannot never be reached. Removing the clauses is safe, since that would only mean that an opportunity for an optimization is lost | |||
2011-04-12 | beam_dead: Remove uncoverable case clause in update_value_dict/3 | Björn Gustavsson | |
Because the code generator (v3_codegen) would not include the same value more than once in a select_val/3 instruction and because a label can only be referenced by one select_val/3 instruction, there is no way that the correct value could already be in the gb_tree. (Even if it could happen, this change is safe because only opportunity for an optimization would be missed; incorrect code would not be generated.) | |||
2011-04-12 | beam_dead: Remove code that cannot be covered in forward/4 | Björn Gustavsson | |
Since the optimizations in forward/4 already depends on some assumptions on how code is generated anyway, document the assumptions in a comment and remove the uncoverable code. | |||
2011-04-12 | record_SUITE: Cover optimization of is_record/3 in beam_type | Björn Gustavsson | |
Since the introduction of improved record optimizations in 1858cb81391d2bce29b4b7620574ca60128cebf7 and 470c91d43eae54f63661645acbce4b92d73287cc, the optimization of a is_record/3 call with a known correct type in beam_type:simplify_basic_1/3 has not been covered. | |||
2011-04-12 | compiler tests: Reinstate ?MODULE macro in calls to test_lib:recompile/1 | Björn Gustavsson | |
In 3d0f4a3085f11389e5b22d10f96f0cbf08c9337f (an update to conform with common_test), in all test_lib:recompile(?MODULE) calls, ?MODULE was changed to the actual name of the module. That would cause test_lib:recompile/1 to compile the module with the incorrect compiler options in cloned modules such as record_no_opt_SUITE, causing worse coverage. | |||
2011-04-11 | dialyzer/doc: synchronize manual.txt and dialyzer.xml | Tuncer Ayaz | |
2011-04-11 | dialyzer/doc: fix whitespace errors | Tuncer Ayaz | |
2011-04-11 | dialyzer/doc: use consistent colons in type specs | Tuncer Ayaz | |
2011-04-11 | Merge branch 'siri/sasl/rb-help-error/OTP-9166' into dev | Siri Hansen | |
* siri/sasl/rb-help-error/OTP-9166: rb help error | |||
2011-04-08 | Some handle_call-cases handled. | Micael Karlberg | |
2011-04-08 | Merge branch 'dev' into bmk/snmp/manager/request_override_options | Micael Karlberg | |
2011-04-08 | Merge branch 'at/os_mon_dragonfly_support' into dev | Henrik Nord | |
* at/os_mon_dragonfly_support: Add support for DragonFlyBSD to memsup OTP-9217 | |||
2011-04-08 | Merge branch 'at/os_mon_netbsd_support' into dev | Henrik Nord | |
* at/os_mon_netbsd_support: Add NetBSD support to memsup and disksup OTP-9216 | |||
2011-04-08 | Merge branch 'mk/net-kernel-epmd-return-list' into dev | Henrik Nord | |
* mk/net-kernel-epmd-return-list: Fix list returned by net_kernel:epmd_module OTP-9215 | |||
2011-04-08 | Merge branch 'ks/snmp-specs' into bmk/snmp/snmp420_integration | Micael Karlberg | |
OTP-9208 | |||
2011-04-08 | Merge branch 'bmk/snmp/snmp420_integration' of super:bmk_otp into ↵ | Micael Karlberg | |
bmk/snmp/snmp420_integration |