src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/AMD64HotSpotLIRKindTool.java
author dlong
Thu, 14 Nov 2019 12:21:00 -0800
changeset 59095 03fbcd06b4c0
parent 52910 583fd71c47d6
permissions -rw-r--r--
8233841: Update Graal Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     1
/*
52910
583fd71c47d6 8214023: Update Graal
dlong
parents: 50858
diff changeset
     2
 * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     4
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     8
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    13
 * accompanied this code).
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    14
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    18
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    21
 * questions.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    22
 */
50858
2d3e99a72541 8205824: Update Graal
never
parents: 48398
diff changeset
    23
2d3e99a72541 8205824: Update Graal
never
parents: 48398
diff changeset
    24
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    25
package org.graalvm.compiler.hotspot.amd64;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    26
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    27
import org.graalvm.compiler.core.amd64.AMD64LIRKindTool;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    28
import org.graalvm.compiler.core.common.LIRKind;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    29
48398
79afa4c434f6 8193439: Update Graal
iveresov
parents: 47798
diff changeset
    30
import jdk.vm.ci.amd64.AMD64Kind;
79afa4c434f6 8193439: Update Graal
iveresov
parents: 47798
diff changeset
    31
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    32
public class AMD64HotSpotLIRKindTool extends AMD64LIRKindTool {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    33
    @Override
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    34
    public LIRKind getNarrowOopKind() {
48398
79afa4c434f6 8193439: Update Graal
iveresov
parents: 47798
diff changeset
    35
        return LIRKind.compressedReference(AMD64Kind.DWORD);
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    36
    }
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    37
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    38
    @Override
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    39
    public LIRKind getNarrowPointerKind() {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    40
        return LIRKind.value(AMD64Kind.DWORD);
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    41
    }
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    42
}