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