2005-01-19 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mono / utils / ChangeLog
1 2005-01-15  Zoltan Varga  <vargaz@freemail.hu>
2
3         * mono-codeman.c (new_codechunk): Initialize pagesize in the dynamic
4         case as well.
5
6 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
7
8         * strtod.c: add `cosnt' to some arrays to get them on shareable pages.
9
10 Tue Dec 7 17:53:01 CET 2004 Paolo Molaro <lupus@ximian.com>
11
12         * mono-codeman.c: align bsize so the returned pointer
13         is aligned also for dynamic methods.
14
15 2004-10-26  Zoltan Varga  <vargaz@freemail.hu>
16
17         * mono-codeman.c: Fall back to malloc if MAP_ANON is not defined.
18
19 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
20
21         * mono-codeman.c (new_codechunk): Set malloc'ed code pages as 
22         executable.
23
24 2004-09-07  Bernie Solomon  <bernard@ugsolutions.com>
25
26         * mono-sha1.c: Remove uint32 and int32 types completely
27
28 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
29
30         * mono-codeman.c (new_codechunk): Remove g_assert_not_reached ().
31         
32         * mono-codeman.c (new_codechunk): Fix windows build.
33
34         * mono-codeman.h mono-codeman.c: Generalize so it can be used to
35         allocate code for dynamic methods (one method per code manager).
36
37 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
38
39         * mono-logger.c (mono_trace_set_mask_string): Fix AOT tracing constant.
40
41 2004-07-28  Zoltan Varga  <vargaz@freemail.hu>
42
43         * mono-codeman.c (mono_code_manager_invalidate): Invalidate with
44         x86 break on AMD64 too.
45
46 2004-07-23  zovarga  <vargaz@freemail.hu>
47
48         * monobitset.c (my_g_bit_nth_msf): Add workaround for glib 2.2 bug on
49         64 bit platforms.
50
51 2004-07-09  Ben Maurer  <bmaurer@ximain.com>
52         
53         * mono-hash.c: register gc roots
54
55 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
56
57         * mono-logger.h mono-logger.c: Added AOT component.
58
59 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
60
61         * strtod.c: Use gint32 for 32 bit types.
62
63 2004-06-29  Zoltan Varga  <vargaz@freemail.hu>
64
65         * mono-sha1.c: Use gint32 for 32 types. Fixes random memory corruption
66         in SHA1Transform on 64 bit systems.
67
68 2004-06-24  David Waite  <mass@akuma.org>
69
70         * monobitset.c: change to C90-style comments from C99/C++-style 
71
72 2004-06-21  Atsushi Enomoto  <atsushi@ximian.com>
73
74         * mono-sha1.c : close opened file in case of successful read. This
75           saves a bunch of System.Reflection Emit failures under windows.
76
77 2004-06-18  Jackson Harper  <jackson@ximian.com>
78
79         * mono-logger.c/h: Add a trace mask option for tracing loading
80         config files. A little white space love.
81         
82 2004-06-18  Jackson Harper  <jackson@ximian.com>
83
84         * mono-logger.c: Change default logging level to ERROR. Make sure
85         that mono_trace_init is called if mono_tracev is our first trace
86         statement is mono_tracev. Little indentation fix.
87         
88 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
89
90         * mono-codeman.c (mono_code_manager_invalidate): On x86, fill the
91         memory with 0xcc (x86 break).
92
93 2004-05-02  Miguel de Icaza  <miguel@ximian.com>
94
95         * mono-sha1.c: MacOS X defines "LITTLE_ENDIAN", you are supposed
96         to test against BYTE_ORDER, and this caused trouble.  We now use
97         G_BYTE_ORDER and G_LITTLE_ENDIAN.  This should fix the MacOS woes.
98
99 2004-04-26  David Waite  <mass@akuma.org>
100
101         * mono-logger.h: remove comma from end of enumeration declaration
102
103 Fri Apr 23 11:04:33 EDT 2004 Paolo Molaro <lupus@ximian.com>
104
105         * mono-codeman.c: macosx pretends an argument (which is ignored)
106         to be -1. Make sure the thunks area is zeroed.
107
108 2004-03-11  Zoltan Varga  <vargaz@freemail.hu>
109
110         * monobitset.c (mono_bitset_test_bulk): New function to return multiple
111         bits at once.
112
113 Thu Mar 4 15:46:20 PST 2004 Paolo Molaro <lupus@ximian.com>
114
115         * mono-codeman.c: add a define to force the use of malloc
116         instead of mmap.
117
118 Tue Feb 17 21:45:12 CET 2004 Paolo Molaro <lupus@ximian.com>
119
120         * mono-codeman.c, mono-codeman.h: allocate extra room in memory close
121         to the native code for arch where calls have a limited immediate
122         displacement.
123
124 Wed Feb 11 15:26:18 CET 2004 Paolo Molaro <lupus@ximian.com>
125
126         * Makefile.am, mono-codeman.h, mono-codeman.c: new support code
127         to deal with buffers of native code (handles exec bits and other
128         details).
129
130 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
131
132         * strenc.c:
133         (mono_unicode_from_external): UTF8 is the default, not the preferred
134         encoding, ie, try MONO_EXTERNAL_ENCODINGS first. When "default_locale"
135         was passed in the env. var., it always failed because we were passing
136         "default_locale" to g_convert. Also fixed the byte count for non-UTF8
137         conversions.
138         (mono_utf8_from_external): UTF8 is the default, not the preferred one.
139
140         Fixes bug #53166.
141
142 Thu Jan 8 19:56:08 CET 2004 Paolo Molaro <lupus@ximian.com>
143
144         * mono-uri.c: fixed compile problem.
145
146 2003-12-02  Bernie Solomon  <bernard@ugsolutions.com>
147
148         * mono-math.c: fix for older C compilers and big endian machines
149
150 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
151
152         * mono-math.h mono-math.c: New file which contains implementations of
153         math functions/macros which are missing on some platforms.
154
155 2003-11-10  Dick Porter  <dick@ximian.com>
156
157         * strenc.c: Use platform-endian UTF16
158
159 2003-10-28  Dick Porter  <dick@ximian.com>
160
161         * strenc.h:
162         * strenc.c: New files, convert text to and from unicode or utf8,
163         and the user's chosen encoding.
164
165 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
166
167         * mono-hash.h mono-hash.c (mono_g_hash_table_remap): New function used
168         to remap hashtable values during a copying collection. Not used at the
169         moment.
170         * mono-hash.c (g_hash_node_new): Restructured to avoid the global lock
171         in the common case.
172         * mono-hash.c (mono_g_hash_table_new_full): Enable the optimization of
173         the key function even if the client supplied g_direct_equal instead of
174         NULL.
175
176 2003-08-22  Duncan Mak  <duncan@ximian.com>
177
178         * strtod.c: 64-bit related fixes from Laurent Morichetti
179         <l_m@pacbell.net>. Patch approval from Miguel.
180
181 Fri Jun 6 19:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
182
183         * mono-logger.h, mono-logger.c, Makefile.am: added
184         selective logging code by Jerome Laban <jlaban@wanadoo.fr>.
185
186 2003-03-05  Dietmar Maurer  <dietmar@ximian.com>
187
188         * monobitset.c (mono_bitset_set_all): impl.
189
190 Fri Sep 13 15:56:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
191
192         * mono-digest.h, mono-sha1.c: Added mono_digest_get_public_token()
193         to get the public key token from a public key.
194
195 Thu Jul 25 13:59:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
196
197         * mono-digest.h, mono-md5.c, mono-sha1.c: MD5 and SHA1
198         implementations.
199
200 Mon Jun 3 15:59:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
201
202         * strtod.c: make __bsd_dtoa() always return malloc()ed memory.
203
204 Mon Jun 3 15:42:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
205
206         * monobitset.c, monobitset.h: documentation and fixes from
207         Dennis Haney.
208
209 Sat Jun 1 14:10:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
210
211         * monobitset.c: fix my screwup pointed out by Lawrence Pit
212         (loz@cable.a2000.nl).
213
214 Fri May 31 15:34:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
215
216         * monobitset.c, monobitset.h: fixes. added mono_bitset_foreach().
217
218 Wed May 22 12:42:06 CEST 2002 Paolo Molaro <lupus@ximian.com>
219
220         * monobitset.c: use our own bit_nth_lsf since the glib one is buggy.
221         Add more tests. mono_bitset_find_first (set, -1) will work correctly
222         now.
223
224 2002-05-09  Dietmar Maurer  <dietmar@ximian.com>
225
226         * monobitset.c: use memcmp instead of memcpy
227
228 Thu May 9 17:23:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
229
230         * monobitset.c, monibitset.h: bit set data structure.
231         Not included in the build yet because the jit has some symbol clashes
232         with it.
233
234 Mon Mar 25 12:50:53 CET 2002 Paolo Molaro <lupus@ximian.com>
235
236         * First checkin: libmonoutils is meant to hold some utility
237         data structures and bits that are usefult to the rest of the project
238         and don't require metadata/runtime support.
239         mono-hash is a GC-safe hash table: i.e. you can store GC-allocated
240         data in it.
241