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