Moves JCL report generator into separate package. Adds hack that allows

to obtain JavaCompiler (but yet it won't compile).
This commit is contained in:
konsoletyper 2014-03-16 01:54:47 +04:00
parent 4cc484729f
commit e35f9b54b5
13 changed files with 72 additions and 11 deletions

View File

@ -71,7 +71,7 @@
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<mainClass>org.teavm.classlib.impl.JCLComparisonBuilder</mainClass> <mainClass>org.teavm.classlib.impl.report.JCLComparisonBuilder</mainClass>
<arguments> <arguments>
<argument>java.lang</argument> <argument>java.lang</argument>
<argument>java.lang.annotation</argument> <argument>java.lang.annotation</argument>

View File

@ -38,5 +38,7 @@ public class JCLPlugin implements TeaVMPlugin {
"loadServices", ValueType.object("java.lang.Class"), "loadServices", ValueType.object("java.lang.Class"),
ValueType.arrayOf(ValueType.object("java.lang.Object")))); ValueType.arrayOf(ValueType.object("java.lang.Object"))));
host.add(loadServicesMethod, serviceLoaderSupp); host.add(loadServicesMethod, serviceLoaderSupp);
JavacSupport javacSupport = new JavacSupport();
host.add(javacSupport);
} }
} }

View File

@ -0,0 +1,53 @@
/*
* Copyright 2014 Alexey Andreev.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.teavm.classlib.impl;
import org.teavm.model.*;
import org.teavm.model.instructions.ConstructInstruction;
import org.teavm.model.instructions.ExitInstruction;
import org.teavm.model.instructions.InvocationType;
import org.teavm.model.instructions.InvokeInstruction;
/**
*
* @author Alexey Andreev <konsoletyper@gmail.com>
*/
public class JavacSupport implements ClassHolderTransformer {
@Override
public void transformClass(ClassHolder cls, ClassReaderSource innerSource) {
if (cls.getName().equals("javax.tools.ToolProvider")) {
MethodHolder method = cls.getMethod(new MethodDescriptor("getSystemJavaCompiler",
ValueType.object("javax.tools.JavaCompiler")));
Program program = new Program();
BasicBlock block = program.createBasicBlock();
program.createVariable();
Variable var = program.createVariable();
ConstructInstruction construct = new ConstructInstruction();
construct.setReceiver(var);
construct.setType("com.sun.tools.javac.api.JavacTool");
block.getInstructions().add(construct);
InvokeInstruction init = new InvokeInstruction();
init.setInstance(var);
init.setType(InvocationType.SPECIAL);
init.setMethod(new MethodReference("com.sun.tools.javac.api.JavacTool", "<init>", ValueType.VOID));
block.getInstructions().add(init);
ExitInstruction exit = new ExitInstruction();
exit.setValueToReturn(var);
block.getInstructions().add(exit);
method.setProgram(program);
}
}
}

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
/** /**
* *

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
import java.io.*; import java.io.*;
import java.net.URL; import java.net.URL;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
import java.util.Map; import java.util.Map;
import org.objectweb.asm.*; import org.objectweb.asm.*;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
/** /**
* *

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
/** /**
* *

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
/** /**
* *

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.teavm.classlib.impl; package org.teavm.classlib.impl.report;
/** /**
* *

View File

@ -291,7 +291,13 @@ public class DependencyChecker implements DependencyInfo {
missingMethods.putIfAbsent(methodRef, stack); missingMethods.putIfAbsent(methodRef, stack);
} }
if (method != null) { if (method != null) {
initClass(methodRef.getClassName(), stack); final DependencyStack callerStack = stack;
executor.execute(new Runnable() {
@Override public void run() {
initClass(dep.getReference().getClassName(), callerStack);
}
});
} }
return dep; return dep;
} }