src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/SPARCHotSpotLoweringProvider.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.
    23 
    23 
    24 
    24 
    25 package org.graalvm.compiler.hotspot.sparc;
    25 package org.graalvm.compiler.hotspot.sparc;
    26 
    26 
    27 import org.graalvm.compiler.core.common.spi.ForeignCallsProvider;
    27 import org.graalvm.compiler.core.common.spi.ForeignCallsProvider;
       
    28 import org.graalvm.compiler.core.sparc.SparcLoweringProviderMixin;
    28 import org.graalvm.compiler.graph.Node;
    29 import org.graalvm.compiler.graph.Node;
    29 import org.graalvm.compiler.hotspot.HotSpotGraalRuntimeProvider;
    30 import org.graalvm.compiler.hotspot.HotSpotGraalRuntimeProvider;
    30 import org.graalvm.compiler.hotspot.meta.DefaultHotSpotLoweringProvider;
    31 import org.graalvm.compiler.hotspot.meta.DefaultHotSpotLoweringProvider;
    31 import org.graalvm.compiler.hotspot.meta.HotSpotRegistersProvider;
    32 import org.graalvm.compiler.hotspot.meta.HotSpotRegistersProvider;
    32 import org.graalvm.compiler.nodes.calc.FloatConvertNode;
    33 import org.graalvm.compiler.nodes.calc.FloatConvertNode;
    34 
    35 
    35 import jdk.vm.ci.code.TargetDescription;
    36 import jdk.vm.ci.code.TargetDescription;
    36 import jdk.vm.ci.hotspot.HotSpotConstantReflectionProvider;
    37 import jdk.vm.ci.hotspot.HotSpotConstantReflectionProvider;
    37 import jdk.vm.ci.meta.MetaAccessProvider;
    38 import jdk.vm.ci.meta.MetaAccessProvider;
    38 
    39 
    39 public class SPARCHotSpotLoweringProvider extends DefaultHotSpotLoweringProvider {
    40 public class SPARCHotSpotLoweringProvider extends DefaultHotSpotLoweringProvider implements SparcLoweringProviderMixin {
    40 
    41 
    41     public SPARCHotSpotLoweringProvider(HotSpotGraalRuntimeProvider runtime, MetaAccessProvider metaAccess, ForeignCallsProvider foreignCalls, HotSpotRegistersProvider registers,
    42     public SPARCHotSpotLoweringProvider(HotSpotGraalRuntimeProvider runtime, MetaAccessProvider metaAccess, ForeignCallsProvider foreignCalls, HotSpotRegistersProvider registers,
    42                     HotSpotConstantReflectionProvider constantReflection, TargetDescription target) {
    43                     HotSpotConstantReflectionProvider constantReflection, TargetDescription target) {
    43         super(runtime, metaAccess, foreignCalls, registers, constantReflection, target);
    44         super(runtime, metaAccess, foreignCalls, registers, constantReflection, target);
    44     }
    45     }