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