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