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