Searched refs:prune (Results 1 - 15 of 15) sorted by relevance

/openjdk9/jdk/make/src/classes/build/tools/jdwpgen/
H A DAbstractNamedNode.java40 void prune() { method in class:AbstractNamedNode
56 super.prune();
H A DConstantSetNode.java38 void prune() { method in class:ConstantSetNode
44 super.prune();
H A DConstantNode.java66 prune();
H A DSelectNode.java35 void prune() { method in class:SelectNode
36 super.prune();
H A DNode.java65 void prune() { method in class:Node
67 node.prune();
H A DMain.java82 root.prune();
/openjdk9/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/support/
H A DChainedCallSite.java116 final MethodHandle PRUNE = Lookup.findOwnSpecial(MethodHandles.lookup(), "prune", MethodHandle.class,
174 // First, prune the chain of invalidated switchpoints, we always do this
183 // prune() is allowed to invoke this method with invocation == null meaning we're just pruning the chain and not
193 // prune-and-invoke is used as the fallback for invalidated switchpoints. If a switchpoint gets invalidated, we
229 * @return a method handle for prune-and-invoke
231 private MethodHandle makePruneAndInvokeMethod(final MethodHandle relinkAndInvoke, final MethodHandle prune) { argument
232 // Bind prune to (this, relink)
233 final MethodHandle boundPrune = MethodHandles.insertArguments(prune, 0, this, relinkAndInvoke);
236 // Invoke prune, then invoke the call site target with original arguments
241 private MethodHandle prune(fina method in class:ChainedCallSite
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/
H A DAMD64ZapRegistersOp.java25 import static org.graalvm.compiler.lir.amd64.AMD64SaveRegistersOp.prune;
80 return prune(doNotSave, zappedRegisters);
H A DAMD64SaveRegistersOp.java115 return prune(doNotSave, savedRegisters);
118 static int prune(Set<Register> toRemove, Register[] registers) { method in class:AMD64SaveRegistersOp
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCSaveRegistersOp.java124 return prune(doNotSave, savedRegisters);
127 static int prune(Set<Register> toRemove, Register[] registers) { method in class:SPARCSaveRegistersOp
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPolicyNodeImpl.java245 void prune(int depth) { method in class:PolicyNodeImpl
249 // if we have no children, we can't prune below us...
256 node.prune(depth);
257 // now that we've called prune on the child, see if we should
H A DPolicyChecker.java521 rootNode.prune(certIndex);
611 // so we need to prune the tree
612 rootNode.prune(certIndex);
832 rootNode.prune(certIndex);
898 rootNode.prune(certIndex);
/openjdk9/common/bin/
H A Dcompare.sh1029 EXECS=$(cd $THIS_DIR && $FIND . -name db -prune -o -type f -perm -100 \! \
/openjdk9/hotspot/src/share/vm/opto/
H A Dloopnode.cpp1756 bool prune = !keep_one || keep != NULL; local
1760 if (prune && sfpts != NULL) {
3435 // Check for dead uses. Aggressively prune such junk. It might be
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DTypes.java2902 candidates = prune(candidates2);
2908 public List<MethodSymbol> prune(List<MethodSymbol> methods) { method in class:Types

Completed in 150 milliseconds