annotate graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/nodes/spi/EscapeField.java @ 3528:6b841b6b2437

First round of refactoring.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 09 Aug 2011 23:56:10 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3528
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
1 /*
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
2 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
4 *
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
7 * published by the Free Software Foundation.
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
8 *
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
13 * accompanied this code).
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
14 *
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
18 *
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
21 * questions.
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
22 */
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
23 package com.oracle.max.graal.compiler.nodes.spi;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
24
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
25 import com.sun.cri.ci.*;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
26
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
27 public class EscapeField {
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
28
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
29 private String name;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
30 private Object representation;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
31 private CiKind kind;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
32
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
33 public EscapeField(String name, Object representation, CiKind kind) {
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
34 this.name = name;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
35 this.representation = representation;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
36 this.kind = kind;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
37 }
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
38
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
39 public String name() {
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
40 return name;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
41 }
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
42
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
43 public Object representation() {
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
44 return representation;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
45 }
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
46
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
47 public CiKind kind() {
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
48 return kind;
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
49 }
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
50
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
51 @Override
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
52 public String toString() {
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
53 return name();
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
54 }
6b841b6b2437 First round of refactoring.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents:
diff changeset
55 }