annotate graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64SafepointOp.java @ 7841:674a8b9e62f8

Remove unused fields in TargetDescription. Use Unsafe.pageSize().
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 25 Feb 2013 16:15:17 +0100
parents 838293a77af7
children 24e93ac47e95
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.*;
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
26 import static com.oracle.graal.phases.GraalOptions.*;
7841
674a8b9e62f8 Remove unused fields in TargetDescription. Use Unsafe.pageSize().
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7839
diff changeset
27 import sun.misc.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
28
7839
838293a77af7 Make Address class platform specific.
Roland Schatz <roland.schatz@oracle.com>
parents: 7530
diff changeset
29 import com.oracle.graal.amd64.*;
5510
426c605c9d3c Move cri.ci to api.code.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5236
diff changeset
30 import com.oracle.graal.api.code.*;
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.*;
6462
b3f5dc099f9d removed XIR
Doug Simon <doug.simon@oracle.com>
parents: 5848
diff changeset
33 import com.oracle.graal.hotspot.bridge.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
34 import com.oracle.graal.lir.*;
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
35 import com.oracle.graal.lir.LIRInstruction.Opcode;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
36 import com.oracle.graal.lir.amd64.*;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
37 import com.oracle.graal.lir.asm.*;
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 /**
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
40 * Emits a safepoint poll.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
41 */
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
42 @Opcode("SAFEPOINT")
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
43 public class AMD64SafepointOp extends AMD64LIRInstruction {
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7154
diff changeset
44
7841
674a8b9e62f8 Remove unused fields in TargetDescription. Use Unsafe.pageSize().
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7839
diff changeset
45 private static final Unsafe unsafe = Unsafe.getUnsafe();
674a8b9e62f8 Remove unused fields in TargetDescription. Use Unsafe.pageSize().
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7839
diff changeset
46
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
47 @State protected LIRFrameState state;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
48
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
49 private final HotSpotVMConfig config;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
50
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
51 public AMD64SafepointOp(LIRFrameState state, HotSpotVMConfig config) {
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
52 this.state = state;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 this.config = config;
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
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
56 @Override
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
57 public void emitCode(TargetMethodAssembler tasm, AMD64MacroAssembler asm) {
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5510
diff changeset
58 Register scratch = tasm.frameMap.registerConfig.getScratchRegister();
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
59 int pos = asm.codeBuffer.position();
7841
674a8b9e62f8 Remove unused fields in TargetDescription. Use Unsafe.pageSize().
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7839
diff changeset
60 int offset = SafepointPollOffset % unsafe.pageSize();
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
61 if (config.isPollingPageFar) {
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
62 asm.movq(scratch, config.safepointPollingAddress + offset);
6462
b3f5dc099f9d removed XIR
Doug Simon <doug.simon@oracle.com>
parents: 5848
diff changeset
63 tasm.recordMark(Marks.MARK_POLL_FAR);
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
64 tasm.recordSafepoint(pos, state);
7839
838293a77af7 Make Address class platform specific.
Roland Schatz <roland.schatz@oracle.com>
parents: 7530
diff changeset
65 asm.movq(scratch, new AMD64Address(tasm.target.wordKind, scratch.asValue()));
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
66 } else {
6462
b3f5dc099f9d removed XIR
Doug Simon <doug.simon@oracle.com>
parents: 5848
diff changeset
67 tasm.recordMark(Marks.MARK_POLL_NEAR);
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
68 tasm.recordSafepoint(pos, state);
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
69 // 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
70 // to the real address at that offset in the polling page.
7839
838293a77af7 Make Address class platform specific.
Roland Schatz <roland.schatz@oracle.com>
parents: 7530
diff changeset
71 asm.movq(scratch, new AMD64Address(tasm.target.wordKind, rip.asValue(), offset));
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
72 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
73 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
74 }