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