log gen/functions.cpp @ 724:6de2ed4f0abe

age author description
Sat, 25 Oct 2008 18:12:07 +0200 Tomas Lindquist Olsen Disabled parameter reversing by default, it broke mini/typeinfo10.d
Sat, 25 Oct 2008 06:03:28 +0200 Tomas Lindquist Olsen Implemented correct parameter order according to x86-32 ABI documentation.
Thu, 23 Oct 2008 00:34:46 +0200 Tomas Lindquist Olsen Added inreg attribute where appropriate on x86 to follow ABI docs.
Wed, 22 Oct 2008 21:50:08 +0200 Tomas Lindquist Olsen Implemented first class delegates. closes #101
Wed, 22 Oct 2008 14:55:33 +0200 Tomas Lindquist Olsen Removed TypeOpaque from DMD.
Wed, 01 Oct 2008 23:17:14 +0200 Tomas Lindquist Olsen Updated to latest LLVM trunk, function notes have been removed and merged with parameter attributes, which have been renamed to just attributes. Nothing seems to have broke!
Wed, 01 Oct 2008 18:32:31 +0200 Tomas Lindquist Olsen Wrapped all the most potentially expensive logging calls in a conditional to only do work when actually requested.
Tue, 09 Sep 2008 16:49:47 -0700 Tomas Lindquist Olsen Complex number should now follow the D ABI on x86. They're also treated as first class values now. Big change.
Mon, 25 Aug 2008 19:36:27 +0200 Tomas Lindquist Olsen Removed D_InlineAsm and D_InlineAsm_X86 versions.
Wed, 20 Aug 2008 01:02:22 +0200 Tomas Lindquist Olsen Added support for overloaded intrinsics.
Tue, 19 Aug 2008 20:18:01 +0200 Tomas Lindquist Olsen First step towards D abi compliance.
Sun, 17 Aug 2008 11:39:36 +0200 Christian Kamm Abstract functions may have bodies.
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.
Tue, 05 Aug 2008 19:28:19 +0200 Christian Kamm Move AllocaInst creation into DtoAlloca helper. Will enable special zero-init of fp80 reals' padding.
Mon, 04 Aug 2008 02:59:34 +0200 Tomas Lindquist Olsen Removed the 'needsstorage' thing from Dsymbol. Arguments are not always given storage when applicable. This is not longer treat specially
Sat, 02 Aug 2008 21:51:49 +0200 Tomas Lindquist Olsen Fixed debug info and lazy arguments.
Sat, 02 Aug 2008 17:24:10 +0200 Tomas Lindquist Olsen Fixed inserting an AA entry with 'this' as key.
Sat, 02 Aug 2008 02:54:57 +0200 Tomas Lindquist Olsen Added generation of the llvm 'sret' parameter attribute where applicable.
Sat, 02 Aug 2008 00:50:39 +0200 Tomas Lindquist Olsen Fixed problems with nested 'this'. Fixes #39 .
Fri, 01 Aug 2008 21:54:40 +0200 Tomas Lindquist Olsen Fixed problem where global variables did not resolve type before using it.
Fri, 01 Aug 2008 18:07:33 +0200 Tomas Lindquist Olsen Fixed param attrs for return values (not really broken, but would be if more return attrs were added)
Fri, 01 Aug 2008 17:59:58 +0200 Tomas Lindquist Olsen Changed the handling of variadic intrinsics a bit.
Fri, 01 Aug 2008 00:32:06 +0200 Tomas Lindquist Olsen Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Wed, 30 Jul 2008 10:12:55 +0200 Tomas Lindquist Olsen Added type param to DVarValue as DMD sometimes overrides the type of the VarDeclaration.
Tue, 29 Jul 2008 15:58:45 +0200 Christian Kamm Enable insertion of missing terminator instruction for main.
Sat, 26 Jul 2008 17:19:16 +0200 Christian Kamm Give error messages for invalid casts.
Tue, 22 Jul 2008 23:06:46 +0200 Christian Kamm Introducing opaque type to dmd frontent to be used with certain runtime array
Tue, 22 Jul 2008 19:24:40 +0200 Christian Kamm Get rid of runTimeHack and instead add proper argument info to the frontend
Mon, 14 Jul 2008 21:49:54 +0200 lindquist [svn r384] Some minor code cleanups. trunk
Sun, 13 Jul 2008 20:49:10 +0200 lindquist [svn r368] Fixed custom class allocators with arbitrary user arguments. Closes #25 trunk
Sat, 12 Jul 2008 19:38:31 +0200 lindquist [svn r357] Merged DMD 1.033 trunk
Sat, 12 Jul 2008 15:43:13 +0200 ChristianK [svn r355] Get rid of IRState::exps and topexp. trunk
Fri, 11 Jul 2008 01:34:04 +0200 lindquist [svn r350] Fixed incorrect function types for lazy arguments. looks like lazy arguments have never even worked :o well.. now they should. trunk
Fri, 11 Jul 2008 00:17:00 +0200 lindquist [svn r349] Fixed problems with static arrays of void as well as a static arrays with zero length. trunk
Thu, 19 Jun 2008 17:30:32 +0200 lindquist [svn r296] Removed: the 'suite' dir, it never took off! 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
Thu, 12 Jun 2008 19:59:19 +0200 lindquist [svn r276] Fixed debug info for 'this' arg seemed to be broken. trunk
Thu, 12 Jun 2008 18:04:28 +0200 lindquist [svn r271] Fixed debug info for implicit 'this' param. trunk
Wed, 11 Jun 2008 20:53:26 +0200 lindquist [svn r267] Fixed debug info for global variables. trunk
Mon, 09 Jun 2008 12:43:16 +0200 lindquist [svn r262] Fixed debug info for normal function parameters. trunk
Mon, 09 Jun 2008 09:37:08 +0200 lindquist [svn r261] Fixed debug info for integer and floating local variables, can now be inspected in GDB. trunk
Mon, 09 Jun 2008 00:28:02 +0200 lindquist [svn r258] Fixed: we were passing static arrays by value. trunk
Mon, 09 Jun 2008 00:01:10 +0200 lindquist [svn r257] Fixed: array .sort and .reverse runtime code was incorrect. trunk
Sun, 08 Jun 2008 08:03:19 +0200 lindquist [svn r250] Fixed the warning about dropping arguments to _Dmain when optimizing. trunk
Fri, 06 Jun 2008 22:30:31 +0200 lindquist [svn r241] Fixed missing terminator for void main() with inline asm block. 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, 03 Jun 2008 13:51:09 +0200 lindquist [svn r231] Changed: warnings are no longer treated as an error. trunk
Fri, 30 May 2008 19:32:04 +0200 lindquist [svn r229] Updated the object.d implementation to the latest Tango. 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
Tue, 06 May 2008 07:56:03 +0200 ChristianK [svn r189] moving IR data back into DMD frontend nodes trunk
Mon, 05 May 2008 07:36:29 +0200 lindquist [svn r179] lots and lots of fixes, much more of tango now compiles/works. trunk
Mon, 05 May 2008 00:56:53 +0200 lindquist [svn r178] Fixed codegen values for function arguments, the old approach was completely broken, amazing it even worked... trunk
Thu, 01 May 2008 13:32:08 +0200 ChristianK [svn r173] moved IR state previously stored in Type into IrType and a Type->IrType map; fixes #7 trunk
Thu, 01 May 2008 13:05:53 +0200 ChristianK [svn r172] moving all IR state previously stored in Dsymbol into IrDsymbol and a Dsymbol->IrDsymbol map trunk
Tue, 29 Apr 2008 21:33:50 +0200 ChristianK [svn r171] starting to move IR data from AST nodes into IRState; started with IrFunction trunk
Tue, 25 Mar 2008 16:33:19 +0100 lindquist [svn r159] added some code to help diagnose ticket #35 trunk
Mon, 24 Mar 2008 19:43:02 +0100 lindquist [svn r155] Fixed a bunch of linkage problems (especially with templates) trunk
Sat, 26 Jan 2008 17:13:22 +0100 lindquist [svn r149] fixed: a bunch of D-style variadics problems. 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
Fri, 18 Jan 2008 16:42:16 +0100 lindquist [svn r141] fixed more problems with classinfo trunk