Home
ScreenShots
Misc. D related
Downloads

D language

Built with wxWidgets

Hosted by:
SourceForge Logo

Misc

Boehm GC

Use boehm GC instead of original gc.

Note: Unfortunely, boehm gc is slower than original GC

Atomic GC

GC do not scan array of element size<4 such as char[]

Note: GC spend time is 1/3 with big size array, but bit slow down with small size array for overhead

 
originalatomicboehm
small391407953
big609203265
unit: ms
small: new char[100] x 1000000
big: new new char[1000000] x 100