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