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