Searched refs:Compiler (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compiler.hpp30 // There is one instance of the Compiler per CompilerThread.
32 class Compiler: public AbstractCompiler { class in inherits:AbstractCompiler
41 Compiler();
42 ~Compiler();
H A Dc1_Compiler.cpp45 volatile int Compiler::_runtimes = uninitialized;
47 Compiler::Compiler() { function in class:Compiler
51 Compiler::~Compiler() {
56 void Compiler::initialize_all() {
72 void Compiler::initialize() {
80 BufferBlob* Compiler::build_buffer_blob() {
92 void Compiler::compile_method(ciEnv* env, ciMethod* method, int entry_bci) {
115 void Compiler
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DAttributeIterator.java26 import com.sun.org.apache.xpath.internal.compiler.Compiler;
41 * @param compiler A reference to the Compiler that contains the op map.
47 AttributeIterator(Compiler compiler, int opPos, int analysis)
H A DChildIterator.java28 import com.sun.org.apache.xpath.internal.compiler.Compiler;
44 * @param compiler A reference to the Compiler that contains the op map.
51 ChildIterator(Compiler compiler, int opPos, int analysis)
H A DChildTestIterator.java29 import com.sun.org.apache.xpath.internal.compiler.Compiler;
50 * @param compiler A reference to the Compiler that contains the op map.
56 ChildTestIterator(Compiler compiler, int opPos, int analysis)
H A DOneStepIteratorForward.java28 import com.sun.org.apache.xpath.internal.compiler.Compiler;
48 * @param compiler A reference to the Compiler that contains the op map.
54 OneStepIteratorForward(Compiler compiler, int opPos, int analysis)
H A DSelfIteratorNoPredicate.java27 import com.sun.org.apache.xpath.internal.compiler.Compiler;
42 * @param compiler A reference to the Compiler that contains the op map.
49 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis)
H A DWalkingIteratorSorted.java27 import com.sun.org.apache.xpath.internal.compiler.Compiler;
58 * into the Compiler to create predicate expressions.
60 * @param compiler The Compiler which is creating
71 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
H A DBasicTestIterator.java29 import com.sun.org.apache.xpath.internal.compiler.Compiler;
66 * into the Compiler to create predicate expressions.
68 * @param compiler The Compiler which is creating
75 protected BasicTestIterator(Compiler compiler, int opPos, int analysis)
101 * into the Compiler to create predicate expressions.
103 * @param compiler The Compiler which is creating
114 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
H A DUnionPathIterator.java31 import com.sun.org.apache.xpath.internal.compiler.Compiler;
149 * into the Compiler to create predicate expressions.
151 * @param compiler The Compiler which is creating
158 public UnionPathIterator(Compiler compiler, int opPos)
172 * @param compiler The Compiler which is creating
181 public static LocPathIterator createUnionIterator(Compiler compiler, int opPos)
304 * @param compiler The Compiler which is creating
313 Compiler compiler, int opPos) throws javax.xml.transform.TransformerException
323 * @param compiler The Compiler which is creating
331 protected void loadLocationPaths(Compiler compile
[all...]
H A DFilterExprWalker.java32 import com.sun.org.apache.xpath.internal.compiler.Compiler;
58 * @param compiler non-null reference to the Compiler that is constructing.
64 public void init(Compiler compiler, int opPos, int stepType)
H A DOneStepIterator.java31 import com.sun.org.apache.xpath.internal.compiler.Compiler;
52 * @param compiler A reference to the Compiler that contains the op map.
58 OneStepIterator(Compiler compiler, int opPos, int analysis)
H A DWalkingIterator.java31 import com.sun.org.apache.xpath.internal.compiler.Compiler;
44 * into the Compiler to create predicate expressions.
46 * @param compiler The Compiler which is creating
57 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
H A DWalkerFactory.java30 import com.sun.org.apache.xpath.internal.compiler.Compiler;
63 WalkingIterator lpi, Compiler compiler, int stepOpCodePos)
98 WalkingIterator lpi, Compiler compiler, int stepOpCodePos, int stepIndex)
141 public static void diagnoseIterator(String name, int analysis, Compiler compiler)
161 Compiler compiler, int opPos,
303 Compiler compiler, int stepOpCodePos)
402 static boolean functionProximateOrContainsProximate(Compiler compiler,
432 static boolean isProximateInnerExpr(Compiler compiler, int opPos)
475 public static boolean mightBeProximate(Compiler compiler, int opPos, int stepType)
559 Compiler compile
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DCompiler.java29 * The {@code Compiler} class is provided to support Java-to-native-code
30 * compilers and related services. By design, the {@code Compiler} class does
47 public final class Compiler { class
48 private Compiler() {} // don't make instances method in class:Compiler
128 * Cause the Compiler to resume operation.
133 * Cause the Compiler to cease operation.
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncLast.java28 import com.sun.org.apache.xpath.internal.compiler.Compiler;
47 public void postCompileStep(Compiler compiler)
H A DFunction.java30 import com.sun.org.apache.xpath.internal.compiler.Compiler;
142 public void postCompileStep(Compiler compiler)
H A DFuncPosition.java29 import com.sun.org.apache.xpath.internal.compiler.Compiler;
46 public void postCompileStep(Compiler compiler)
/openjdk7/jdk/make/java/java/
H A DFILES_c.gmk32 Compiler.c \
/openjdk7/hotspot/src/share/vm/opto/
H A Dphase.hpp43 Compiler, // Top-level compiler phase enumerator in enum:Phase::PhaseNumber
/openjdk7/langtools/test/tools/javac/diags/
H A DExample.java219 Compiler c = Compiler.getCompiler(runOpts, verbose);
296 abstract static class Compiler { class in class:Example
298 Compiler getCompiler(List<String> opts, boolean verbose);
302 public Compiler getCompiler(List<String> opts, boolean verbose) {
325 static Compiler getCompiler(List<String> opts, boolean verbose) {
332 protected Compiler(boolean verbose) { method in class:Example.Compiler
355 static class Jsr199Compiler extends Compiler {
435 static class SimpleCompiler extends Compiler {
485 static class BackdoorCompiler extends Compiler {
[all...]
H A DArgTypeCompilerFactory.java44 * Compiler factory for instances of Example.Compiler that use custom
49 class ArgTypeCompilerFactory implements Example.Compiler.Factory {
50 // Same code as Example.Compiler.DefaultFactory, but the names resolve differently
51 public Example.Compiler getCompiler(List<String> opts, boolean verbose) {
79 static class Jsr199Compiler extends Example.Compiler {
121 static class SimpleCompiler extends Example.Compiler {
155 static class BackdoorCompiler extends Example.Compiler {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DLexer.java40 private Compiler m_compiler;
82 Lexer(Compiler compiler, PrefixResolver resolver,
/openjdk7/jdk/make/common/shared/
H A DCompiler-msvc.gmk27 # MSVC Compiler settings
41 COMPILER_NAME=Unknown MSVC Compiler
47 # Compiler version and type (Always get word after "Version")
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPath.java35 import com.sun.org.apache.xpath.internal.compiler.Compiler;
155 * Compiler and compiles the expression.
177 Compiler compiler = new Compiler(errorListener, locator, m_funcTable);
203 * Compiler and compiles the expression.
226 Compiler compiler = new Compiler(errorListener, locator, m_funcTable);
255 * Compiler and compiles the expression.

Completed in 56 milliseconds

12