X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Futils%2FChangeLog;h=f19c351b8cf46be04825ebbb559a9e4bfb3a17f6;hb=c3841c3caf48ba741e9f0dcee321d47b363fa6b7;hp=371ef5bb9946d4bd20ee270ebdc028d2b084b112;hpb=72f66749ac60c3d0886bb330d596d11536093e59;p=mono.git diff --git a/mono/utils/ChangeLog b/mono/utils/ChangeLog index 371ef5bb994..f19c351b8cf 100644 --- a/mono/utils/ChangeLog +++ b/mono/utils/ChangeLog @@ -1,3 +1,145 @@ +2005-02-27 Zoltan Varga + + * mono-codeman.c: Pass MAP_32BIT to mmap on amd64 to force generated + code to have 32 bit addresses. + +Fri Feb 25 14:54:19 CET 2005 Paolo Molaro + + * mono-compiler.h: amd64 can't handle local-exec in PIC libs. + +Thu Feb 24 15:18:05 CET 2005 Paolo Molaro + + * Makefile.am, mono-compiler.h: added header to deal with + compiler-specific bugs and features. + +2005-01-30 Zoltan Varga + + * mono-logger.c (mono_trace_is_traced): Fix comment. + + * mono-logger.h mono-logger.c (mono_trace_is_traced): New helper function. + +2005-01-15 Zoltan Varga + + * mono-codeman.c (new_codechunk): Initialize pagesize in the dynamic + case as well. + +2004-12-23 Ben Maurer + + * strtod.c: add `cosnt' to some arrays to get them on shareable pages. + +Tue Dec 7 17:53:01 CET 2004 Paolo Molaro + + * mono-codeman.c: align bsize so the returned pointer + is aligned also for dynamic methods. + +2004-10-26 Zoltan Varga + + * mono-codeman.c: Fall back to malloc if MAP_ANON is not defined. + +2004-09-25 Zoltan Varga + + * mono-codeman.c (new_codechunk): Set malloc'ed code pages as + executable. + +2004-09-07 Bernie Solomon + + * mono-sha1.c: Remove uint32 and int32 types completely + +2004-09-02 Zoltan Varga + + * mono-codeman.c (new_codechunk): Remove g_assert_not_reached (). + + * mono-codeman.c (new_codechunk): Fix windows build. + + * mono-codeman.h mono-codeman.c: Generalize so it can be used to + allocate code for dynamic methods (one method per code manager). + +2004-07-30 Zoltan Varga + + * mono-logger.c (mono_trace_set_mask_string): Fix AOT tracing constant. + +2004-07-28 Zoltan Varga + + * mono-codeman.c (mono_code_manager_invalidate): Invalidate with + x86 break on AMD64 too. + +2004-07-23 zovarga + + * monobitset.c (my_g_bit_nth_msf): Add workaround for glib 2.2 bug on + 64 bit platforms. + +2004-07-09 Ben Maurer + + * mono-hash.c: register gc roots + +2004-07-02 Zoltan Varga + + * mono-logger.h mono-logger.c: Added AOT component. + +2004-06-30 Zoltan Varga + + * strtod.c: Use gint32 for 32 bit types. + +2004-06-29 Zoltan Varga + + * mono-sha1.c: Use gint32 for 32 types. Fixes random memory corruption + in SHA1Transform on 64 bit systems. + +2004-06-24 David Waite + + * monobitset.c: change to C90-style comments from C99/C++-style + +2004-06-21 Atsushi Enomoto + + * mono-sha1.c : close opened file in case of successful read. This + saves a bunch of System.Reflection Emit failures under windows. + +2004-06-18 Jackson Harper + + * mono-logger.c/h: Add a trace mask option for tracing loading + config files. A little white space love. + +2004-06-18 Jackson Harper + + * mono-logger.c: Change default logging level to ERROR. Make sure + that mono_trace_init is called if mono_tracev is our first trace + statement is mono_tracev. Little indentation fix. + +2004-05-25 Zoltan Varga + + * mono-codeman.c (mono_code_manager_invalidate): On x86, fill the + memory with 0xcc (x86 break). + +2004-05-02 Miguel de Icaza + + * mono-sha1.c: MacOS X defines "LITTLE_ENDIAN", you are supposed + to test against BYTE_ORDER, and this caused trouble. We now use + G_BYTE_ORDER and G_LITTLE_ENDIAN. This should fix the MacOS woes. + +2004-04-26 David Waite + + * mono-logger.h: remove comma from end of enumeration declaration + +Fri Apr 23 11:04:33 EDT 2004 Paolo Molaro + + * mono-codeman.c: macosx pretends an argument (which is ignored) + to be -1. Make sure the thunks area is zeroed. + +2004-03-11 Zoltan Varga + + * monobitset.c (mono_bitset_test_bulk): New function to return multiple + bits at once. + +Thu Mar 4 15:46:20 PST 2004 Paolo Molaro + + * mono-codeman.c: add a define to force the use of malloc + instead of mmap. + +Tue Feb 17 21:45:12 CET 2004 Paolo Molaro + + * mono-codeman.c, mono-codeman.h: allocate extra room in memory close + to the native code for arch where calls have a limited immediate + displacement. Wed Feb 11 15:26:18 CET 2004 Paolo Molaro