2004-09-01 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / mcs / TODO
index 85d989bd7fcbd27b2a6229adfc9da4dd04b2535b..742c14065264b83599968d793199593c2e99ced2 100644 (file)
-* Emitcontext
+The information on this file is mostly outdated, and its kept here for
+historical reasons
 
-       Do we really need to instanciate this variable all the time?
+Error Reporting:
+----------------
 
-       It could be static for all we care, and just use it for making
-       sure that there are no recursive invocations on it.
+       * Make yyerror show a nice syntax error, instead of the current mess.
 
-* Static-ization
+Iterators
+---------
 
-       Since AppDomain exists, maybe we can get rid of all the stuff
-       that is part of the `compiler instance' and just use globals
-       everywhere.
+       * Reset should throw not implemented now.
 
-* FindMembers
+Optimization ideas
+------------------
 
-       Move our utility FindMembers from TypeContainer to Decl, because interfaces
-       are also scanned with it.
+       Currently when we build a type cache, it contains private members,
+       internal members, and internal protected members;   We should trim
+       these out, as it shows up on the profile.
 
-* Visibility
+       We create too many Arraylists;  When we know the size, we should create
+       an array;
 
-       I am not reporting errors on visibility yet.
+       During parsing we use arraylists to accumulate data, like this:
 
-* Enumerations
+               thing:
+               
+               thing_list
+                       : thing { $$ =new ArrayList (); $$.Add ($1); }
+                       | thing_list thing { ArrayList a = $1; a.Add ($2); $$ = a; }
 
-       Currently I am not resolving enumerations.
+       We probably could start using "Pairs" there:
 
-       Either I track them with `RecordEnum' as I do with classes,
-       structs and interfaces or I rewrite the code to visit type
-       containers and `walk' the enums with this process. 
+               thing_list
+                       : thing { $$ = new Pair ($1, null); }
+                       | thing_list thing { Pair p = $1; $$ = new Pair ($2, $1); }
 
-* Known problems:
 
-  Cast expressions
+EmitContext.ResolveTypeTree
+---------------------------
 
-       They should should use:
+       We should investigate its usage.  The problem is that by default
+       this will be set when calling FindType, that triggers a more expensive
+       lookup.
 
-               OPEN_PARENS type CLOSE_PARENS
+       I believe we should pass the current EmitContext (which has this turned off
+       by default) to ResolveType/REsolveTypeExpr and then have the routines that
+       need ResolveType to pass null as the emit context.
 
-       instead of the current production which is wrong, because it
-       only handles a few cases.
+DeclareLocal audit
+------------------
 
-       Complex casts like:
+       DeclareLocal is used in various statements.  The audit should be done
+       in two steps:
 
-               Array r = (string []) object
+               * Identify all the declare locals.
 
-       Wont be parsed.
-  
-* Interfaces
+               * Identify its uses.
 
-       For indexers, the output of ix2.cs is different from our
-       compiler and theirs.  They use a DefaultMemberAttribute, which
-       I have yet to figure out:
+               * Find if we can make wrapper functions for all of them.
 
-       .class interface private abstract auto ansi INTERFACE
-       {
-               .custom instance void [mscorlib]System.Reflection.DefaultMemberAttribute::.ctor(string) 
-               = ( 01 00 04 49 74 65 6D 00 00 )                      // ...Item..
-               ...
-       }
+       Then we can move DeclareLocal into a helper class.
 
-* Interface indexers
+       This is required to fix foreach in iterators.
 
-       I have not figured out why the Microsoft version puts an
-       `instance' attribute, and I am not generating this `instance' attribute.
+Large project:
+--------------
 
-       Explanation: The reason for the `instance' attribute on
-       indexers is that indexers only apply to instances
+       Drop FindMembers as our API and instead extract all the data
+       out of a type the first time into our own datastructures, and
+       use that to navigate and search the type instead of the
+       callback based FindMembers.     
 
-* Constructors
+       Martin has some some of this work with his TypeHandle code
+       that we could use for this.
 
-       Currently it calls the parent constructor before initializing fields.
-       It should do it the other way around.
+Ideas:
+------
 
-* Use of EmitBranchable
+       Instead of the hack that *knows* about System.Object not having any children classes,
+       we should just make it simple for a probe to know that there is no need for it.
 
-       Currently I use brfalse/brtrue in the code for statements, instead of
-       using the EmitBranchable function that lives in Binary
+Dead Code Elimination bugs:
+---------------------------
 
-* Create an UnimplementedExpcetion
+       I should also resolve all the children expressions in Switch, Fixed, Using.
 
-       And use that instead of plain Exceptions to flag compiler errors.
+Major tasks:
+------------
+       Properties and 17.6.3: Finish it.
 
-* ConvertImplicit
+readonly variables and ref/out
+       
+BUGS
+----
 
-       Currently ConvertImplicit will not catch things like:
+* Break/Continue statements
 
-       - IntLiteral in a float context to generate a -FloatLiteral.
-       Instead it will perform an integer load followed by a conversion.
+       A finally block should reset the InLoop/LoopBegin/LoopEnd, as
+       they are logically outside the scope of the loop.
 
-* In class.cs: Method.Define
+* Break/continue part 2.
 
-       Need to use FindMembers to lookup the member for reporting
-       whether a new is needed or not.  
+       They should transfer control to the finally block if inside a try/catch
+       block.
 
-* virtual-method.cs breaks
+* Method Registration and error CS111
 
-       It breaks on the call to: new B ();
+       The way we use the method registration to signal 111 is wrong.
+       
+       Method registration should only be used to register methodbuilders,
+       we need an alternate method of checking for duplicates.
 
-       Where B is a class defined in the source code, my guess is that
-       the look for ".ctor" fails
+*
+> // CSC sets beforefieldinit
+> class X {
+>   // .cctor will be generated by compiler
+>   public static readonly object O = new System.Object ();
+>   public static void Main () {}
+> }
+> 
 
-* Foreach on structure returns does not work
+PENDING TASKS
+-------------
 
-       I am generating invalid code instead of calling ldarga for the
-       structure, I am calling ldarg:
+* Merge test 89 and test-34
 
-       struct X {
-               public IEnumerator GetEnumerator ();
-       }
+* Code cleanup
 
-       X x;
+       The information when registering a method in InternalParameters
+       is duplicated, you can always get the types from the InternalParameters
 
-       foreach (object a in x){
-               ...
-       }
+* Emit modreq for volatiles
 
-       I need to get the address of that bad boy
+       Handle modreq from public apis.
 
-* Using Alias
+* Merge tree.cs, rootcontext.cs
 
-       Need to reset the aliases for each compilation unit, so an
-       alias defined in a file does not have any effect on another one:
+OPTIMIZATIONS
+-------------
 
-       File.cs
-       =======
-       namespace A {
-               using X = Blah;
+* User Defined Conversions is doing way too many calls to do union sets that are not needed
 
-               class Z : X {           <-- This X is `Blah' 
-       }
+* Add test case for destructors
 
