annotate graal/com.oracle.graal.amd64/src/com/oracle/graal/amd64/AMD64.java @ 9190:50d87c79f831

Better names for useSSE and useAVX variables.
author Roland Schatz <roland.schatz@oracle.com>
date Fri, 19 Apr 2013 12:01:02 +0200
parents 0331f7512be2
children 3ec29630cfb4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
1 /*
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
2 * Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
4 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
8 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
13 * accompanied this code).
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
14 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
18 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
21 * questions.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
22 */
6580
d56d600819fe moved AMD64 into its own (new) project: com.oracle.graal.amd64
Doug Simon <doug.simon@oracle.com>
parents: 6531
diff changeset
23 package com.oracle.graal.amd64;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
24
6498
6bc8aa568cb9 moved MemoryBarriers to com.oracle.graal.api.code
Doug Simon <doug.simon@oracle.com>
parents: 6497
diff changeset
25 import static com.oracle.graal.api.code.MemoryBarriers.*;
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
26 import static com.oracle.graal.api.code.Register.RegisterFlag.*;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
27
7700
627c284671b7 Use java.nio.ByteOrder instead of our own ByteOrder enumeration
Christian Wimmer <christian.wimmer@oracle.com>
parents: 7514
diff changeset
28 import java.nio.*;
627c284671b7 Use java.nio.ByteOrder instead of our own ByteOrder enumeration
Christian Wimmer <christian.wimmer@oracle.com>
parents: 7514
diff changeset
29
5510
426c605c9d3c Move cri.ci to api.code.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5507
diff changeset
30 import com.oracle.graal.api.code.*;
8166
d2733c9b3d0e Convert AMD64Address to CompositeValue.
Roland Schatz <roland.schatz@oracle.com>
parents: 7700
diff changeset
31 import com.oracle.graal.api.code.Register.RegisterFlag;
9189
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
32 import com.oracle.graal.api.meta.*;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
33
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
34 /**
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
35 * Represents the AMD64 architecture.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
36 */
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
37 public class AMD64 extends Architecture {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
38
7514
6bf569d50989 disabled auto-formatting of some code sections that use manual alignment
Doug Simon <doug.simon@oracle.com>
parents: 6582
diff changeset
39 // @formatter:off
6bf569d50989 disabled auto-formatting of some code sections that use manual alignment
Doug Simon <doug.simon@oracle.com>
parents: 6582
diff changeset
40
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
41 // General purpose CPU registers
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
42 public static final Register rax = new Register(0, 0, 8, "rax", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
43 public static final Register rcx = new Register(1, 1, 8, "rcx", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
44 public static final Register rdx = new Register(2, 2, 8, "rdx", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
45 public static final Register rbx = new Register(3, 3, 8, "rbx", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
46 public static final Register rsp = new Register(4, 4, 8, "rsp", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
47 public static final Register rbp = new Register(5, 5, 8, "rbp", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
48 public static final Register rsi = new Register(6, 6, 8, "rsi", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
49 public static final Register rdi = new Register(7, 7, 8, "rdi", CPU, RegisterFlag.Byte);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
50
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
51 public static final Register r8 = new Register(8, 8, 8, "r8", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
52 public static final Register r9 = new Register(9, 9, 8, "r9", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
53 public static final Register r10 = new Register(10, 10, 8, "r10", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
54 public static final Register r11 = new Register(11, 11, 8, "r11", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
55 public static final Register r12 = new Register(12, 12, 8, "r12", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
56 public static final Register r13 = new Register(13, 13, 8, "r13", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
57 public static final Register r14 = new Register(14, 14, 8, "r14", CPU, RegisterFlag.Byte);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
58 public static final Register r15 = new Register(15, 15, 8, "r15", CPU, RegisterFlag.Byte);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
59
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
60 public static final Register[] cpuRegisters = {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
61 rax, rcx, rdx, rbx, rsp, rbp, rsi, rdi,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
62 r8, r9, r10, r11, r12, r13, r14, r15
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
63 };
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
64
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
65 // XMM registers
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
66 public static final Register xmm0 = new Register(16, 0, 8, "xmm0", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
67 public static final Register xmm1 = new Register(17, 1, 8, "xmm1", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
68 public static final Register xmm2 = new Register(18, 2, 8, "xmm2", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
69 public static final Register xmm3 = new Register(19, 3, 8, "xmm3", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
70 public static final Register xmm4 = new Register(20, 4, 8, "xmm4", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
71 public static final Register xmm5 = new Register(21, 5, 8, "xmm5", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
72 public static final Register xmm6 = new Register(22, 6, 8, "xmm6", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
73 public static final Register xmm7 = new Register(23, 7, 8, "xmm7", FPU);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
74
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
75 public static final Register xmm8 = new Register(24, 8, 8, "xmm8", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
76 public static final Register xmm9 = new Register(25, 9, 8, "xmm9", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
77 public static final Register xmm10 = new Register(26, 10, 8, "xmm10", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
78 public static final Register xmm11 = new Register(27, 11, 8, "xmm11", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
79 public static final Register xmm12 = new Register(28, 12, 8, "xmm12", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
80 public static final Register xmm13 = new Register(29, 13, 8, "xmm13", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
81 public static final Register xmm14 = new Register(30, 14, 8, "xmm14", FPU);
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
82 public static final Register xmm15 = new Register(31, 15, 8, "xmm15", FPU);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
83
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
84 public static final Register[] xmmRegisters = {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
85 xmm0, xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
86 xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
87 };
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
88
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
89 public static final Register[] cpuxmmRegisters = {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
90 rax, rcx, rdx, rbx, rsp, rbp, rsi, rdi,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
91 r8, r9, r10, r11, r12, r13, r14, r15,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
92 xmm0, xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
93 xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
94 };
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
95
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
96 /**
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
97 * Register used to construct an instruction-relative address.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
98 */
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
99 public static final Register rip = new Register(32, -1, 0, "rip");
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
100
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
101 public static final Register[] allRegisters = {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
102 rax, rcx, rdx, rbx, rsp, rbp, rsi, rdi,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
103 r8, r9, r10, r11, r12, r13, r14, r15,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
104 xmm0, xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
105 xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
106 rip
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
107 };
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
108
9190
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
109 private final int supportedSSEVersion;
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
110 private final int supportedAVXVersion;
9189
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
111
9190
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
112 public AMD64(int supportedSSEVersion, int supportedAVXVersion) {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
113 super("AMD64",
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
114 8,
7700
627c284671b7 Use java.nio.ByteOrder instead of our own ByteOrder enumeration
Christian Wimmer <christian.wimmer@oracle.com>
parents: 7514
diff changeset
115 ByteOrder.LITTLE_ENDIAN,
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
116 allRegisters,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
117 LOAD_STORE | STORE_STORE,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
118 1,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
119 r15.encoding + 1,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
120 8);
9190
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
121 assert supportedSSEVersion >= 2;
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
122 this.supportedSSEVersion = supportedSSEVersion;
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
123 this.supportedAVXVersion = supportedAVXVersion;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
124 }
7514
6bf569d50989 disabled auto-formatting of some code sections that use manual alignment
Doug Simon <doug.simon@oracle.com>
parents: 6582
diff changeset
125 // @formatter:on
9189
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
126
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
127 @Override
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
128 public int getMaxVectorLength(Kind kind) {
9190
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
129 if (supportedAVXVersion > 0) {
9189
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
130 switch (kind) {
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
131 case Boolean:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
132 return 32;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
133 case Byte:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
134 return 32;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
135 case Short:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
136 return 16;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
137 case Char:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
138 return 16;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
139 case Int:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
140 return 8;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
141 case Float:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
142 return 8;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
143 case Long:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
144 return 4;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
145 case Double:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
146 return 4;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
147 case Object:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
148 return 4;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
149 }
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
150 } else {
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
151 switch (kind) {
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
152 case Boolean:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
153 return 16;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
154 case Byte:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
155 return 16;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
156 case Short:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
157 return 8;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
158 case Char:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
159 return 8;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
160 case Int:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
161 return 4;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
162 case Float:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
163 return 4;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
164 case Long:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
165 return 2;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
166 case Double:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
167 return 2;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
168 case Object:
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
169 return 2;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
170 }
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
171 }
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
172 return 1;
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
173 }
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
174
9190
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
175 public int getSupportedSSEVersion() {
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
176 return supportedSSEVersion;
9189
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
177 }
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
178
9190
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
179 public int getSupportedAVXVersion() {
50d87c79f831 Better names for useSSE and useAVX variables.
Roland Schatz <roland.schatz@oracle.com>
parents: 9189
diff changeset
180 return supportedAVXVersion;
9189
0331f7512be2 CPU capability detection.
Roland Schatz <roland.schatz@oracle.com>
parents: 8167
diff changeset
181 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
182 }