當前位置: 首頁>>代碼示例>>Java>>正文


Java DeoptimizationReason.UnreachedCode方法代碼示例

本文整理匯總了Java中jdk.vm.ci.meta.DeoptimizationReason.UnreachedCode方法的典型用法代碼示例。如果您正苦於以下問題:Java DeoptimizationReason.UnreachedCode方法的具體用法?Java DeoptimizationReason.UnreachedCode怎麽用?Java DeoptimizationReason.UnreachedCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jdk.vm.ci.meta.DeoptimizationReason的用法示例。


在下文中一共展示了DeoptimizationReason.UnreachedCode方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: tryUseTrappingNullCheck

import jdk.vm.ci.meta.DeoptimizationReason; //導入方法依賴的package包/類
private static void tryUseTrappingNullCheck(AbstractDeoptimizeNode deopt, Node predecessor, DeoptimizationReason deoptimizationReason, JavaConstant speculation, long implicitNullCheckLimit) {
    if (deoptimizationReason != DeoptimizationReason.NullCheckException && deoptimizationReason != DeoptimizationReason.UnreachedCode) {
        return;
    }
    if (speculation != null && !speculation.equals(JavaConstant.NULL_POINTER)) {
        return;
    }
    if (predecessor instanceof AbstractMergeNode) {
        AbstractMergeNode merge = (AbstractMergeNode) predecessor;
        if (merge.phis().isEmpty()) {
            for (AbstractEndNode end : merge.cfgPredecessors().snapshot()) {
                checkPredecessor(deopt, end.predecessor(), deoptimizationReason, implicitNullCheckLimit);
            }
        }
    } else if (predecessor instanceof AbstractBeginNode) {
        checkPredecessor(deopt, predecessor, deoptimizationReason, implicitNullCheckLimit);
    }
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:19,代碼來源:UseTrappingNullChecksPhase.java

示例2: replaceWithTrappingNullCheck

import jdk.vm.ci.meta.DeoptimizationReason; //導入方法依賴的package包/類
private static void replaceWithTrappingNullCheck(AbstractDeoptimizeNode deopt, IfNode ifNode, LogicNode condition, DeoptimizationReason deoptimizationReason, long implicitNullCheckLimit) {
    DebugContext debug = deopt.getDebug();
    counterTrappingNullCheck.increment(debug);
    if (deopt instanceof DynamicDeoptimizeNode) {
        counterTrappingNullCheckDynamicDeoptimize.increment(debug);
    }
    if (deoptimizationReason == DeoptimizationReason.UnreachedCode) {
        counterTrappingNullCheckUnreached.increment(debug);
    }
    IsNullNode isNullNode = (IsNullNode) condition;
    AbstractBeginNode nonTrappingContinuation = ifNode.falseSuccessor();
    AbstractBeginNode trappingContinuation = ifNode.trueSuccessor();

    DeoptimizingFixedWithNextNode trappingNullCheck = null;
    FixedNode nextNonTrapping = nonTrappingContinuation.next();
    ValueNode value = isNullNode.getValue();
    if (OptImplicitNullChecks.getValue(ifNode.graph().getOptions()) && implicitNullCheckLimit > 0) {
        if (nextNonTrapping instanceof FixedAccessNode) {
            FixedAccessNode fixedAccessNode = (FixedAccessNode) nextNonTrapping;
            if (fixedAccessNode.canNullCheck()) {
                AddressNode address = fixedAccessNode.getAddress();
                ValueNode base = address.getBase();
                ValueNode index = address.getIndex();
                // allow for architectures which cannot fold an
                // intervening uncompress out of the address chain
                if (base != null && base instanceof CompressionNode) {
                    base = ((CompressionNode) base).getValue();
                }
                if (index != null && index instanceof CompressionNode) {
                    index = ((CompressionNode) index).getValue();
                }
                if (((base == value && index == null) || (base == null && index == value)) && address.getMaxConstantDisplacement() < implicitNullCheckLimit) {
                    // Opportunity for implicit null check as part of an existing read found!
                    fixedAccessNode.setStateBefore(deopt.stateBefore());
                    fixedAccessNode.setNullCheck(true);
                    deopt.graph().removeSplit(ifNode, nonTrappingContinuation);
                    trappingNullCheck = fixedAccessNode;
                    counterTrappingNullCheckExistingRead.increment(debug);
                }
            }
        }
    }

    if (trappingNullCheck == null) {
        // Need to add a null check node.
        trappingNullCheck = deopt.graph().add(new NullCheckNode(value));
        deopt.graph().replaceSplit(ifNode, trappingNullCheck, nonTrappingContinuation);
    }

    trappingNullCheck.setStateBefore(deopt.stateBefore());

    /*
     * We now have the pattern NullCheck/BeginNode/... It's possible some node is using the
     * BeginNode as a guard input, so replace guard users of the Begin with the NullCheck and
     * then remove the Begin from the graph.
     */
    nonTrappingContinuation.replaceAtUsages(InputType.Guard, trappingNullCheck);

    if (nonTrappingContinuation instanceof BeginNode) {
        GraphUtil.unlinkFixedNode(nonTrappingContinuation);
        nonTrappingContinuation.safeDelete();
    }

    GraphUtil.killCFG(trappingContinuation);
    GraphUtil.tryKillUnused(isNullNode);
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:67,代碼來源:UseTrappingNullChecksPhase.java

示例3: convertDeoptReason

import jdk.vm.ci.meta.DeoptimizationReason; //導入方法依賴的package包/類
public DeoptimizationReason convertDeoptReason(int reason) {
    HotSpotVMConfig config = runtime.getConfig();
    if (reason == config.deoptReasonNone) {
        return DeoptimizationReason.None;
    }
    if (reason == config.deoptReasonNullCheck) {
        return DeoptimizationReason.NullCheckException;
    }
    if (reason == config.deoptReasonRangeCheck) {
        return DeoptimizationReason.BoundsCheckException;
    }
    if (reason == config.deoptReasonClassCheck) {
        return DeoptimizationReason.ClassCastException;
    }
    if (reason == config.deoptReasonArrayCheck) {
        return DeoptimizationReason.ArrayStoreException;
    }
    if (reason == config.deoptReasonUnreached0) {
        return DeoptimizationReason.UnreachedCode;
    }
    if (reason == config.deoptReasonTypeCheckInlining) {
        return DeoptimizationReason.TypeCheckedInliningViolated;
    }
    if (reason == config.deoptReasonOptimizedTypeCheck) {
        return DeoptimizationReason.OptimizedTypeCheckViolated;
    }
    if (reason == config.deoptReasonNotCompiledExceptionHandler) {
        return DeoptimizationReason.NotCompiledExceptionHandler;
    }
    if (reason == config.deoptReasonUnresolved) {
        return DeoptimizationReason.Unresolved;
    }
    if (reason == config.deoptReasonJsrMismatch) {
        return DeoptimizationReason.JavaSubroutineMismatch;
    }
    if (reason == config.deoptReasonDiv0Check) {
        return DeoptimizationReason.ArithmeticException;
    }
    if (reason == config.deoptReasonConstraint) {
        return DeoptimizationReason.RuntimeConstraint;
    }
    if (reason == config.deoptReasonLoopLimitCheck) {
        return DeoptimizationReason.LoopLimitCheck;
    }
    if (reason == config.deoptReasonAliasing) {
        return DeoptimizationReason.Aliasing;
    }
    if (reason == config.deoptReasonTransferToInterpreter) {
        return DeoptimizationReason.TransferToInterpreter;
    }
    throw new JVMCIError("%x", reason);
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:53,代碼來源:HotSpotMetaAccessProvider.java

示例4: replaceWithTrappingNullCheck

import jdk.vm.ci.meta.DeoptimizationReason; //導入方法依賴的package包/類
private static void replaceWithTrappingNullCheck(AbstractDeoptimizeNode deopt, IfNode ifNode, LogicNode condition, DeoptimizationReason deoptimizationReason, long implicitNullCheckLimit) {
    counterTrappingNullCheck.increment();
    if (deopt instanceof DynamicDeoptimizeNode) {
        counterTrappingNullCheckDynamicDeoptimize.increment();
    }
    if (deoptimizationReason == DeoptimizationReason.UnreachedCode) {
        counterTrappingNullCheckUnreached.increment();
    }
    IsNullNode isNullNode = (IsNullNode) condition;
    AbstractBeginNode nonTrappingContinuation = ifNode.falseSuccessor();
    AbstractBeginNode trappingContinuation = ifNode.trueSuccessor();

    DeoptimizingFixedWithNextNode trappingNullCheck = null;
    FixedNode nextNonTrapping = nonTrappingContinuation.next();
    ValueNode value = isNullNode.getValue();
    if (OptImplicitNullChecks.getValue(ifNode.graph().getOptions()) && implicitNullCheckLimit > 0) {
        if (nextNonTrapping instanceof FixedAccessNode) {
            FixedAccessNode fixedAccessNode = (FixedAccessNode) nextNonTrapping;
            if (fixedAccessNode.canNullCheck()) {
                AddressNode address = fixedAccessNode.getAddress();
                ValueNode base = address.getBase();
                ValueNode index = address.getIndex();
                if (((base == value && index == null) || (base == null && index == value)) && address.getMaxConstantDisplacement() < implicitNullCheckLimit) {
                    // Opportunity for implicit null check as part of an existing read found!
                    fixedAccessNode.setStateBefore(deopt.stateBefore());
                    fixedAccessNode.setNullCheck(true);
                    deopt.graph().removeSplit(ifNode, nonTrappingContinuation);
                    trappingNullCheck = fixedAccessNode;
                    counterTrappingNullCheckExistingRead.increment();
                }
            }
        }
    }

    if (trappingNullCheck == null) {
        // Need to add a null check node.
        trappingNullCheck = deopt.graph().add(new NullCheckNode(value));
        deopt.graph().replaceSplit(ifNode, trappingNullCheck, nonTrappingContinuation);
    }

    trappingNullCheck.setStateBefore(deopt.stateBefore());

    /*
     * We now have the pattern NullCheck/BeginNode/... It's possible some node is using the
     * BeginNode as a guard input, so replace guard users of the Begin with the NullCheck and
     * then remove the Begin from the graph.
     */
    nonTrappingContinuation.replaceAtUsages(InputType.Guard, trappingNullCheck);

    if (nonTrappingContinuation instanceof BeginNode) {
        GraphUtil.unlinkFixedNode(nonTrappingContinuation);
        nonTrappingContinuation.safeDelete();
    }

    GraphUtil.killCFG(trappingContinuation);
    GraphUtil.tryKillUnused(isNullNode);
}
 
開發者ID:graalvm,項目名稱:graal-core,代碼行數:58,代碼來源:UseTrappingNullChecksPhase.java


注:本文中的jdk.vm.ci.meta.DeoptimizationReason.UnreachedCode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。