src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/HighTierContext.java
branchdatagramsocketimpl-branch
changeset 58678 9cf78a70fa4f
parent 52910 583fd71c47d6
child 58679 9c3209ff7550
equal deleted inserted replaced
58677:13588c901957 58678:9cf78a70fa4f
     1 /*
     1 /*
     2  * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    22  */
    22  */
    23 
    23 
    24 
    24 
    25 package org.graalvm.compiler.phases.tiers;
    25 package org.graalvm.compiler.phases.tiers;
    26 
    26 
       
    27 import org.graalvm.compiler.nodes.spi.CoreProvidersDelegate;
    27 import org.graalvm.compiler.phases.OptimisticOptimizations;
    28 import org.graalvm.compiler.phases.OptimisticOptimizations;
    28 import org.graalvm.compiler.phases.PhaseSuite;
    29 import org.graalvm.compiler.phases.PhaseSuite;
    29 import org.graalvm.compiler.phases.util.Providers;
    30 import org.graalvm.compiler.phases.util.Providers;
    30 
    31 
    31 public class HighTierContext extends PhaseContext {
    32 public class HighTierContext extends CoreProvidersDelegate {
    32 
    33 
    33     private final PhaseSuite<HighTierContext> graphBuilderSuite;
    34     private final PhaseSuite<HighTierContext> graphBuilderSuite;
    34 
    35 
    35     private final OptimisticOptimizations optimisticOpts;
    36     private final OptimisticOptimizations optimisticOpts;
    36 
    37