direct weaving/escape-analysis

This commit is contained in:
Arndt Brenschede 2019-06-23 18:57:46 +02:00
parent 661a09817a
commit 9f6878f891
9 changed files with 482 additions and 45 deletions

View file

@ -40,6 +40,13 @@ public class MicroCache extends ByteDataWriter
super( ab );
}
public final static MicroCache emptyNonVirgin = new MicroCache( null );
static
{
emptyNonVirgin.virgin = false;
}
public static MicroCache emptyCache()
{
return new MicroCache( null ); // TODO: singleton?