Fixed typo.
[mono.git] / mcs / class / Mono.CSharp.Debugger / ChangeLog
1 2003-02-09  Martin Baulig  <martin@ximian.com>
2
3         * MonoSymbolWriter.cs (SourceFile): Derive from SourceFileEntry.
4         (SourceBlock): We don't need source lines here.
5         (SourceMethod): We're always constructed with source info.
6
7         * MonoSymbolTable.cs: Added support for namespaces.
8         (NamespaceEntry): New struct.
9         (SourceFileEntry.DefineNamespace): New method.
10         (MethodEntry.BuildLineNumberTable): The table is already sorted,
11         so we don't need to do this here.
12
13 2003-02-09  Martin Baulig  <martin@ximian.com>
14
15         * IMonoSymbolWriter.cs: Ooops, I forgot to remove this.
16
17 2003-02-08  Martin Baulig  <martin@ximian.com>
18
19         * MonoSymbolDocumentWriter.cs: Removed.
20
21         * MonoSymbolWriter.cs (SourceFile): Implement ISymbolDocumentWriter.
22
23 2003-02-08  Martin Baulig  <martin@ximian.com>
24
25         * MonoSymbolFile.cs (GetMethodSource): New public method.
26         (FindMethod): Return the correct index.
27
28 2003-02-07  Martin Baulig  <martin@ximian.com>
29
30         * MonoSymbolFile.cs (Methods, Sources): New public properties.
31
32 2003-02-07  Martin Baulig  <martin@ximian.com>
33
34         * MonoSymbolFile.cs (MonoSymbolFile.ReadSymbolFile): New public
35         static method, returns null (without throwing an exception) if the
36         assembly doesn't have any debugging info.
37
38 2003-02-07  Martin Baulig  <martin@ximian.com>
39
40         * MonoSymbolWriter.cs (MonoSymbolWriter.Initialize): Removed the
41         custom initialization function.
42
43         * MonoSymbolTableWriter.cs: Removed; the code is now in
44         MonoSymbolFile.cs and MonoSymbolWriter.cs.
45
46 2003-02-07  Martin Baulig  <martin@ximian.com>
47
48         * MonoSymbolFile.cs: The symbol file is now a resource in the
49         assembly instead of a separate file.
50
51         * MonoSymbolTable.cs: Did a few more cleanups, sort the line
52         number table and remove duplicate line numbers.
53
54 2003-02-05  Martin Baulig  <martin@ximian.com>
55
56         Modified the symbol file format to speed up method looks by name
57         and cleaned this up a lot.
58
59         * MonoSymbolFile.cs: New public class.  This is now a public class
60         and writes and reads the symbol file.
61
62         * IMonoBinaryReader.cs: Removed.
63
64         * MonoSymbolTable.cs: Set version number to 29.
65
66 2003-01-17  Zoltan Varga  <vargaz@freemail.hu>
67
68         * MonoSymbolWriter.cs (OpenMethod): Make it work on constructors.
69
70 2002-10-13  Martin Baulig  <martin@gnome.org>
71
72         * MonoSymbolTable.cs: Set version number to 28.
73         (SourceFileEntry): Read the methods when they're needed.
74         (MethodSourceEntry): Made this a struct, not a class.
75
76 2002-10-13  Martin Baulig  <martin@gnome.org>
77
78         * MonoSymbolTable.cs: Set version number to 27.  Added a source
79         file table which is used to search a method by source file + line number.
80
81 2002-09-21  Martin Baulig  <martin@gnome.org>
82
83         * MonoSymbolTable.cs: Set version number to 26.  Removed all the dynamic
84         stuff, this library now just deals with the compiler generated symbol table.
85         The dynamic stuff is private between the JIT and the debugger.
86
87 2002-09-21  Martin Baulig  <martin@gnome.org>
88
89         * MonoSymbolTable.cs: Set version number to 25.  Added information about
90         local variables.
91
92 2002-09-20  Martin Baulig  <martin@gnome.org>
93
94         * MonoSymbolTable.cs: Set version number to 24.  Added a type index
95         table.  Write the type of a local variable or a parameter as an index
96         into this table.
97
98 2002-09-20  Martin Baulig  <martin@gnome.org>
99
100         * IMonoSymbolWriter.cs: Remove all the unused interfaces.
101
102 2002-09-20  Martin Baulig  <martin@gnome.org>
103
104         * MonoSymbolTable.cs: Set version number to 23, include the size
105         of a variable.
106
107 2002-09-20  Martin Baulig  <martin@gnome.org>
108
109         * MonoSymbolTable.cs: Set version number to 22.  Provide information
110         about parameters and local variables.
111
112 2002-09-20  Martin Baulig  <martin@gnome.org>
113
114         * IMonoSymbolWriter.cs: Use fullly qualified name for
115         System.Diagnostics.SymbolStore.ISymbolWriter rather than `using' this
116         namespace.  This allows us to use the name `ISymbolWriter' in our own
117         code.
118
119 2002-09-18  Martin Baulig  <martin@gnome.org>
120
121         * MonoSymbolTable.cs: Set version number to 21.  Encode the source file
122         as a 4-byte length field followed by the UTF8 encoded string.
123
124 2002-09-18  Martin Baulig  <martin@gnome.org>
125
126         * IMonoBinaryReader.cs: New interface.
127
128         * MonoSymbolTable.cs: Use IMonoBinaryReader instead of binary reader.
129
130 2002-09-16  Martin Baulig  <martin@gnome.org>
131
132         * MonoSymbolTable.cs: Set version number to 20.
133
134 2002-09-14  Martin Baulig  <martin@gnome.org>
135
136         * MonoSymbolWriter.cs, IMonoSymbolWriter.cs, MonoSymbolTableWriter.cs:
137         Make all classes and interfaces which don't need to be public internal.
138
139 2002-09-14  Martin Baulig  <martin@gnome.org>
140
141         * MonoSymbolTable.cs: Use only CLS-compliant types here, bumped version
142         number to 19.
143
144         * MonoSymbolTableReader.cs: Removed, this is now in the debugger.
145
146 2002-09-03  Martin Baulig  <martin@gnome.org>
147
148         * AssemblerWriterI386.cs, IAssemblerWriter.cs, MonoDwarfFileWriter.cs,
149         README, README.relocation-table, csharp-lang.[ch], gdb-csharp-support.patch,
150         gdb-variable-scopes.patch: Removed.
151
152 2002-09-03  Martin Baulig  <martin@gnome.org>
153
154         * MonoSymbolTableReader.cs (MonoSymbolTableReader.ImageFile): New
155         public property.
156
157         * MonoSymbolTable.cs: Bumped version number to 18.
158
159 2002-08-27  Martin Baulig  <martin@gnome.org>
160
161         * MonoSymbolTable.cs (MethodAddress): Removed `TrampolineAddress'.
162
163 2002-08-27  Martin Baulig  <martin@gnome.org>
164
165         * MonoSymbolTable.cs: Changed the file format in a way that allows us
166         open it read-only and to use a specially malloced area for all the
167         dynamic data.   
168
169 2002-08-25  Martin Baulig  <martin@gnome.org>
170
171         * MonoSymbolTableReader.cs: New file.  This is the reader for the
172         new symbol file format.
173
174 2002-08-24  Martin Baulig  <martin@gnome.org>
175
176         * MonoSymbolTable.cs, MonoSymbolTableWriter.cs: New files.  This
177         creates a binary application.dbg file which will be used by the
178         JIT to display source lines for exceptions.
179
180         * list.unix: Disabled the dwarf file writer in the build.
181
182 2002-08-23  Martin Baulig  <martin@gnome.org>
183
184         * MonoSymbolWriter.cs (MonoSymbolWriter.Initialize): Added
185         assembly name argument.  Since the symbol writer needs to read the
186         final assembly, we need to give it its full pathname.
187
188 2002-08-23  Martin Baulig  <martin@gnome.org>
189
190         * makefile.gnu, list.unix: Added.
191
192 2002-07-05  Martin Baulig  <martin@gnome.org>
193
194         * MonoDwarfFileWriter.cs: Added support for types in referenced assemblies.
195
196 2002-07-05  Martin Baulig  <martin@gnome.org>
197
198         * MonoDwarfFileWriter.cs: Added support for arrays.
199
200         * gdb-csharp-support.patch: Updated.
201
202 2002-06-29  Martin Baulig  <martin@gnome.org>
203
204         * MonoDwarfFileWriter.cs (DieInheritance): Make this actually work.
205
206 2002-06-29  Martin Baulig  <martin@gnome.org>
207
208         * MonoDwarfFileWriter.cs, MonoSymbolWriter.cs: Put all TAG_subprogram's into their
209         corresponding struct/class declarations.
210
211 2002-06-28  Martin Baulig  <martin@gnome.org>
212
213         * gdb-csharp-support.patch: Updated.
214
215 2002-06-28  Martin Baulig  <martin@gnome.org>
216
217         * MonoDwarfFileWriter.cs: Use a TAG_string_type when we're using GNU extensions.
218         Make static struct/class fields actually work.  Provide a TAG_typedef for struct's
219         and classes.
220
221 2002-05-30  Martin Baulig  <martin@gnome.org>
222
223         * IMonoSymbolWriter (IMonoSymbolWriter): Added custom `Initialize' method.
224
225         * MonoSymbolWriter.cs (Initialize): The ISymbolWriter's `Initialize' method
226         is no longer supported and throws an exception.
227         (Initialize (string, string[])): New custom initialization function.
228
229         * MonoDwarfFileWriter.cs (DwarfFileWriter): Added `string[] args' argument
230         to the constructor to pass command line arguments.
231
232         * gdb-csharp-support.patch: Updated for GDB 5.2.
233
234 2002-05-30  Martin Baulig  <martin@gnome.org>
235
236         * MonoSymbolWriter.cs (MonoSymbolWriter): The constructor now get's the
237         AssemblyBuilder's `methods' array as third argument.
238         (OpenMethod): Use this array to get the method builder rather than using an
239         interncall for it.
240         (get_method_builder): Removed this interncall.
241
242 2002-05-25  Martin Baulig  <martin@gnome.org>
243
244         * MonoDwarfFileWriter.cs: Finished the type rewrite, put back strings and arrays.
245
246 2002-05-24  Martin Baulig  <martin@gnome.org>
247
248         * IMonoSymbolWriter.cs (ISourceMethod): Added `FullName' and `Parameters'.
249         (ITypeHandle): New interface.
250
251         * DwarfFileWriter.cs: Largely reorganized the type writing code.  Types are
252         now represented by ITypeHandle objects which are stored in a per-dwarf-writer
253         hash table.  At the moment, all types still need to be in one compile unit due
254         to lacking support in gdb - but this new type code here already supports this.
255
256         * MonoSymbolWriter.cs: Moved all the subclasses to the top-level and made them
257         public, cleaned up the code, put everything into one compile unit.
258         (DefineLocalVariable): Added a version of this function which takes useful args.
259
260 2002-05-22  Martin Baulig  <martin@gnome.org>
261
262         * IMonoSymbolWriter.cs (IMonoSymbolWriter): Added `Sources' and `Methods'
263         properties.
264
265         * MonoDwarfFileWriter.cs (WriteSymbolTable): New public method.  Moved the
266         code that writes the "mono_line_numbers" section here from the LineNumberEngine.
267
268 2002-05-22  Martin Baulig  <martin@gnome.org>
269
270         * IMonoSymbolWriter.cs (IVariable): Replaced Token with `ISourceMethod Method'.
271
272         * MonoSymbolWriter.cs (MonoSymbolWriter): The constructor now has an additional
273         ModuleBuilder argument.
274         (OpenMethod): Immediately call the `get_method' interncall to get the MethodBase
275         from the token, then store the MethodBase instead of the token.  The token may
276         still change during the metadata library's fixup process.
277         (DoFixups): When the image has been written to disk, call the GetToken () method
278         on all MethodBuilders and all ConstructorBuilders to get the final metadata tokens.
279
280 2002-05-22  Martin Baulig  <martin@gnome.org>
281
282         * AssemblerWriterI386.cs: Don't use GNU extensions and produce assembler
283         output which is free of comments and extra whitespaces so that it's suitable
284         for `as -f'.
285
286 2002-05-22  Martin Baulig  <martin@gnome.org>
287
288         * IMonoSymbolWriter.cs (ISourceMethod): Replaced `MethodInfo MethodInfo' with
289         `MethodBase MethodBase' and added `Type ReturnType'.  We're now correctly
290         dealing with constructors and not crashing anymore.
291
292 2002-05-21  Martin Baulig  <martin@gnome.org>
293
294         * MonoDwarfFileWriter.cs: Write a special line number table which can be read
295         in by the metadata library to get line number information in backtraces.
296
297 2002-05-06  Martin Baulig  <martin@gnome.org>
298
299         * MonoSymbolWriter.cs (MonoSymbolWriter.Close): Use Assembly.LoadFrom (), not
300         AppDomain.Load () to load the assembly.
301
302 2002-04-26  Martin Baulig  <martin@gnome.org>
303
304         * gdb-csharp-support.patch: A patch for GDB (against the latest CVS version)
305         to implement C# support.
306
307         * csharp-lang.c, csharp-lang.h, csharp-mono-lang.c: Copy these into your GDB
308         source directory after applying the patch.
309
310 2002-04-26  Martin Baulig  <martin@gnome.org>
311
312         * MonoDwarfFileWriter.cs (DieInternalString): Removed.
313
314 2002-04-25  Martin Baulig  <martin@gnome.org>
315
316         * MonoDwarfFileWriter.cs: Reflect latest MonoString changes.
317
318 2002-04-13  Martin Baulig  <martin@gnome.org>
319
320         * IMonoSymbolWriter.cs (ISourceBlock): Added `Blocks' property and `AddBlock'
321         method to support nested blocks.
322
323         * MonoSymbolWriter.cs: Correctly handle nested blocks.
324
325         * MonoDwarfFileWriter.cs (DieMember): Provide info for all fields, not just for
326         public ones; also added DW_AT_accessibility.
327         (DieVariable): Reflected latest debug-symfile.c changes.
328
329 2002-04-12  Martin Baulig  <martin@gnome.org>
330
331         * gdb-variable-scopes.patch: A patch for GDB (against the latest CVS version)
332         to implement variable lifetimes.
333
334 2002-04-12  Martin Baulig  <martin@gnome.org>
335
336         * MonoDwarfFileWriter.cs (DieVariable): Provide info about the variable's
337         lifetime using DW_AT_begin_scope and a new baulig extension DW_AT_end_scope.
338
339 2002-03-29  Martin Baulig  <martin@gnome.org>
340
341         * AssemblerWriterI386.cs: Rewrote most of the string output function, do the
342         number->string conversion manually. It's now taking about 15 seconds to write
343         a symbol file for MCS, no longer more than a minute.
344
345         * MonoDwarfFileWriter.cs: Added some profiling code, speeded things up, fixed
346         a few bugs.
347
348 2002-03-25  Martin Baulig  <martin@gnome.org>
349
350         * MonoDwarfFileWriter.cs (CreateType): Return a `DieType'.
351         (RegisterType): Add the type to the type hash before creating dependency types
352         so we don't get recursion loops.
353         (RegisterPointerType): New func to register a "pointer to type" type.
354         (DieTypeDef, DiePointerType, DieArrayType, DieStringType, DieClassType): New
355         types; added support for strings, arrays and basic support for classes.
356         
357 2002-03-24  Martin Baulig  <martin@gnome.org>
358
359         * IMonoSymbolWriter.cs: Killed all methods in this interface, no longer needed.
360
361         * MonoSymbolWriter.cs (MonoSymbolWriter): The constructor now takes a string
362         argument which is the full pathname of the assembly - you must call Close()
363         after the assembly has been written to disk since the symbol writer needs to
364         load the finished assembly to get its metadata.
365
366         * MonoDwarfFileWriter.cs: Added support for enums and structs.
367         
368 2002-03-24  Martin Baulig  <martin@gnome.org>
369
370         * MonoDwarfFileWriter.cs: Added support for method parameters.
371
372 2002-03-24  Martin Baulig  <martin@gnome.org>
373
374         * IMonoSymbolWriter.cs (IMonoSymbolWriter): Removed my custom OpenMethod(),
375         we're now using the ISymbolWriter's method.
376         (IVariable): Added `byte[] Signature' property.
377
378         * MonoSymbolWriter.cs (SetAssembly): New method. This must be called before
379         Close(); the assembly parameter is the already-written assembly, ie. it must
380         contain the full metadata.
381         (OpenMethod): Only take the token argument and set MethodInfo later in DoFixups.
382         (SetMethodSourceRange): You must call this function to tell the symbol writer
383         in which source file the method is defined.
384         (DefineLocal): Store the signature in the local.
385         (DoFixups): Use two new interncalls to set the SourceMethod's MethodInfo field
386         and the LocalVariable's Type field.
387
388 2002-03-23  Martin Baulig  <martin@gnome.org>
389
390         * IMonoSymbolWriter.cs (ISourceBlock): New interface.
391         (ILocalVariable): Renamed this interface to IVariable.
392         (IVariable): Added Line, Type, Token.
393         (ILocalVariable, IMethodParameter): New interfaces, derive from IVariable.
394         (ISourceMethod): Added Blocks. Renamed FirstLine and LastLine to Start and End,
395         changed their type to ISourceLine. Removed CodeSize.
396         (ISourceLine): Renamed Line to Row, added Column. Added OffsetType and Offset.
397
398         * MonoDwarfFileWriter.cs (MonoDwarfFileWriter.DieLexicalBlock): New class.
399         (MonoDwarfFileWriter.DieMethodVariable): New class.
400
401         * MonoSymbolWriter.cs (OpenScope, CloseScope): Implemented.
402         Reflected latest IMonoSymbolWriter interface changes.
403
404 2002-03-20  Martin Baulig  <martin@gnome.org>
405
406         * IAssemblerWriter.cs: New interface.
407
408         * AssemblerWriterI386.cs: New class.
409
410         * MonoDwarfFileWriter.cs: Use the IAssemblerWriter interface to make this class
411         platform and assembler independent.
412
413 2002-03-20  Martin Baulig  <martin@gnome.org>
414
415         * IMonoSymbolWriter.cs (ISourceMethod): Added FirstLine, LastLine, CodeSize and
416         Token properties.
417
418         * MonoDwarfFileWriter.cs: Implemented line number support.
419
420 2002-03-19  Martin Baulig  <martin@gnome.org>
421
422         * IMonoSymbolWriter.cs (ISourceFile, ISourceMethod, ISourceLine, ILocalVariable):
423         New interfaces.
424
425         * IMonoSymbolWriter.cs (OpenMethod): Take a System.Reflection.MethodInfo, not
426         a string.
427
428 2002-03-19  Martin Baulig  <martin@gnome.org>
429
430         This is an implementation of the System.Diagnostics.SymbolStore.SymbolWriter
431         interface. It's still work in progress and not yet used anywhere.
432
433         There is some preliminary documentation in the source files and some more
434         docu in the README and README.relocation-table files.
435
436         * IMonoSymbolWriter.cs: New file.
437         * MonoDwarfFileWriter.cs: New file.
438         * MonoSymbolDocumentWriter.cs: New file.
439         * MonoSymbolWriter.cs: New file.
440
441         * README, README.relocation-table: Documentation.
442