annotate graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64HotSpotSafepointOp.java @ 12559:ae412befde21

read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
author twisti
date Wed, 23 Oct 2013 19:50:14 -0700
parents ce0b00597980
children 1a66453f73db
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1 /*
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
2 * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
4 *
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
8 *
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
13 * accompanied this code).
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
14 *
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 *
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
21 * questions.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
22 */
6495
75f130f2b30f moved AMD64 specific HotSpot code in com.oracle.graal.hotspot.amd64 project
Doug Simon <doug.simon@oracle.com>
parents: 6493
diff changeset
23 package com.oracle.graal.hotspot.amd64;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
24
6580
d56d600819fe moved AMD64 into its own (new) project: com.oracle.graal.amd64
Doug Simon <doug.simon@oracle.com>
parents: 6531
diff changeset
25 import static com.oracle.graal.amd64.AMD64.*;
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
26 import static com.oracle.graal.hotspot.bridge.Marks.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
27
5510
426c605c9d3c Move cri.ci to api.code.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5236
diff changeset
28 import com.oracle.graal.api.code.*;
9294
899295127bc4 Get rid of the distinction between UNUSED and ILLEGAL value.
Roland Schatz <roland.schatz@oracle.com>
parents: 9003
diff changeset
29 import com.oracle.graal.api.meta.*;
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
30 import com.oracle.graal.asm.*;
6531
4afe23aa0a00 renamed packages: com.oracle.max.asm... -> com.oracle.graal.asm...
Doug Simon <doug.simon@oracle.com>
parents: 6495
diff changeset
31 import com.oracle.graal.asm.amd64.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
32 import com.oracle.graal.hotspot.*;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
33 import com.oracle.graal.lir.*;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
34 import com.oracle.graal.lir.amd64.*;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 import com.oracle.graal.lir.asm.*;
7938
24e93ac47e95 Allocate temporary register for safepoint operation instead of using scratch register.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7841
diff changeset
36 import com.oracle.graal.nodes.spi.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
37
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
38 /**
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
39 * Emits a safepoint poll.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
40 */
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
41 @Opcode("SAFEPOINT")
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
42 public class AMD64HotSpotSafepointOp extends AMD64LIRInstruction {
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7154
diff changeset
43
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
44 @State protected LIRFrameState state;
7938
24e93ac47e95 Allocate temporary register for safepoint operation instead of using scratch register.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7841
diff changeset
45 @Temp({OperandFlag.REG}) private AllocatableValue temp;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
46
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
47 private final HotSpotVMConfig config;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
48
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
49 public AMD64HotSpotSafepointOp(LIRFrameState state, HotSpotVMConfig config, LIRGeneratorTool tool) {
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
50 this.state = state;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
51 this.config = config;
7938
24e93ac47e95 Allocate temporary register for safepoint operation instead of using scratch register.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7841
diff changeset
52 temp = tool.newVariable(tool.target().wordKind);
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
54
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
55 @Override
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
56 public void emitCode(TargetMethodAssembler tasm, AMD64MacroAssembler asm) {
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
57 RegisterValue scratch = (RegisterValue) temp;
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
58 emitCode(tasm, asm, config, false, state, scratch.getRegister());
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
59 }
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
60
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
61 /**
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
62 * Tests if the polling page address can be reached from the code cache with 32-bit
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
63 * displacements.
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
64 */
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
65 private static boolean isPollingPageFar(HotSpotVMConfig config) {
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
66 final long pollingPageAddress = config.safepointPollingAddress;
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
67 // TODO return ForceUnreachable ||
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
68 return !NumUtil.isInt(pollingPageAddress - config.codeCacheLowBoundary()) || !NumUtil.isInt(pollingPageAddress - config.codeCacheHighBoundary());
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
69 }
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
70
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
71 public static void emitCode(TargetMethodAssembler tasm, AMD64MacroAssembler asm, HotSpotVMConfig config, boolean atReturn, LIRFrameState state, Register scratch) {
10913
19a7856e3ab9 remove SafepointPollOffset
twisti
parents: 9864
diff changeset
72 final int pos = asm.codeBuffer.position();
12559
ae412befde21 read HotSpotVMConfig fields from HotSpot's vmStructs via annotations
twisti
parents: 11760
diff changeset
73 if (isPollingPageFar(config)) {
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
74 asm.movq(scratch, config.safepointPollingAddress);
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
75 tasm.recordMark(atReturn ? MARK_POLL_RETURN_FAR : MARK_POLL_FAR);
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
76 if (state != null) {
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
77 tasm.recordInfopoint(pos, state, InfopointReason.SAFEPOINT);
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
78 }
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
79 asm.movq(scratch, new AMD64Address(scratch));
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
80 } else {
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
81 tasm.recordMark(atReturn ? MARK_POLL_RETURN_NEAR : MARK_POLL_NEAR);
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
82 if (state != null) {
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
83 tasm.recordInfopoint(pos, state, InfopointReason.SAFEPOINT);
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
84 }
7154
5d0bb7d52783 changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
Doug Simon <doug.simon@oracle.com>
parents: 6580
diff changeset
85 // The C++ code transforms the polling page offset into an RIP displacement
5d0bb7d52783 changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
Doug Simon <doug.simon@oracle.com>
parents: 6580
diff changeset
86 // to the real address at that offset in the polling page.
11760
ce0b00597980 made safepoint-on-return use specialized HotSpot runtime support for such safepoints (which have no debug info attached)
Doug Simon <doug.simon@oracle.com>
parents: 10913
diff changeset
87 asm.movq(scratch, new AMD64Address(rip, 0));
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
88 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
89 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
90 }