-       File2.cs
-       namespace {
-               class Y : X {           <-- This X Is not `Blah' 
-               }
-       }
+* Places that use `Ldelema' are basically places where I will be
+  initializing a value type.  I could apply an optimization to 
+  disable the implicit local temporary from being created (by using
+  the method in New).
 
-       I think we can implement Aliases by having an `Alias' context in all
-       the toplevel TypeContainers of a compilation unit.  The children typecontainers
-       just chain to the parents to resolve the information.
+* Dropping TypeContainer as an argument to EmitContext
 
-       The driver advances the Alias for each file compiled, so that each file
-       has its own alias set.
+       My theory is that I can get rid of the TypeBuilder completely from
+       the EmitContext, and have typecasts where it is used (from
+       DeclSpace to where it matters).  
+
+       The only pending problem is that the code that implements Aliases
+       is on TypeContainer, and probably should go in DeclSpace.
 
 * Tests
 
        Write tests for the various reference conversions.  We have
        test for all the numeric conversions.
 
-* Handle destructors specially
+* Optimizations: variable allocation.
 
-       Turn ~X () { a () } into:
-       void Finalize () { try { a (); } finally { base.Finalize (); } }
+       When local variables of a type are required, we should request
+       the variable and later release it when we are done, so that
+       the same local variable slot can be reused later on.
 
-* Handle volatile
+* Add a cache for the various GetArrayMethod operations.
 
-* Support Re-Throw exceptions:
+* MakeUnionSet Callers
 
-       try {
-               X ();
-       } catch (SomeException e){
-               LogIt ();
-               throw;
-       }
+       If the types are the same, there is no need to compute the unionset,
+       we can just use the list from one of the types.
 
-* Remove the tree dumper
+* Factor the lookup code for class declarations an interfaces
+  (interface.cs:GetInterfaceByName)
 
-       And make all the stuff which is `public readonly' be private unless
-       required.
+RECOMMENDATIONS
+---------------
 
 * Use of lexer.Location in the parser
 
 
        We need to change that to use this pattern:
 
-       TOKEN { $$ = lexer.Location } nt TERMINAL nt TERMINAL nt3 {
-               $$ = new Blah ($3, $5, $7, (Location) $2);
+       TOKEN { oob_stack.Push (lexer.Location) } nt TERMINAL nt TERMINAL nt3 {
+               $$ = new Blah ($3, $5, $7, (Location) oob_stack.Pop ());
        }
 
-       Notice how numbering of the arguments changes, as the { $$ =
-       lexer.Location } takes up a number
-
-* Method Names
-
-       Method names could be; `IFACE.NAME' in the method declaration,
-       stating that they implement a specific interface method.
-
-       We currently fail to parse it.
-
-* Namespaces
-
-       Apparently:
-
-               namespace X {
-               }
-
-               namespace X {
-               }
-
-       Is failing to create a single namespace
-
-* Arrays
-
-       We need to make sure at *compile time* that the arguments in
-       the expression list of an array creation are always positive.
-
-* Fix the new parameter mess that we introduced to support ref/outo
-
-* Reducer and -Literal
-
-       Maybe we should never handle -Literal in Unary expressions and let
-       the reducer take care of it always?
-
-* Implement dead code elimination in statement.cs
-
-       It is pretty simple to implement dead code elimination in 
-       if/do/while
-
-* Implement short circuit evaluation.
-
-       Currently our and/or operations do not implement short circuit
-       evaluation.  
-
-* Foreach and arrays
-
-       Support foreach (T t in Array)
-
-       And optimize to deal with the array rather than getting the enumerator
-       out of it.
-
-* Indexer bugs:
-
-       the following wont work:
-
-       x [0] = x [1] = N
-
-       if x has indexers, the value of x [N] set is set to void.  This needs to be
-       fixed.
-
-* Preincrement/pre-decrement is not working on array elements. 
-
-       We are catching this now.  But it does not work.
-
-* local_variable_declaration
-
-       Not sure that this grammar is correct, we might have to
-       resolve this during semantic analysis.
-
-* Optimizations
-
-       In Indexers and Properties, probably support an EmitWithDup
-       That emits the code to call Get and then leaves a this pointer
-       in the stack, so that later a Store can be emitted using that
-       this pointer (consider Property++ or Indexer++)
+       Notice how numbering of the arguments changes as the
+       { oob_stack.Push (lexer.Location) } takes a "slot"  in the productions.
 
-* Static flow analysis
 
-       Required to warn about reachability of code and definite
-       assignemt as well as missing returns on functions.