Searched refs:analysis (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java43 * which are built from the opcode map output, and an analysis engine
106 int analysis = analyze(compiler, stepOpCodePos, stepIndex);
110 walker = createDefaultWalker(compiler, stepOpCodePos, lpi, analysis);
115 // walker.setAnalysis(analysis);
136 public static boolean isSet(int analysis, int bits) argument
138 return (0 != (analysis & bits));
141 public static void diagnoseIterator(String name, int analysis, Compiler compiler) argument
144 + Integer.toBinaryString(analysis) + ", "
145 + getAnalysisString(analysis));
150 * returned is based on an analysis o
980 createDefaultStepPattern( Compiler compiler, int opPos, MatchPatternIterator mpi, int analysis, StepPattern tail, StepPattern head) argument
1166 createDefaultWalker(Compiler compiler, int opPos, WalkingIterator lpi, int analysis) argument
1285 getAnalysisString(int analysis) argument
1369 hasPredicate(int analysis) argument
1374 isWild(int analysis) argument
1379 walksAncestors(int analysis) argument
1384 walksAttributes(int analysis) argument
1389 walksNamespaces(int analysis) argument
1394 walksChildren(int analysis) argument
1399 walksDescendants(int analysis) argument
1404 walksSubtree(int analysis) argument
1409 walksSubtreeOnlyMaybeAbsolute(int analysis) argument
1418 walksSubtreeOnly(int analysis) argument
1425 walksFilteredList(int analysis) argument
1430 walksSubtreeOnlyFromRootOrContext(int analysis) argument
1440 walksInDocOrder(int analysis) argument
1449 walksFollowingOnlyMaybeAbsolute(int analysis) argument
1458 walksUp(int analysis) argument
1463 walksSideways(int analysis) argument
1469 walksExtraNodes(int analysis) argument
1474 walksExtraNodesOnly(int analysis) argument
1485 isAbsolute(int analysis) argument
1490 walksChildrenOnly(int analysis) argument
1502 walksChildrenAndExtraAndSelfOnly(int analysis) argument
1512 walksDescendantsAndExtraAndSelfOnly(int analysis) argument
1522 walksSelfOnly(int analysis) argument
1533 walksUpOnly(int analysis) argument
1542 walksDownOnly(int analysis) argument
1551 walksDownExtraOnly(int analysis) argument
1560 canSkipSubtrees(int analysis) argument
1565 canCrissCross(int analysis) argument
1599 isNaturalDocOrder(int analysis) argument
1625 isNaturalDocOrder( Compiler compiler, int stepOpCodePos, int stepIndex, int analysis) argument
1723 isOneStep(int analysis) argument
1728 getStepCount(int analysis) argument
[all...]
H A DWalkingIteratorSorted.java71 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
74 super(compiler, opPos, analysis, shouldLoadWalkers);
90 * Tell if the nodeset can be walked in doc order, via static analysis.
189 * This function is used to perform some extra analysis of the iterator.
202 int analysis = getAnalysisBits();
203 if(WalkerFactory.isNaturalDocOrder(analysis))
211 // WalkerFactory.getAnalysisString(analysis));
70 WalkingIteratorSorted( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DAttributeIterator.java47 AttributeIterator(Compiler compiler, int opPos, int analysis) argument
50 super(compiler, opPos, analysis);
H A DBasicTestIterator.java75 protected BasicTestIterator(Compiler compiler, int opPos, int analysis) argument
78 super(compiler, opPos, analysis, false);
114 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
117 super(compiler, opPos, analysis, shouldLoadWalkers);
113 BasicTestIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DChildIterator.java47 * @param analysis Analysis bits of the entire pattern.
51 ChildIterator(Compiler compiler, int opPos, int analysis) argument
54 super(compiler, opPos, analysis, false);
H A DChildTestIterator.java56 ChildTestIterator(Compiler compiler, int opPos, int analysis) argument
59 super(compiler, opPos, analysis);
H A DMatchPatternIterator.java71 * @param analysis Analysis bits that give general information about the
76 MatchPatternIterator(Compiler compiler, int opPos, int analysis) argument
80 super(compiler, opPos, analysis, false);
91 if (0 != (analysis & (WalkerFactory.BIT_ROOT |
95 if (0 != (analysis
105 if (0 != (analysis
111 if (0 != (analysis
117 System.out.print("analysis: "+Integer.toBinaryString(analysis));
118 System.out.println(", "+WalkerFactory.getAnalysisString(analysis));
[all...]
H A DOneStepIteratorForward.java54 OneStepIteratorForward(Compiler compiler, int opPos, int analysis) argument
57 super(compiler, opPos, analysis);
H A DSelfIteratorNoPredicate.java45 * @param analysis Analysis bits.
49 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis) argument
52 super(compiler, opPos, analysis, false);
H A DOneStepIterator.java58 OneStepIterator(Compiler compiler, int opPos, int analysis) argument
61 super(compiler, opPos, analysis);
H A DWalkingIterator.java57 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
60 super(compiler, opPos, analysis, shouldLoadWalkers);
85 * Get the analysis bits for this walker, as defined in the WalkerFactory.
56 WalkingIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DDescendantIterator.java56 DescendantIterator(Compiler compiler, int opPos, int analysis) argument
60 super(compiler, opPos, analysis, false);
101 if((analysis & WalkerFactory.BIT_CHILD) != 0)
H A DLocPathIterator.java90 protected LocPathIterator(Compiler compiler, int opPos, int analysis) argument
93 this(compiler, opPos, analysis, true);
112 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
119 * Get the analysis bits for this walker, as defined in the WalkerFactory.
900 // * Get the analysis pattern built by the WalkerFactory.
902 // * @return The analysis pattern built by the WalkerFactory.
910 // * Set the analysis pattern built by the WalkerFactory.
912 // * @param a The analysis pattern built by the WalkerFactory.
1021 // * The analysis pattern built by the WalkerFactory.
111 LocPathIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DPermStat.java120 // compute reverse pointer analysis (takes long time for larger app)
121 ReversePtrsAnalysis analysis = new ReversePtrsAnalysis();
124 analysis.setHeapProgressThunk(new HeapProgressThunk() {
136 analysis.run();
140 err.println("liveness analysis may be inaccurate ...");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java578 ReversePtrsAnalysis analysis = new ReversePtrsAnalysis();
587 analysis.setHeapProgressThunk(thunk);
588 analysis.run();
H A DHSDB.java737 ReversePtrsAnalysis analysis = new ReversePtrsAnalysis();
738 analysis.setHeapProgressThunk(progress);
739 analysis.run();

Completed in 73 milliseconds