Index: doc/proposals/autogen.md
===================================================================
--- doc/proposals/autogen.md	(revision 0d41e600f9eaba42a581f99e01c510016cd805bb)
+++ doc/proposals/autogen.md	(revision 471613c376fbfbf8a755330d3bf606e824d1d757)
@@ -156,2 +156,34 @@
 ### Earlier Inline of Autogenerated Function
 A warning that comes up around autogenerated functions mentions static function called from inline functions. Although, this may not lead to problems, it does highlight some issues with the C initializer to Cforall constructor conversion.
+
+# Possible Solution and Suggestions
+Proposals for features to address some of the above issues.
+
+## Fine-Grained C Constructor Escapes
+Currently, the C escape for constructors only work at the top constructor. This suggestion moves the escape from the initialization context to the constructor call/initializer. (As an aside, ideally there would be no need for a C escape because Cforall would never overstep, but until then, we should try to have good escapes.)
+
+There are two ways to escape an constructor, so that Cforall always resolves it as a C initializer and not a Cforall constructor call. These are syntaxically tied to the initialization context, not the initializer, and semanitically apply to the top initializer.
+
+The syntax change could just move the `@` from the declaration to the initializer. Escaped initializers are written `@{ ... }`. This doesn't change the syntax for compound literals (`(TYPE)@{ ... }`), but it does change variable declarations (`DECL @= { ... };` becomes `DECL = @{ ... };`). Each escape means exactly that initizlizer must not be a constructor call.
+
+## Initializer/Constructor
+A different way to stop Cforall construcors from conflicting C initializers they could just use a different syntax. This could try to be a small change to the initalizer syntax, the minimum change to separate the two, or a more drastic change, that might enable new features (ex. `ctor_name{ ... }`, allowing for named constructors).
+
+This fixes the backwards compatablity issue, and removes the need for escapes, but does result in a larger syntax change for new calls. Separating initializers from constructors might also help with autogeneration and unexpected conflicts between autogen and manually defined functions.
+
+## Autogeneration Attributes
+Add attributes that control what routines are autogenerated. At its simplest `[[cfa_no_autogen]]` could be added to a SUE declaration to prevent any autogenerated routines. That could be it, but it does require manually define any functions that would be autogenerated routines, so you could have more selective attributes (or a single attribute with options) to disable only the autogeneration of particular routines.
+
+## The is_pod Assertion (Optimization)
+An assertion that a type is a "plain old data" type. A plain old data type is any type that is entirely defined by its bit pattern without any context used in its definition.
+
+This means:
++   Destroying an instance of the type is a no-op, no clean-up required.
++   Copying the type replicates the bit pattern in the new memory location.
++   Moving the type is equivilent to copying the type.
+
+The `is_pod` assertion says that a type is a plain old data type. This means that the type carries size and alignment, and from that you can implement the copy constructor, copy assignment and destructor using just memory operations. That means this is equivlent to `is_value` in terms of operations but the implementations of those functions can be different, and less data has to be passed around.
+
+One requirement that is not used is that all zeros a valid bit pattern for that type (or that and given bit pattern is valid). It could be added, and then you can also construct instances of the type by zero filling the storage. It is a `is_object` interface and considering the trend to from object to value, right now it seems it should at most be a secondary trait/assertion (ex. `is_pod0`).
+
+However, in both of these cases there is actually no new functionality added. These are existing operations. The advantage is it allows for more optimizations to be used. The function pointers do not need to be passed into polymorphic functions and some operations can be bundled together. Wheither these optimizations save significant about of time or memory has to be investigated.
