comparison graal/com.oracle.max.graal.compiler/src/com/sun/c1x/lir/LIROpcode.java @ 2872:0341b6424579

Project renaming.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 08 Jun 2011 08:42:25 +0200
parents graal/GraalCompiler/src/com/sun/c1x/lir/LIROpcode.java@1cd59ca9ac86
children
comparison
equal deleted inserted replaced
2871:d704eb526603 2872:0341b6424579
1 /*
2 * Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23 package com.sun.c1x.lir;
24
25 /**
26 * The {@code LirOpcode} enum represents the Operation code of each LIR instruction.
27 *
28 * @author Marcelo Cintra
29 * @author Thomas Wuerthinger
30 */
31 public enum LIROpcode {
32 // Checkstyle: stop
33 // @formatter:off
34 BeginOp0,
35 Label,
36 Breakpoint,
37 RuntimeCall,
38 Membar,
39 Branch,
40 CondFloatBranch,
41 EndOp0,
42 BeginOp1,
43 NullCheck,
44 Return,
45 Lea,
46 Neg,
47 TableSwitch,
48 Move,
49 Prefetchr,
50 Prefetchw,
51 Convert,
52 Lsb,
53 Msb,
54 MonitorAddress,
55 EndOp1,
56 BeginOp2,
57 Cmp,
58 Cmpl2i,
59 Ucmpfd2i,
60 Cmpfd2i,
61 Cmove,
62 Add,
63 Sub,
64 Mul,
65 Div,
66 Rem,
67 Sqrt,
68 Abs,
69 Sin,
70 Cos,
71 Tan,
72 Log,
73 Log10,
74 LogicAnd,
75 LogicOr,
76 LogicXor,
77 Shl,
78 Shr,
79 Ushr,
80 CompareTo,
81 EndOp2,
82 BeginOp3,
83 Idiv,
84 Irem,
85 Ldiv,
86 Lrem,
87 Wdiv,
88 Wdivi,
89 Wrem,
90 Wremi,
91 EndOp3,
92 NativeCall,
93 DirectCall,
94 ConstDirectCall,
95 IndirectCall,
96 TemplateCall,
97 InstanceOf,
98 CheckCast,
99 StoreCheck,
100 CasLong,
101 CasWord,
102 CasObj,
103 CasInt,
104 Xir,
105 // @formatter:on
106 // Checkstyle: resume
107 }