2004-01-13 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / class / Mono.CSharp.Debugger / ChangeLog
1 2004-01-13  Martin Baulig  <martin@ximian.com>
2
3         * ChangeLog, MonoSymbolTable.cs: Reviewed Ben's patches.  For
4         those which are not ok, I'll add detailed comments to the source
5         code.   
6
7 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
8
9         [Revision 1.41, not approved.  Martin]
10         * MonoSymbolTable.cs (MethodEntry): kill more
11         useless fields.
12
13 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
14
15         [Revision 1.40, not approved.  Martin]
16         * MonoSymbolTable.cs (MethodEntry): Remove the
17         SourceFileIndex field, we already have the info.
18
19 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
20
21         [Revision 1.39, approved.  Martin]
22         * MonoSymbolTable.cs: Don't make the MethodIndexEntry
23         part of the method entry class, because it just
24         takes up extra space.
25
26 2003-12-28 Ben Maurer  <bmaurer@users.sourceforge.net>
27
28         [Revisions 1.37 and 1.38; not approved.  Martin]
29         * MonoSymbolTable.cs (MethodEntry.BuildLineNumberTable): Removed.
30
31         * MonoSymbolTable.cs, MonoSymbolWriter.cs: Use
32         fewer arrays, dont use arraylists with structs.
33
34 2003-12-27 Ben Maurer  <bmaurer@users.sourceforge.net>
35
36         * MonoSymbolFile.cs: Much, much better string writing.
37
38 2003-12-20 Ben Maurer  <bmaurer@users.sourceforge.net>
39
40         [Revision 1.36, approved.  Martin]
41         * MonoSymbolTable.cs: Fewer StringBuilder allocs.
42
43 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
44
45         * MonoSymbolWriter.cs: Create ArrayLists only when needed.
46
47 2003-12-07 Ben Maurer  <bmaurer@users.sourceforge.net>
48
49         [Revision 1.35, approved.  Martin]
50         * MonoSymbolTable.cs: It is faster to do a linear search
51         than it is to make a hashtable. Even though the linear
52         search is O(n^2) while the hashtable is O(n), the allocation
53         cost for a hashtable is *very* high, especially when only
54         a few members will be added.
55
56 2003-09-06  Martin Baulig  <martin@ximian.com>
57
58         * MonoSymbolFile.cs: Removed debugging output.
59
60 2003-08-05  Martin Baulig  <martin@ximian.com>
61
62         * MonoSymbolTable.cs (MethodEntry.Index): New public field.
63
64 2003-06-27  Zoltan Varga  <vargaz@freemail.hu>
65
66         * MonoSymbolWriter.cs: Enable calling of DefineDocument multiple
67         times with the same URL.
68
69 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
70
71         * MonoSymbolFile.cs: Fix off-by-one error.
72
73 2003-03-22  Martin Baulig  <martin@ximian.com>
74
75         * MonoSymbolTable.cs (MethodEntry.LocalNamesAmbiguous): New public
76         field.  Specifies whether two local variables have the same name.
77
78 2003-03-13  Martin Baulig  <martin@ximian.com>
79
80         Added basic support for lexical scopes.  This is just to tell a
81         debugger that a local variable is only available in a specific
82         lexical scope and that another variable of the same name may exist
83         in another lexical scope.  See debugger/test/TestLexicalScope.cs
84         for examples.
85
86         * MonoSymbolTable.cs (LexicalScopeEntry): New class.
87         (LocalVariableEntry): Added `BlockIndex' field which specifies the
88         lexical scope of this variable.
89
90         * MonoSymbolWriter.cs (SourceBlock): Removed, we're now using
91         LexicalScopeEntry instead.
92
93 2003-02-22  Martin Baulig  <martin@ximian.com>
94
95         * MonoSymbolTable.cs: Incremented version number.
96
97 2003-02-22  Martin Baulig  <martin@ximian.com>
98
99         * MonoSymbolFile.cs (MonoSymbolFile.FindMethod): Fixed a bug.
100         (MonoSymbolFile.MethodLookup): New method.
101
102 2003-02-18  Martin Baulig  <martin@ximian.com>
103
104         * MonoSymbolFile.cs (MonoSymbolFile.GetMethod): Added overloaded
105         version which takes a MethodBase.
106
107 2003-02-18  Martin Baulig  <martin@ximian.com>
108
109         * MonoSymbolTable.cs (MethodIndexEntry): New public struct.
110
111         * MonoSymbolFile.cs (MonoSymbolFile.GetMethodByToken): New method.
112
113 2003-02-18  Martin Baulig  <martin@ximian.com>
114
115         * MonoSymbolFile.cs (MonoSymbolFile.Assembly): New public property.
116
117         * MonoSymbolTable.cs (MethodEntry.MethodBase): New public property.
118         (MethodEntry.LocalTypes): New public variable.
119
120 2003-02-18  Martin Baulig  <martin@ximian.com>
121
122         * MonoSymbolFile.cs (MethodEntry.ThisTypeIndex): Renamed to
123         ClassTypeIndex; provide this for all methods so we can get the
124         class of static methods.
125
126 2003-02-10  Nick Drochak  <ndrochak@gol.com>
127
128         * Mono.CSharp.Debugger.build: passing the /r using an 'arg' node works.
129         The <include> node wasn't getting to the compiler. This fixes build
130         breakage on cygwin.
131
132         * MonoSymbolFile.cs: Qualify which Min method. Fixes build breakage
133         on cygwin.
134
135 2003-02-09  Martin Baulig  <martin@ximian.com>
136
137         * MonoSymbolWriter.cs (MonoSymbolWriter.ctor): We don't need the
138         `mbuilder_array' anymore.
139
140 2003-02-09  Martin Baulig  <martin@ximian.com>
141
142         * MonoSymbolWriter.cs (SourceFile): Derive from SourceFileEntry.
143         (SourceBlock): We don't need source lines here.
144         (SourceMethod): We're always constructed with source info.
145
146         * MonoSymbolTable.cs: Added support for namespaces.
147         (NamespaceEntry): New struct.
148         (SourceFileEntry.DefineNamespace): New method.
149         (MethodEntry.BuildLineNumberTable): The table is already sorted,
150         so we don't need to do this here.
151
152 2003-02-09  Martin Baulig  <martin@ximian.com>
153
154         * IMonoSymbolWriter.cs: Ooops, I forgot to remove this.
155
156 2003-02-08  Martin Baulig  <martin@ximian.com>
157
158         * MonoSymbolDocumentWriter.cs: Removed.
159
160         * MonoSymbolWriter.cs (SourceFile): Implement ISymbolDocumentWriter.
161
162 2003-02-08  Martin Baulig  <martin@ximian.com>
163
164         * MonoSymbolFile.cs (GetMethodSource): New public method.
165         (FindMethod): Return the correct index.
166
167 2003-02-07  Martin Baulig  <martin@ximian.com>
168
169         * MonoSymbolFile.cs (Methods, Sources): New public properties.
170
171 2003-02-07  Martin Baulig  <martin@ximian.com>
172
173         * MonoSymbolFile.cs (MonoSymbolFile.ReadSymbolFile): New public
174         static method, returns null (without throwing an exception) if the
175         assembly doesn't have any debugging info.
176
177 2003-02-07  Martin Baulig  <martin@ximian.com>
178
179         * MonoSymbolWriter.cs (MonoSymbolWriter.Initialize): Removed the
180         custom initialization function.
181
182         * MonoSymbolTableWriter.cs: Removed; the code is now in
183         MonoSymbolFile.cs and MonoSymbolWriter.cs.
184
185 2003-02-07  Martin Baulig  <martin@ximian.com>
186
187         * MonoSymbolFile.cs: The symbol file is now a resource in the
188         assembly instead of a separate file.
189
190         * MonoSymbolTable.cs: Did a few more cleanups, sort the line
191         number table and remove duplicate line numbers.
192
193 2003-02-05  Martin Baulig  <martin@ximian.com>
194
195         Modified the symbol file format to speed up method looks by name
196         and cleaned this up a lot.
197
198         * MonoSymbolFile.cs: New public class.  This is now a public class
199         and writes and reads the symbol file.
200
201         * IMonoBinaryReader.cs: Removed.
202
203         * MonoSymbolTable.cs: Set version number to 29.
204
205 2003-01-17  Zoltan Varga  <vargaz@freemail.hu>
206
207         * MonoSymbolWriter.cs (OpenMethod): Make it work on constructors.
208
209 2002-10-13  Martin Baulig  <martin@gnome.org>
210
211         * MonoSymbolTable.cs: Set version number to 28.
212         (SourceFileEntry): Read the methods when they're needed.
213         (MethodSourceEntry): Made this a struct, not a class.
214
215 2002-10-13  Martin Baulig  <martin@gnome.org>
216
217         * MonoSymbolTable.cs: Set version number to 27.  Added a source
218         file table which is used to search a method by source file + line number.
219
220 2002-09-21  Martin Baulig  <martin@gnome.org>
221
222         * MonoSymbolTable.cs: Set version number to 26.  Removed all the dynamic
223         stuff, this library now just deals with the compiler generated symbol table.
224         The dynamic stuff is private between the JIT and the debugger.
225
226 2002-09-21  Martin Baulig  <martin@gnome.org>
227
228         * MonoSymbolTable.cs: Set version number to 25.  Added information about
229         local variables.
230
231 2002-09-20  Martin Baulig  <martin@gnome.org>
232
233         * MonoSymbolTable.cs: Set version number to 24.  Added a type index
234         table.  Write the type of a local variable or a parameter as an index
235         into this table.
236
237 2002-09-20  Martin Baulig  <martin@gnome.org>
238
239         * IMonoSymbolWriter.cs: Remove all the unused interfaces.
240
241 2002-09-20  Martin Baulig  <martin@gnome.org>
242
243         * MonoSymbolTable.cs: Set version number to 23, include the size
244         of a variable.
245
246 2002-09-20  Martin Baulig  <martin@gnome.org>
247
248         * MonoSymbolTable.cs: Set version number to 22.  Provide information
249         about parameters and local variables.
250
251 2002-09-20  Martin Baulig  <martin@gnome.org>
252
253         * IMonoSymbolWriter.cs: Use fullly qualified name for
254         System.Diagnostics.SymbolStore.ISymbolWriter rather than `using' this
255         namespace.  This allows us to use the name `ISymbolWriter' in our own
256         code.
257
258 2002-09-18  Martin Baulig  <martin@gnome.org>
259
260         * MonoSymbolTable.cs: Set version number to 21.  Encode the source file
261         as a 4-byte length field followed by the UTF8 encoded string.
262
263 2002-09-18  Martin Baulig  <martin@gnome.org>
264
265         * IMonoBinaryReader.cs: New interface.
266
267         * MonoSymbolTable.cs: Use IMonoBinaryReader instead of binary reader.
268
269 2002-09-16  Martin Baulig  <martin@gnome.org>
270
271         * MonoSymbolTable.cs: Set version number to 20.
272
273 2002-09-14  Martin Baulig  <martin@gnome.org>
274
275         * MonoSymbolWriter.cs, IMonoSymbolWriter.cs, MonoSymbolTableWriter.cs:
276         Make all classes and interfaces which don't need to be public internal.
277
278 2002-09-14  Martin Baulig  <martin@gnome.org>
279
280         * MonoSymbolTable.cs: Use only CLS-compliant types here, bumped version
281         number to 19.
282
283         * MonoSymbolTableReader.cs: Removed, this is now in the debugger.
284
285 2002-09-03  Martin Baulig  <martin@gnome.org>
286
287         * AssemblerWriterI386.cs, IAssemblerWriter.cs, MonoDwarfFileWriter.cs,
288         README, README.relocation-table, csharp-lang.[ch], gdb-csharp-support.patch,
289         gdb-variable-scopes.patch: Removed.
290
291 2002-09-03  Martin Baulig  <martin@gnome.org>
292
293         * MonoSymbolTableReader.cs (MonoSymbolTableReader.ImageFile): New
294         public property.
295
296         * MonoSymbolTable.cs: Bumped version number to 18.
297
298 2002-08-27  Martin Baulig  <martin@gnome.org>
299
300         * MonoSymbolTable.cs (MethodAddress): Removed `TrampolineAddress'.
301
302 2002-08-27  Martin Baulig  <martin@gnome.org>
303
304         * MonoSymbolTable.cs: Changed the file format in a way that allows us
305         open it read-only and to use a specially malloced area for all the
306         dynamic data.   
307
308 2002-08-25  Martin Baulig  <martin@gnome.org>
309
310         * MonoSymbolTableReader.cs: New file.  This is the reader for the
311         new symbol file format.
312
313 2002-08-24  Martin Baulig  <martin@gnome.org>
314
315         * MonoSymbolTable.cs, MonoSymbolTableWriter.cs: New files.  This
316         creates a binary application.dbg file which will be used by the
317         JIT to display source lines for exceptions.
318
319         * list.unix: Disabled the dwarf file writer in the build.
320
321 2002-08-23  Martin Baulig  <martin@gnome.org>
322
323         * MonoSymbolWriter.cs (MonoSymbolWriter.Initialize): Added
324         assembly name argument.  Since the symbol writer needs to read the
325         final assembly, we need to give it its full pathname.
326
327 2002-08-23  Martin Baulig  <martin@gnome.org>
328
329         * makefile.gnu, list.unix: Added.
330
331 2002-07-05  Martin Baulig  <martin@gnome.org>
332
333         * MonoDwarfFileWriter.cs: Added support for types in referenced assemblies.
334
335 2002-07-05  Martin Baulig  <martin@gnome.org>
336
337         * MonoDwarfFileWriter.cs: Added support for arrays.
338
339         * gdb-csharp-support.patch: Updated.
340
341 2002-06-29  Martin Baulig  <martin@gnome.org>
342
343         * MonoDwarfFileWriter.cs (DieInheritance): Make this actually work.
344
345 2002-06-29  Martin Baulig  <martin@gnome.org>
346
347         * MonoDwarfFileWriter.cs, MonoSymbolWriter.cs: Put all TAG_subprogram's into their
348         corresponding struct/class declarations.
349
350 2002-06-28  Martin Baulig  <martin@gnome.org>
351
352         * gdb-csharp-support.patch: Updated.
353
354 2002-06-28  Martin Baulig  <martin@gnome.org>
355
356         * MonoDwarfFileWriter.cs: Use a TAG_string_type when we're using GNU extensions.
357         Make static struct/class fields actually work.  Provide a TAG_typedef for struct's
358         and classes.
359
360 2002-05-30  Martin Baulig  <martin@gnome.org>
361
362         * IMonoSymbolWriter (IMonoSymbolWriter): Added custom `Initialize' method.
363
364         * MonoSymbolWriter.cs (Initialize): The ISymbolWriter's `Initialize' method
365         is no longer supported and throws an exception.
366         (Initialize (string, string[])): New custom initialization function.
367
368         * MonoDwarfFileWriter.cs (DwarfFileWriter): Added `string[] args' argument
369         to the constructor to pass command line arguments.
370
371         * gdb-csharp-support.patch: Updated for GDB 5.2.
372
373 2002-05-30  Martin Baulig  <martin@gnome.org>
374
375         * MonoSymbolWriter.cs (MonoSymbolWriter): The constructor now get's the
376         AssemblyBuilder's `methods' array as third argument.
377         (OpenMethod): Use this array to get the method builder rather than using an
378         interncall for it.
379         (get_method_builder): Removed this interncall.
380
381 2002-05-25  Martin Baulig  <martin@gnome.org>
382
383         * MonoDwarfFileWriter.cs: Finished the type rewrite, put back strings and arrays.
384
385 2002-05-24  Martin Baulig  <martin@gnome.org>
386
387         * IMonoSymbolWriter.cs (ISourceMethod): Added `FullName' and `Parameters'.
388         (ITypeHandle): New interface.
389
390         * DwarfFileWriter.cs: Largely reorganized the type writing code.  Types are
391         now represented by ITypeHandle objects which are stored in a per-dwarf-writer
392         hash table.  At the moment, all types still need to be in one compile unit due
393         to lacking support in gdb - but this new type code here already supports this.
394
395         * MonoSymbolWriter.cs: Moved all the subclasses to the top-level and made them
396         public, cleaned up the code, put everything into one compile unit.
397         (DefineLocalVariable): Added a version of this function which takes useful args.
398
399 2002-05-22  Martin Baulig  <martin@gnome.org>
400
401         * IMonoSymbolWriter.cs (IMonoSymbolWriter): Added `Sources' and `Methods'
402         properties.
403
404         * MonoDwarfFileWriter.cs (WriteSymbolTable): New public method.  Moved the
405         code that writes the "mono_line_numbers" section here from the LineNumberEngine.
406
407 2002-05-22  Martin Baulig  <martin@gnome.org>
408
409         * IMonoSymbolWriter.cs (IVariable): Replaced Token with `ISourceMethod Method'.
410
411         * MonoSymbolWriter.cs (MonoSymbolWriter): The constructor now has an additional
412         ModuleBuilder argument.
413         (OpenMethod): Immediately call the `get_method' interncall to get the MethodBase
414         from the token, then store the MethodBase instead of the token.  The token may
415         still change during the metadata library's fixup process.
416         (DoFixups): When the image has been written to disk, call the GetToken () method
417         on all MethodBuilders and all ConstructorBuilders to get the final metadata tokens.
418
419 2002-05-22  Martin Baulig  <martin@gnome.org>
420
421         * AssemblerWriterI386.cs: Don't use GNU extensions and produce assembler
422         output which is free of comments and extra whitespaces so that it's suitable
423         for `as -f'.
424
425 2002-05-22  Martin Baulig  <martin@gnome.org>
426
427         * IMonoSymbolWriter.cs (ISourceMethod): Replaced `MethodInfo MethodInfo' with
428         `MethodBase MethodBase' and added `Type ReturnType'.  We're now correctly
429         dealing with constructors and not crashing anymore.
430
431 2002-05-21  Martin Baulig  <martin@gnome.org>
432
433         * MonoDwarfFileWriter.cs: Write a special line number table which can be read
434         in by the metadata library to get line number information in backtraces.
435
436 2002-05-06  Martin Baulig  <martin@gnome.org>
437
438         * MonoSymbolWriter.cs (MonoSymbolWriter.Close): Use Assembly.LoadFrom (), not
439         AppDomain.Load () to load the assembly.
440
441 2002-04-26  Martin Baulig  <martin@gnome.org>
442
443         * gdb-csharp-support.patch: A patch for GDB (against the latest CVS version)
444         to implement C# support.
445
446         * csharp-lang.c, csharp-lang.h, csharp-mono-lang.c: Copy these into your GDB
447         source directory after applying the patch.
448
449 2002-04-26  Martin Baulig  <martin@gnome.org>
450
451         * MonoDwarfFileWriter.cs (DieInternalString): Removed.
452
453 2002-04-25  Martin Baulig  <martin@gnome.org>
454
455         * MonoDwarfFileWriter.cs: Reflect latest MonoString changes.
456
457 2002-04-13  Martin Baulig  <martin@gnome.org>
458
459         * IMonoSymbolWriter.cs (ISourceBlock): Added `Blocks' property and `AddBlock'
460         method to support nested blocks.
461
462         * MonoSymbolWriter.cs: Correctly handle nested blocks.
463
464         * MonoDwarfFileWriter.cs (DieMember): Provide info for all fields, not just for
465         public ones; also added DW_AT_accessibility.
466         (DieVariable): Reflected latest debug-symfile.c changes.
467
468 2002-04-12  Martin Baulig  <martin@gnome.org>
469
470         * gdb-variable-scopes.patch: A patch for GDB (against the latest CVS version)
471         to implement variable lifetimes.
472
473 2002-04-12  Martin Baulig  <martin@gnome.org>
474
475         * MonoDwarfFileWriter.cs (DieVariable): Provide info about the variable's
476         lifetime using DW_AT_begin_scope and a new baulig extension DW_AT_end_scope.
477
478 2002-03-29  Martin Baulig  <martin@gnome.org>
479
480         * AssemblerWriterI386.cs: Rewrote most of the string output function, do the
481         number->string conversion manually. It's now taking about 15 seconds to write
482         a symbol file for MCS, no longer more than a minute.
483
484         * MonoDwarfFileWriter.cs: Added some profiling code, speeded things up, fixed
485         a few bugs.
486
487 2002-03-25  Martin Baulig  <martin@gnome.org>
488
489         * MonoDwarfFileWriter.cs (CreateType): Return a `DieType'.
490         (RegisterType): Add the type to the type hash before creating dependency types
491         so we don't get recursion loops.
492         (RegisterPointerType): New func to register a "pointer to type" type.
493         (DieTypeDef, DiePointerType, DieArrayType, DieStringType, DieClassType): New
494         types; added support for strings, arrays and basic support for classes.
495         
496 2002-03-24  Martin Baulig  <martin@gnome.org>
497
498         * IMonoSymbolWriter.cs: Killed all methods in this interface, no longer needed.
499
500         * MonoSymbolWriter.cs (MonoSymbolWriter): The constructor now takes a string
501         argument which is the full pathname of the assembly - you must call Close()
502         after the assembly has been written to disk since the symbol writer needs to
503         load the finished assembly to get its metadata.
504
505         * MonoDwarfFileWriter.cs: Added support for enums and structs.
506         
507 2002-03-24  Martin Baulig  <martin@gnome.org>
508
509         * MonoDwarfFileWriter.cs: Added support for method parameters.
510
511 2002-03-24  Martin Baulig  <martin@gnome.org>
512
513         * IMonoSymbolWriter.cs (IMonoSymbolWriter): Removed my custom OpenMethod(),
514         we're now using the ISymbolWriter's method.
515         (IVariable): Added `byte[] Signature' property.
516
517         * MonoSymbolWriter.cs (SetAssembly): New method. This must be called before
518         Close(); the assembly parameter is the already-written assembly, ie. it must
519         contain the full metadata.
520         (OpenMethod): Only take the token argument and set MethodInfo later in DoFixups.
521         (SetMethodSourceRange): You must call this function to tell the symbol writer
522         in which source file the method is defined.
523         (DefineLocal): Store the signature in the local.
524         (DoFixups): Use two new interncalls to set the SourceMethod's MethodInfo field
525         and the LocalVariable's Type field.
526
527 2002-03-23  Martin Baulig  <martin@gnome.org>
528
529         * IMonoSymbolWriter.cs (ISourceBlock): New interface.
530         (ILocalVariable): Renamed this interface to IVariable.
531         (IVariable): Added Line, Type, Token.
532         (ILocalVariable, IMethodParameter): New interfaces, derive from IVariable.
533         (ISourceMethod): Added Blocks. Renamed FirstLine and LastLine to Start and End,
534         changed their type to ISourceLine. Removed CodeSize.
535         (ISourceLine): Renamed Line to Row, added Column. Added OffsetType and Offset.
536
537         * MonoDwarfFileWriter.cs (MonoDwarfFileWriter.DieLexicalBlock): New class.
538         (MonoDwarfFileWriter.DieMethodVariable): New class.
539
540         * MonoSymbolWriter.cs (OpenScope, CloseScope): Implemented.
541         Reflected latest IMonoSymbolWriter interface changes.
542
543 2002-03-20  Martin Baulig  <martin@gnome.org>
544
545         * IAssemblerWriter.cs: New interface.
546
547         * AssemblerWriterI386.cs: New class.
548
549         * MonoDwarfFileWriter.cs: Use the IAssemblerWriter interface to make this class
550         platform and assembler independent.
551
552 2002-03-20  Martin Baulig  <martin@gnome.org>
553
554         * IMonoSymbolWriter.cs (ISourceMethod): Added FirstLine, LastLine, CodeSize and
555         Token properties.
556
557         * MonoDwarfFileWriter.cs: Implemented line number support.
558
559 2002-03-19  Martin Baulig  <martin@gnome.org>
560
561         * IMonoSymbolWriter.cs (ISourceFile, ISourceMethod, ISourceLine, ILocalVariable):
562         New interfaces.
563
564         * IMonoSymbolWriter.cs (OpenMethod): Take a System.Reflection.MethodInfo, not
565         a string.
566
567 2002-03-19  Martin Baulig  <martin@gnome.org>
568
569         This is an implementation of the System.Diagnostics.SymbolStore.SymbolWriter
570         interface. It's still work in progress and not yet used anywhere.
571
572         There is some preliminary documentation in the source files and some more
573         docu in the README and README.relocation-table files.
574
575         * IMonoSymbolWriter.cs: New file.
576         * MonoDwarfFileWriter.cs: New file.
577         * MonoSymbolDocumentWriter.cs: New file.
578         * MonoSymbolWriter.cs: New file.
579
580         * README, README.relocation-table: Documentation.
581