* MethodTable.cs: Add method to Check if all methods have been defined, set reference...
[mono.git] / mcs / ilasm / codegen / ChangeLog
index 85dc58a7bb1ad2ed0646e45611b0869e6bcc9f86..ab6b0ecd3e82d80ca00c4f8e748413da750a20e2 100644 (file)
@@ -1,3 +1,126 @@
+2003-03-17 Jackson Harper <jackson@latitudegeo.com>
+
+       * MethodTable.cs: Add method to Check if all methods have been defined, set referenced methods properties
+       when defining them
+       * FieldTable.cs: Add method to check if all fields have been defined, set referenced fields properties
+       when defining them
+       * ClassTable.cs: Make sure all methods and fields are defined.
+
+2003-03-16 Jackson Harper <jackson@latitudegeo.com>
+
+       * MethodTable.cs: Fire events when methods are defined and referenced
+
+2003-03-15 Jackson Harper <jackson@latitudegeo.com>
+
+       * ClassTable.cs: Classes now store field tables
+       * CodeGen.cs: Add methods to add fields and get field references
+
+2003-03-15 Jackson Harper <jackson@latitudegeo.com>
+
+       * FieldTable.cs: New file, holds a classes fields
+
+2003-03-15 Jackson Harper <jackson@latitudegeo.com>
+
+       * InstrTable.cs: Add FieldOp instructions
+
+2003-03-15 Jackson Harper <jackson@latitudegeo.com>
+
+       * InstrTable.cs: Add ldstr instruction
+
+2003-03-15 Jackson Harper <jackson@latitudegeo.com>
+
+       * CodeGen.cs: Add method to get method references.
+       * MethodTable.cs: Complete GetReference method
+       * InstrTable.cs: Add MethodOps (instructions that take a method ref param)
+
+2003-03-14 Jackson Harper <jackson@latitudegeo.com>
+
+       * InstrTable.cs: Add TypeOps (instructions that take a type param)
+
+2003-03-14 Jackson Harper <jackson@latitudegeo.com>
+
+       * InstrTable.cs: Add IntOps (instructions that take an integer param)
+
+2003-03-13 Jackson Harper <jackson@latitudegeo.com>
+
+       * InstrTable.cs: Fix instructions that have dots in their name
+
+2003-03-13 Jackson Harper <jackson@latitudegeo.com>
+
+       * CodeGen.cs: Add code buffer for il instructions when a new method is added.
+       * InstrTable.cs: New file, this is a table of all the instructions (just simple 
+       instructions right now)
+
+2003-03-13 Jackson Harper <jackson@latitudegeo.com>
+
+       * CodeGen.cs: Set current method when a new method is added.
+
+2003-03-12 Jackson Harper <jackson@latitudegeo.com>
+
+       * ClassTable.cs: Add Method tables to Class tables, add method to get a 
+       class's method table.
+       * CodeGen.cs: Add Method to add methods :p
+       * MethodTable.cs: Add file, this class is used to add methods to a class.
+
+2003-03-11 Jackson Harper <jackson@latitudegeo.com>
+
+       * TypeRef.cs: New file, used for pairing types and their names.
+
+2003-03-09 Jackson Harper <jackson@latitudegeo.com>
+
+       * ExternTable.cs: Do not verify the existence of external types
+
+2003-03-08: Jackson Harper <jackson@latitudegeo.com>
+
+       * CodeGen.cs: Add ExternTable property
+       * ExternTable.cs: New file, this will is used for pulling 
+       types and methods from external assemblies.
+
+2003-03-06 Jackson Harper <jackson@latitudegeo.com>
+
+       * ClassTable.cs, CodeGen.cs: Add methods to allow types to inherit from another type.
+
+2003-03-06 Jackson Harper <jackson@latitudegeo.com>
+
+       * ClassTable.cs: Add method to check for undefined types
+
+2003-03-06 Jackson Harper <jackson@latitudegeo.com>
+
+       * CodeGen.cs: Use class table for adding type definitions
+       * ClassTable.cs: Return ClassDef when defining types
+       
+2003-03-06 Jackson Harper <jackson@latitudegeo.com>
+
+       * ClassTable.cs: Add method for adding class definitions to the 
+       the table.
+
+2003-03-6 Jackson Harper <jackson@latitudegeo.com>
+
+       * CodeGen.cs: Reconfigure to work with new PEAPI emission system
+
+2003-03-6 Jackson Harper <jackson@latitudegeo.com>
+
+       * ClassTable.cs: Add file, this is a 'table' for storing classes
+       * Location.cs: Add file, this will eventually be used for marking
+       locations in IL files
+
+2003-02-10 Jackson Harper <jackson@latitudegeo.com>
+
+       * Method.cs: Add method to set parameters, 
+              set parameters when defining type
+       * Class.cs: Fix very silly bug in GetMethod method
+       
+
+2003-02-09 Jackson Harper <jackson@latitudegeo.com>
+
+       * Class.cs: Resolve Methods before emiting
+       * InstrBase.cs: Take a Class instead of CodeGen when emiting
+       * Method.cs: Replace MethodInfo property with MethodBuilder property,
+               Add resolve method
+       * Instructions.cs: Take Class instead of CodeGen when emitting, 
+               get member methods from Class.
+       * TypeManager.cs: Add set indexer
+
 2003-02-09 Jackson Harper <jackson@latitudegeo.com>
 
        * Instructions.cs: Use TypeManager to lookup types