Skip to content

braddr/druntime

This branch is 2605 commits behind dlang/druntime:master.

Folders and files

NameName
Last commit message
Last commit date
Jul 20, 2018
Oct 5, 2018
Sep 1, 2018
Mar 2, 2016
Oct 14, 2018
Oct 28, 2018
Oct 26, 2018
Feb 7, 2018
Sep 16, 2018
Mar 4, 2017
Mar 26, 2018
Dec 11, 2017
Oct 6, 2017
Jan 2, 2018
Jul 31, 2018
Aug 13, 2018
Sep 26, 2018
Jan 10, 2014
Sep 25, 2018
Sep 25, 2018

Repository files navigation

DRuntime: Runtime Library for the D Programming Language

GitHub tag Bugzilla Issues CircleCI Code coverage Issue Stats license

This is DRuntime. It is the low-level runtime library backing the D programming language.

DRuntime is typically linked together with Phobos in a release such that the compiler only has to link to a single library to provide the user with the runtime and the standard library.

Purpose

DRuntime is meant to be an abstraction layer above the compiler. Different compilers will likely have their own versions of DRuntime. While the implementations may differ, the interfaces should be the same.

Features

The runtime library provides the following:

  • The Object class, the root of the class hierarchy.
  • Implementations of array operations.
  • The associative array implementation.
  • Type information and RTTI.
  • Common threading and fiber infrastructure.
  • Synchronization and coordination primitives.
  • Exception handling and stack tracing.
  • Garbage collection interface and implementation.
  • Program startup and shutdown routines.
  • Low-level math intrinsics and support code.
  • Interfaces to standard C99 functions and types.
  • Interfaces to operating system APIs.
  • Atomic load/store and binary operations.
  • CPU detection/identification for x86.
  • System-independent time/duration functionality.
  • D ABI demangling helpers.
  • Low-level bit operations/intrinsics.
  • Unit test, coverage, and trace support code.
  • Low-level helpers for compiler-inserted calls.

Issues

To report a bug or look up known issues with the runtime library, please visit the bug tracker.

Licensing

See the LICENSE.txt file for licensing information.

Building

See the wiki page for build instructions.

About

Low level runtime library for the D programming language

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • D 98.9%
  • Other 1.1%