Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-12 | erts: Refactor maps:remove/2 | Björn-Egil Dahlberg | |
2015-03-12 | erts: Move hashmap:remove/2 to maps | Björn-Egil Dahlberg | |
2015-03-12 | erts: Refactor maps:update/3 and maps:put/3 | Björn-Egil Dahlberg | |
2015-03-12 | erts: Reindent erts_maps_update | Björn-Egil Dahlberg | |
2015-03-12 | erts: Move hashmap:put/3, update/3 to maps | Björn-Egil Dahlberg | |
2015-03-12 | erts: Refactor maps:get/2, find/2 and is_key/2 | Björn-Egil Dahlberg | |
2015-03-12 | erts: Move hashmap:get/2, find/2 and is_key/2 to maps | Björn-Egil Dahlberg | |
2015-03-12 | erts: Move erlang:is_hashmap/1 to maps | Björn-Egil Dahlberg | |
2015-03-12 | erts: Move hashmap:to_list/1, keys/1 and values/1 to maps | Björn-Egil Dahlberg | |
2015-03-12 | erts: Move hashmap:size/1 to maps | Björn-Egil Dahlberg | |
2015-03-12 | erts: Refactor erl_hashmap header includes | Björn-Egil Dahlberg | |
2015-03-12 | erts: Add hashmap:from_list/1 | Björn-Egil Dahlberg | |
2015-03-12 | erts: Fix hashmap head array printf term | Björn-Egil Dahlberg | |
2015-03-12 | erts: Add fallback for builtin clz | Björn-Egil Dahlberg | |
* __builtin_clz may not exist * fix bitcount fallback | |||
2015-03-12 | erts: Improve map_SUITE:t_map_compare | Sverker Eriksson | |
2015-03-12 | erts: Change phash2 of maps to be sensitive to key-value combos. | Sverker Eriksson | |
The old hashing did not care which value belonged to which key, for example: would hash the same. | |||
2015-03-12 | erts: Add micro optimization to phash2 of tuples | Sverker Eriksson | |
2015-03-12 | erts: Add ERTS_UNDEF macro | Sverker Eriksson | |
2015-03-12 | erts: Fix bug in hashmap_restore/shift_hash | Sverker Eriksson | |
Deep hashing should ignore the three lowest bits of the level. | |||
2015-03-12 | erts: Add hashing of hashmaps | Sverker Eriksson | |
2015-03-12 | erts: Make hashmap use the new hash function | Sverker Eriksson | |
2015-03-12 | erts: Add map_SUITE:t_map_compare | Sverker Eriksson | |
2015-03-12 | erts: Make hashmap compare non-recursive | Sverker Eriksson | |
2015-03-12 | erts: First recursive version of hashmap compare | Sverker Eriksson | |
2015-03-12 | erts: Change to total ordering of keys in small maps | Sverker Eriksson | |
2015-03-12 | erts: Rewrite hashmap:to_list, keys and values | Sverker Eriksson | |
to use an iterator instead of foreach with callback. Will be easier to make yielding. | |||
2015-03-12 | erts: Make WSTACK usable through pointer | Sverker Eriksson | |
2015-03-12 | erts: Make hashmap_merge use dynamic PSTACK | Sverker Eriksson | |
2015-03-12 | erts: Add PSTACK | Sverker Eriksson | |
A lightweight stack that can be used to store any type. PUSH and POP return pointers into stack slots. | |||
2015-03-12 | erts: Cleanup hashmap_merge_2 | Sverker Eriksson | |
2015-03-12 | erts: Add term_to_binary for hashmap | Sverker Eriksson | |
2015-03-12 | erts: Add RESERVE and FAST_PUSH for ESTACK & WSTACK | Sverker Eriksson | |
2015-03-12 | erts: Add hashmap:update/3 | Sverker Eriksson | |
2015-03-12 | erts: Add hashmap:find/2 | Sverker Eriksson | |
2015-03-12 | erts: Refactor hashmap_to_list to use hashmap_do_foreach | Sverker Eriksson | |
2015-03-12 | erts: Refactor hashmap_do_foreach | Sverker Eriksson | |
to use a common struct hashmap_doer_state. | |||
2015-03-12 | erts: Add missing parenthesis in MAKE_MAP_HEADER | Sverker Eriksson | |
2015-03-12 | First non-recursive version of hashmap:merge/2 | Sverker Eriksson | |
2015-03-12 | erts: First recursive version of hashmap:merge | Sverker Eriksson | |
2015-03-12 | erts: Add matching of hashmaps | Sverker Eriksson | |
2015-03-12 | erts: Fix bug in _make_header macro | Sverker Eriksson | |
Called with a signed int 'sz' argument on 64 bit would cause sign extension 'sz' was larger than 33554431. | |||
2015-03-12 | hashmap: is_key/2, keys/1 and values/1 | Sverker Eriksson | |
2015-03-12 | Don't use modulus for power of 2 | Björn-Egil Dahlberg | |
2015-03-12 | Refactor hashmap_shift | Björn-Egil Dahlberg | |
2015-03-12 | Add hashmap:remove/2 | Björn-Egil Dahlberg | |
2015-03-12 | Add hashmap:info/1 | Björn-Egil Dahlberg | |
2015-03-12 | Initial Persistent HAMT - Map framework | Björn-Egil Dahlberg | |
Conflicts: erts/emulator/Makefile.in erts/emulator/beam/bif.tab erts/emulator/beam/erl_gc.c erts/emulator/beam/erl_gc.h erts/emulator/beam/erl_printf_term.c erts/emulator/beam/erl_term.c erts/emulator/beam/erl_term.h | |||
2015-03-12 | stdlib: Enable io_lib:format/* for hamt maps | Björn-Egil Dahlberg | |
This is a commit to enable printouts of hashmaps during development and will be enhanced once hashmaps are in place. | |||
2015-03-12 | Merge branch 'nox/maps-match_specs-fixes/OTP-12270' | Björn-Egil Dahlberg | |
* nox/maps-match_specs-fixes/OTP-12270: erts: Strengthen maps match spec compilation tests Properly collect variables in match specs with maps Fix compilation of match specs with maps | |||
2015-03-12 | Merge branch 'hb/edoc/fix_references' | Hans Bolinder | |
* hb/edoc/fix_references: edoc: Correct documentation |