log dmd/mars.c @ 572:91d436eaedee

age author description
Thu, 04 Sep 2008 17:05:35 +0200 Tomas Lindquist Olsen merge
Tue, 02 Sep 2008 23:10:12 +0200 Tomas Lindquist Olsen Changed all '#if linux || __APPLE__' to '#if POSIX' so we can support other platforms too, thanx for the suggestion anders.
Wed, 03 Sep 2008 22:07:04 +0200 Christian Kamm Split runtime into three parts again.
Tue, 02 Sep 2008 19:14:37 +0200 Christian Kamm Automated merge with http://hg.dsource.org/projects/llvmdc
Tue, 02 Sep 2008 19:14:25 +0200 Christian Kamm Get rid of runtime path. Allow defaultlib and debuglib switches to be given multiple times.
Sun, 31 Aug 2008 18:51:14 +0200 Tomas Lindquist Olsen Added some sanity checks for target detection.
Tue, 26 Aug 2008 21:02:25 +0200 Tomas Lindquist Olsen Removed unimplemented switches.
Tue, 26 Aug 2008 20:49:01 +0200 Christian Kamm Do not set Dversion to 1. Dversion = 2 means we use post 1.000 additions to D1.
Tue, 26 Aug 2008 19:31:47 +0200 Christian Kamm Add -enable/-disable for specific features.
Mon, 25 Aug 2008 19:36:27 +0200 Tomas Lindquist Olsen Removed D_InlineAsm and D_InlineAsm_X86 versions.
Sun, 24 Aug 2008 17:57:53 +0200 Tomas Lindquist Olsen Missing 'break' in osx code path.
Sun, 24 Aug 2008 17:19:31 +0200 Tomas Lindquist Olsen Fixed some osx mistakes.
Sun, 24 Aug 2008 16:59:08 +0200 Christian Kamm Add isnan for __APPLE__ and darwin version ident for OSX.
Sun, 24 Aug 2008 16:54:06 +0200 Jacob Carlborg Add __APPLE__ to most #if linux compile time switches.
Sun, 24 Aug 2008 16:22:58 +0200 Christian Kamm Get rid of isLinux and isWindows in favor of global.params.os.
Thu, 21 Aug 2008 15:19:45 +0200 Christian Kamm Make class invariants work.
Thu, 14 Aug 2008 06:55:41 +0200 Tomas Lindquist Olsen Merged DMD 1.034, array operations are not yet implemented ;)
Sun, 10 Aug 2008 08:37:38 +0200 Tomas Lindquist Olsen Added pragma(llvmdc, "string") for misc per-module compiler configuration, currently "string" can only be "verbose" which forces -vv for module it appears in.
Thu, 07 Aug 2008 18:59:23 +0200 Christian Kamm Get rid of predefined Unix version
Mon, 04 Aug 2008 19:08:39 +0200 Tomas Lindquist Olsen Added 'Unix' predefined version identifier.
Fri, 01 Aug 2008 17:59:58 +0200 Tomas Lindquist Olsen Changed the handling of variadic intrinsics a bit.
Wed, 30 Jul 2008 18:38:56 +0200 Christian Kamm Enable array bounds check and emit them in IndexExp.
Tue, 29 Jul 2008 21:52:25 +0200 elrood fixed configuration file loading issues on windows
Mon, 21 Jul 2008 20:11:15 +0200 Christian Kamm Fix nativeobj extension for Windows.
Tue, 15 Jul 2008 02:01:53 +0200 lindquist [svn r387] Removed unused MD5 stuff. trunk
Sat, 12 Jul 2008 19:38:31 +0200 lindquist [svn r357] Merged DMD 1.033 trunk
Fri, 11 Jul 2008 21:06:39 +0200 ChristianK [svn r352] Implement SwitchErrorStatement. Fixes #52. trunk
Thu, 10 Jul 2008 22:00:27 +0200 ChristianK [svn r348] Switch on class invariants (except in release mode). trunk
Wed, 09 Jul 2008 23:43:51 +0200 lindquist [svn r344] Fixed some very minor issues with the usage listing when calling llvmdc with no arguments. trunk
Fri, 27 Jun 2008 23:58:22 +0200 lindquist [svn r327] Fixed some more MinGW32 issues. It's now very close to working. trunk
Sat, 21 Jun 2008 03:14:49 +0200 lindquist [svn r306] Fixed: it's now possible to compile and link llvmdc with MinGW32 and msys on Win32 :D I tried it myself ;) Building the runtime still needs some work, but it's a step in the right direction. trunk
Sat, 21 Jun 2008 02:48:53 +0200 lindquist [svn r305] Started support for custom class allocators/deallocators. Allocators with more than one argument still need to be fixed. trunk
Fri, 20 Jun 2008 22:25:07 +0200 lindquist [svn r300] Removed some win32 stuff that was causing problems on mingw32. trunk
Fri, 20 Jun 2008 22:09:04 +0200 lindquist [svn r298] Eliminated the dmd/link.c source file entirely in favor of a llvm::sys based approach to the same functionality. trunk
Fri, 20 Jun 2008 17:45:13 +0200 lindquist [svn r297] Fixed: rewrote linker code to use LLVM's Program facilities instead of DMD's oldschool broken "native" approach. trunk
Sat, 14 Jun 2008 05:13:49 +0200 lindquist [svn r280] Fixed a bunch of issues with switch statements. Ended up a bit far reaching... trunk
Wed, 11 Jun 2008 20:53:26 +0200 lindquist [svn r267] Fixed debug info for global variables. trunk
Sun, 08 Jun 2008 19:09:24 +0200 lindquist [svn r253] Removed -inlineasm option. inline asm is now enabled by default unless the new -noasm option is passed. trunk
Fri, 06 Jun 2008 20:14:51 +0200 lindquist [svn r236] added initial codegen of inline asm, pretty buggy and incomplete still. see the tangotests/asm1.d test for a sample of what does trunk
Thu, 05 Jun 2008 19:22:37 +0200 ChristianK [svn r235] rough port of GDC's inline assembler code, unfinished trunk
Thu, 05 Jun 2008 06:38:36 +0200 lindquist [svn r233] Added: -oq command line option for writing fully qualified object names. trunk
Tue, 13 May 2008 17:58:11 +0200 lindquist [svn r221] Update: Switched to the 2.3 LLVM svn branch, http://llvm.org/svn/llvm-project/llvm/branches/release_23 . trunk
Thu, 01 May 2008 15:15:28 +0200 ChristianK [svn r175] merged dmd 1.029 trunk
Mon, 24 Mar 2008 20:48:40 +0100 lindquist [svn r157] Fixed the nasty type==NULL bug :D trunk
Mon, 10 Mar 2008 19:29:39 +0100 ChristianK [svn r151] fixed #29: out contracts work now trunk
Tue, 22 Jan 2008 00:01:16 +0100 lindquist [svn r143] Fixed: a few bugs in debug information, still only line info, but should be correct files now :) trunk
Mon, 14 Jan 2008 05:11:54 +0100 lindquist [svn r137] Many fixes towards tango.io.Console working, but not quite there yet... trunk
Fri, 11 Jan 2008 17:57:40 +0100 lindquist [svn r136] MAJOR UNSTABLE UPDATE!!! trunk
Fri, 04 Jan 2008 01:38:42 +0100 lindquist [svn r135] * Merged DMD 1.025 * trunk
Fri, 28 Dec 2007 23:52:40 +0100 lindquist [svn r134] Merged the DMD 1.024 frontend. trunk
Fri, 28 Dec 2007 22:55:24 +0100 lindquist [svn r133] Fixed some problems with inlining not happening :P trunk
Fri, 30 Nov 2007 12:56:52 +0100 lindquist [svn r131] Fixed #11 trunk
Fri, 16 Nov 2007 10:01:24 +0100 lindquist [svn r105] -inline does nothing for now, the -On setting can already be used to trigger it. trunk
Thu, 08 Nov 2007 19:13:28 +0100 lindquist [svn r96] Updated to DMD 1.023. trunk
Wed, 24 Oct 2007 22:18:06 +0200 lindquist [svn r59] Added support for C-style variadic functions. Currently only works on x86, x86-64 va_arg is broken in LLVM 2.1. PPC and PPC64 unknown. trunk
Tue, 23 Oct 2007 05:55:12 +0200 lindquist [svn r56] Initial support for TypeInfo. trunk
Fri, 19 Oct 2007 07:43:21 +0200 lindquist [svn r44] Lots of bug fixes. trunk
Wed, 10 Oct 2007 06:16:48 +0200 lindquist [svn r42] Disabled the extensive logging by default. Use the -vv flag to get it back. trunk
Tue, 09 Oct 2007 06:21:30 +0200 lindquist [svn r39] * Updated to DMD 1.022 with the exception of: trunk
Thu, 04 Oct 2007 16:44:07 +0200 lindquist [svn r35] * Attributes on struct fields/methods now work trunk