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