annotate graal/com.oracle.graal.hotspot.amd64/src/com/oracle/graal/hotspot/amd64/AMD64SafepointOp.java @ 6580:d56d600819fe

moved AMD64 into its own (new) project: com.oracle.graal.amd64
author Doug Simon <doug.simon@oracle.com>
date Thu, 25 Oct 2012 12:52:54 +0200
parents 4afe23aa0a00
children 5d0bb7d52783
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.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
26
5510
426c605c9d3c Move cri.ci to api.code.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5236
diff changeset
27 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
28 import com.oracle.graal.asm.amd64.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
29 import com.oracle.graal.hotspot.*;
6462
b3f5dc099f9d removed XIR
Doug Simon <doug.simon@oracle.com>
parents: 5848
diff changeset
30 import com.oracle.graal.hotspot.bridge.*;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
31 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
32 import com.oracle.graal.lir.LIRInstruction.Opcode;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
33 import com.oracle.graal.lir.amd64.*;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
34 import com.oracle.graal.lir.asm.*;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
36 /**
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
37 * Emits a safepoint poll.
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
38 */
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
39 @Opcode("SAFEPOINT")
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
40 public class AMD64SafepointOp extends AMD64LIRInstruction {
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
41 @State protected LIRFrameState state;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
42
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
43 private final HotSpotVMConfig config;
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
44
5733
141b15521a39 use annotated fields for operands of LIR instructions
Christian Wimmer <christian.wimmer@oracle.com>
parents: 5548
diff changeset
45 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
46 this.state = state;
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
47 this.config = config;
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
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
50 @Override
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
51 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
52 Register scratch = tasm.frameMap.registerConfig.getScratchRegister();
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 int pos = asm.codeBuffer.position();
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
54 if (config.isPollingPageFar) {
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
55 asm.movq(scratch, config.safepointPollingAddress);
6462
b3f5dc099f9d removed XIR
Doug Simon <doug.simon@oracle.com>
parents: 5848
diff changeset
56 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
57 tasm.recordSafepoint(pos, state);
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5510
diff changeset
58 asm.movq(scratch, new Address(tasm.target.wordKind, scratch.asValue()));
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
59 } else {
6462
b3f5dc099f9d removed XIR
Doug Simon <doug.simon@oracle.com>
parents: 5848
diff changeset
60 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
61 tasm.recordSafepoint(pos, state);
5547
b6617d13ea44 Dropping Ci* prefixes. Some additional renamings in the api.code interface.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5510
diff changeset
62 asm.movq(scratch, new Address(tasm.target.wordKind, rip.asValue()));
5236
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
63 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
64 }
f9aae727d035 removed XIR safepoint operation
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
65 }