[D-runtime] [D-Programming-Language/druntime] efd70f: runbench: support additional source files to build...
GitHub via D-runtime
d-runtime at puremagic.com
Sat Feb 21 01:11:26 PST 2015
Branch: refs/tags/auto-tester-testing
Home: https://github.com/D-Programming-Language/druntime
Commit: efd70fb5c470244f1f411a081015228a8a35a49e
https://github.com/D-Programming-Language/druntime/commit/efd70fb5c470244f1f411a081015228a8a35a49e
Author: Rainer Schuetze <r.sagitario at gmx.de>
Date: 2015-01-25 (Sun, 25 Jan 2015)
Changed paths:
M benchmark/runbench.d
Log Message:
-----------
runbench: support additional source files to build a test
Commit: 5cd66781280ada9ab07148be7f468c3d7389da95
https://github.com/D-Programming-Language/druntime/commit/5cd66781280ada9ab07148be7f468c3d7389da95
Author: Ilya Yaroshenko <ilyayaroshenko at gmail.com>
Date: 2015-02-09 (Mon, 09 Feb 2015)
Changed paths:
M src/core/stdc/math.d
Log Message:
-----------
fix Issue 14157
https://issues.dlang.org/show_bug.cgi?id=14157
Commit: db4b4766f5d02e762e65022d5f66f4444ccce1b7
https://github.com/D-Programming-Language/druntime/commit/db4b4766f5d02e762e65022d5f66f4444ccce1b7
Author: Andrei Alexandrescu <andrei at erdani.com>
Date: 2015-02-09 (Mon, 09 Feb 2015)
Changed paths:
M src/core/stdc/math.d
Log Message:
-----------
Merge pull request #1162 from 9il/fabs
fix Issue 14157
Commit: 9d85ff2bf3ae594439c00db6002ae6d1ec2b93f4
https://github.com/D-Programming-Language/druntime/commit/9d85ff2bf3ae594439c00db6002ae6d1ec2b93f4
Author: Ilya Yaroshenko <ilyayaroshenko at gmail.com>
Date: 2015-02-11 (Wed, 11 Feb 2015)
Changed paths:
M src/core/stdc/math.d
M src/core/stdc/tgmath.d
Log Message:
-----------
fix Issue 14157. Part 2
fix suffixes.
remove C++ variants
Commit: ff41295dff5d4b9d5a6ec29a713f3ab04f65ada5
https://github.com/D-Programming-Language/druntime/commit/ff41295dff5d4b9d5a6ec29a713f3ab04f65ada5
Author: Martin Nowak <code at dawg.eu>
Date: 2015-02-11 (Wed, 11 Feb 2015)
Changed paths:
M src/gc/config.d
M src/gc/gc.d
Log Message:
-----------
new heap growth strategy
- keep track of used number of small/large pages
- update collect thresholds after each collection
- make heap size to used memory size ration configurable
Commit: a61a12e758231ed04c547c6af1adf37a4fe1dbb0
https://github.com/D-Programming-Language/druntime/commit/a61a12e758231ed04c547c6af1adf37a4fe1dbb0
Author: Martin Nowak <code at dawg.eu>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M src/gc/config.d
Log Message:
-----------
refactor option parsing and parse heapSizeFactor as float
Commit: bc8de1cf010906b2e79fec915fc140011d1df545
https://github.com/D-Programming-Language/druntime/commit/bc8de1cf010906b2e79fec915fc140011d1df545
Author: Martin Nowak <code at dawg.eu>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M src/gc/gc.d
Log Message:
-----------
use bool for flags
- pass nostack directly
- initiallized is only needed for debug(INVARIANT)
Commit: 7f03d169e314a85b1056cb5947be99e62479f8ab
https://github.com/D-Programming-Language/druntime/commit/7f03d169e314a85b1056cb5947be99e62479f8ab
Author: Martin Nowak <code at dawg.eu>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M src/gc/gc.d
M src/gc/os.d
Log Message:
-----------
limit memory usage to avoid OOM on 32-bit systems
Commit: 76a1bb7179c245e396676975d3a229fdc576c439
https://github.com/D-Programming-Language/druntime/commit/76a1bb7179c245e396676975d3a229fdc576c439
Author: Martin Nowak <code at dawg.eu>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M src/gc/gc.d
Log Message:
-----------
minimize in smallAlloc after fullcollect when low on memory
Commit: b7bbc48b9138c247cba4a6f7084d64aa792c62b5
https://github.com/D-Programming-Language/druntime/commit/b7bbc48b9138c247cba4a6f7084d64aa792c62b5
Author: Rainer Schuetze <r.sagitario at gmx.de>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M src/gc/config.d
M src/gc/gc.d
M src/gc/os.d
Log Message:
-----------
Merge pull request #1098 from MartinNowak/gcGrowth
new heap growth strategy
Commit: 97d46a71c6a248c037eaa3c14d54aac5614f942f
https://github.com/D-Programming-Language/druntime/commit/97d46a71c6a248c037eaa3c14d54aac5614f942f
Author: Martin Nowak <code at dawg.eu>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M benchmark/runbench.d
Log Message:
-----------
Merge pull request #1166 from rainers/runbench_extra_sources
runbench: support additional source files to build a test
Commit: 1371602b43a0cc6d49f1c84c87dbbc0e85988c7f
https://github.com/D-Programming-Language/druntime/commit/1371602b43a0cc6d49f1c84c87dbbc0e85988c7f
Author: Steven Schveighoffer <schveiguy at yahoo.com>
Date: 2015-02-12 (Thu, 12 Feb 2015)
Changed paths:
M src/core/stdc/math.d
M src/core/stdc/tgmath.d
Log Message:
-----------
Merge pull request #1163 from 9il/fabs
fix Issue 14157. Part 2
Compare: https://github.com/D-Programming-Language/druntime/compare/8af5322f3135...1371602b43a0
More information about the D-runtime
mailing list