summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2111 from lyro/fix-2110Andreas Rumpf2015-02-121-2/+2
|\ | | | | fix conditions for int size in 'math.nextPowerOfTwo' #2110
| * fix conditions for int size in 'math.nextPowerOfTwo' #2110Frank Fischer2015-02-121-2/+2
| |
* | Aporia compiles again (disabling thread analysis is horrible!)Araq2015-02-121-1/+2
| |
* | ordinary parameters can follow a varargs parameterAraq2015-02-124-9/+44
| |
* | made a test greenAraq2015-02-121-1/+1
| |
* | better handling of gcsafety with --threadAnalysis:offAraq2015-02-122-25/+27
| |
* | fixed minor bugs; cleaned up testsAraq2015-02-1219-704/+246
|/
* Merge pull request #2108 from oderwat/patch-1Andreas Rumpf2015-02-122-3/+3
|\ | | | | Fixing dylib name for OSX
| * Corrected warnings about deprecated namesHans Raaf2015-02-111-2/+2
| | | | | | | | I got warning about deprecated names here. I also know that other names probably need to change (T/P prefixes) but I am unsure about the exact rules. I may do that later if you like.
| * Fixing dylib name for OSXHans Raaf2015-02-111-1/+1
| | | | | | | | I don't know if the (15|16...) is supposed to work on OSX. I have "libmysqlclient.18.dylib" in my lib directory and get "could not load: libmysqlclient.(15|16|17[18).dylib" on execution. After removing the pattern I can run my little example program and it works as "libmysqlclient.dylib" is a softlink to the current version anyway.
* | Merge pull request #2053 from reactormonk/message-for-koch-tempAndreas Rumpf2015-02-122-1/+18
|\ \ | |/ |/| report how to create a compiler stacktrace #1280
| * use dynamic message destinationSimon Hafner2015-02-041-1/+1
| |
| * report how to create a compiler stacktrace #1280Simon Hafner2015-02-012-1/+18
| |
* | Merge pull request #2078 from c-blake/develAndreas Rumpf2015-02-111-44/+112
|\ \ | | | | | | Add hcode. Re-factor rawGet. Fix infinite loop.
| * | Address Andreas' complaint about code duplication.Charles Blake2015-02-071-2/+3
| | |
| * | Merge /home/cb/pkg/nim/Nim into develCharles Blake2015-02-0714-16/+392
| |\ \ | | | | | | | | | | | | pull from master
| * | | Fix unnecessarily slow set building from openArray.Charles Blake2015-02-071-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The estimation of the initialSize as simply array len + 10 was too small for for all but the smallest sets. It would not elide/skip one final enlarge(). That last one is actually always the most expensive enlarge(). Indeed, in a series where one to start from tiny and build up the table..that last one is about 50% of all the enlarging time in general. So, this simple and reasonable optimization (compared to just starting at 64) was only helping about half as much as it could. Introduce a rightSize() proc to be the inverse to mustRehash(). Export it to clients since pre-sizing is externally useful in set construction and the current mustRehash rules are opaque and beyond the control of clients. Also add test module logic to check that rightSize() and mustRehash() are inverses in the appropriate sense..not really in a block/assertion throwing unit test since this is a peformance nice-to-have issue rather than about basic correctness. (Also, fix a too vs. two typo in doc comment.)
| * | | Merge /home/cb/pkg/nim/Nim into develCharles Blake2015-02-0720-241/+152
| |\ \ \
| * | | | Add hcode. Re-factor rawGet. Fix infinite loop.Charles Blake2015-02-061-41/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace state enum with a cached hash code which has the same memory overhead and locality as the enum, but can really speed things up with non-integer-like keys (keys for which either hash() or == take more than couple cycles, or where the key data is "indirect" and might incur another cache miss). To function as both empty/filled state and a hash code cache, it only needs to be ensured that hash codes are non-zero for any real key. That is done at the one place in the whole file hash() is called. Keep convention clear via isFilled() & isEmpty(). An isDeleted state will no longer be necessary as per below excl/inf loop fix. Since some use sites know hc and some do not, re-factor rawGet into two forms - one with known hash code and one with an unknown HC that returns it. Both forms still return <0 on missing, but returns the much more informative "-1 - index". That return can be quickly inverted by -1 - result to recover the index where insert should happen, provided no modifications are made to the table in the meantime. This protocol retains the prior <0 interface and also makes it easy to avoid unnecessary duplicate search work in procs like containsOrInclImpl (which formerly searched in the initial get and AGAIN in rawInsert). Strip the searching part out of rawInsert to "make it even more raw". swap(s.data, n) a bit earlier so rawGet and rawGetKnownHC can have similar parameter lists and integrate well with rawInsert/code sharing between Set and OrderedSet impls. This PR also fixes infinite looping upon too many deletes. [ The deleted state (aka "tombstone") approach is vulnerable to the table filling up with deleted items which forces giant scans for missing keys which could be anywhere. In the version prior to this PR, table wraparound wasn't even detected yielding infinite loops. ] This PR changes excl() from marking slots as deleted to Knuth algo 6.4R, "local/incremental moveback rehashing" - adapted from Knuth's h->h-1 to the cache-friendlier h->h+1 probe sequence and adapted from "gotos" to a new doWhile template. This method restores the table to a state that would have resulted from pure inserts (in some order). Update nextTry accordingly. Since linear probing can degrade a little faster, 50% rather than 66% may be a better default growth threshold, but users should be able to adjust threshold anyway. Old unit tests all pass. More extensive testing in this module is probably warranted before taking similar enhancements over to collections.tables.
* | | | | increase limit for 64bit systemsAraq2015-02-101-1/+1
| | | | |
* | | | | fixes #2070Araq2015-02-103-2/+32
| | | | |
* | | | | cleanup index generationAraq2015-02-108-37/+71
| | | | |
* | | | | cleaned up GC tests; fixes object variant re-assign bugAraq2015-02-103-5/+11
| | | | |
* | | | | unsigned array indexes work better; minor cleanupsAraq2015-02-102-9/+26
| | | | |
* | | | | fixes #1131Araq2015-02-104-4/+15
| | | | |
* | | | | cleaned up some testsAraq2015-02-1025-8/+19
| | | | |
* | | | | temptyseqs works againAraq2015-02-104-17/+25
| | | | |
* | | | | fixes #2070Araq2015-02-102-19/+29
| | | | |
* | | | | Async await try statement fixes.Dominik Picheta2015-02-093-11/+89
| | | | |
* | | | | stop after first failing C compilation for --parallelBuild:1Araq2015-02-091-1/+3
| | | | |
* | | | | Merge pull request #2087 from flaviut/patch-1Andreas Rumpf2015-02-091-5/+21
|\ \ \ \ \ | | | | | | | | | | | | Clean up build icons
| * | | | | Clean up build iconsFlaviu Tamas2015-02-071-5/+21
| | | | | |
* | | | | | Merge pull request #2059 from def-/getchVarriount2015-02-091-0/+28
|\ \ \ \ \ \ | | | | | | | | | | | | | | Getch
| * | | | | | Document terminal.getchdef2015-02-041-0/+2
| | | | | | |
| * | | | | | Add copyright headerdef2015-02-031-0/+9
| | | | | | |
| * | | | | | Add terminal.getch to get a single characterdef2015-02-031-0/+26
| | | | | | |
* | | | | | | tables work in 'const' sections; echo supports 'nil' strings; minor cleanupsAraq2015-02-0911-52/+69
| | | | | | |
* | | | | | | Merge pull request #2093 from reactormonk/json-test-fixAndreas Rumpf2015-02-081-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | apparently the json spacing changed
| * | | | | | | apparently the json spacing changedSimon Hafner2015-02-081-1/+1
|/ / / / / / /
* | | | | | | 'nimsuggest' compiles againAraq2015-02-081-11/+13
| | | | | | |
* | | | | | | fixes #2004Araq2015-02-084-23/+49
| | | | | | |
* | | | | | | fixes #2073Araq2015-02-084-4/+20
| | | | | | |
* | | | | | | fixes #2073; language spec change: arrow like operators are not right ↵Araq2015-02-083-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | associative anymore
* | | | | | | fixes #1956Araq2015-02-082-3/+5
| | | | | | |
* | | | | | | better error messageAraq2015-02-081-1/+3
| | | | | | |
* | | | | | | merged #2083 manuallyAraq2015-02-083-2/+25
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #2085 from flaviut/clarify-messagereactormonk2015-02-081-1/+1
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Clarify "instantiation from here"
| * | | | | Clarify "instantiation from here"Flaviu Tamas2015-02-071-1/+1
|/ / / / / | | | | | | | | | | | | | | | After ~1 year of Nim, I finally realized it doesn't refer to dynamic memory
* | | | | Merge pull request #1869 from def-/json-stuffAndreas Rumpf2015-02-071-2/+75
|\ \ \ \ \ | | | | | | | | | | | | Json stuff
| * | | | | Fix documentation and toJson signaturedef2015-02-041-2/+2
| | | | | |