Source Code Cross Referenced for Opcodes.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » internal » compiler » codegen » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » jdt » org.eclipse.jdt.internal.compiler.codegen 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2006 IBM Corporation and others.
003:         * All rights reserved. This program and the accompanying materials
004:         * are made available under the terms of the Eclipse Public License v1.0
005:         * which accompanies this distribution, and is available at
006:         * http://www.eclipse.org/legal/epl-v10.html
007:         *
008:         * Contributors:
009:         *     IBM Corporation - initial API and implementation
010:         *******************************************************************************/package org.eclipse.jdt.internal.compiler.codegen;
011:
012:        public interface Opcodes {
013:
014:            public static final byte OPC_nop = 0;
015:            public static final byte OPC_aconst_null = 1;
016:            public static final byte OPC_iconst_m1 = 2;
017:            public static final byte OPC_iconst_0 = 3;
018:            public static final byte OPC_iconst_1 = 4;
019:            public static final byte OPC_iconst_2 = 5;
020:            public static final byte OPC_iconst_3 = 6;
021:            public static final byte OPC_iconst_4 = 7;
022:            public static final byte OPC_iconst_5 = 8;
023:            public static final byte OPC_lconst_0 = 9;
024:            public static final byte OPC_lconst_1 = 10;
025:            public static final byte OPC_fconst_0 = 11;
026:            public static final byte OPC_fconst_1 = 12;
027:            public static final byte OPC_fconst_2 = 13;
028:            public static final byte OPC_dconst_0 = 14;
029:            public static final byte OPC_dconst_1 = 15;
030:            public static final byte OPC_bipush = 16;
031:            public static final byte OPC_sipush = 17;
032:            public static final byte OPC_ldc = 18;
033:            public static final byte OPC_ldc_w = 19;
034:            public static final byte OPC_ldc2_w = 20;
035:            public static final byte OPC_iload = 21;
036:            public static final byte OPC_lload = 22;
037:            public static final byte OPC_fload = 23;
038:            public static final byte OPC_dload = 24;
039:            public static final byte OPC_aload = 25;
040:            public static final byte OPC_iload_0 = 26;
041:            public static final byte OPC_iload_1 = 27;
042:            public static final byte OPC_iload_2 = 28;
043:            public static final byte OPC_iload_3 = 29;
044:            public static final byte OPC_lload_0 = 30;
045:            public static final byte OPC_lload_1 = 31;
046:            public static final byte OPC_lload_2 = 32;
047:            public static final byte OPC_lload_3 = 33;
048:            public static final byte OPC_fload_0 = 34;
049:            public static final byte OPC_fload_1 = 35;
050:            public static final byte OPC_fload_2 = 36;
051:            public static final byte OPC_fload_3 = 37;
052:            public static final byte OPC_dload_0 = 38;
053:            public static final byte OPC_dload_1 = 39;
054:            public static final byte OPC_dload_2 = 40;
055:            public static final byte OPC_dload_3 = 41;
056:            public static final byte OPC_aload_0 = 42;
057:            public static final byte OPC_aload_1 = 43;
058:            public static final byte OPC_aload_2 = 44;
059:            public static final byte OPC_aload_3 = 45;
060:            public static final byte OPC_iaload = 46;
061:            public static final byte OPC_laload = 47;
062:            public static final byte OPC_faload = 48;
063:            public static final byte OPC_daload = 49;
064:            public static final byte OPC_aaload = 50;
065:            public static final byte OPC_baload = 51;
066:            public static final byte OPC_caload = 52;
067:            public static final byte OPC_saload = 53;
068:            public static final byte OPC_istore = 54;
069:            public static final byte OPC_lstore = 55;
070:            public static final byte OPC_fstore = 56;
071:            public static final byte OPC_dstore = 57;
072:            public static final byte OPC_astore = 58;
073:            public static final byte OPC_istore_0 = 59;
074:            public static final byte OPC_istore_1 = 60;
075:            public static final byte OPC_istore_2 = 61;
076:            public static final byte OPC_istore_3 = 62;
077:            public static final byte OPC_lstore_0 = 63;
078:            public static final byte OPC_lstore_1 = 64;
079:            public static final byte OPC_lstore_2 = 65;
080:            public static final byte OPC_lstore_3 = 66;
081:            public static final byte OPC_fstore_0 = 67;
082:            public static final byte OPC_fstore_1 = 68;
083:            public static final byte OPC_fstore_2 = 69;
084:            public static final byte OPC_fstore_3 = 70;
085:            public static final byte OPC_dstore_0 = 71;
086:            public static final byte OPC_dstore_1 = 72;
087:            public static final byte OPC_dstore_2 = 73;
088:            public static final byte OPC_dstore_3 = 74;
089:            public static final byte OPC_astore_0 = 75;
090:            public static final byte OPC_astore_1 = 76;
091:            public static final byte OPC_astore_2 = 77;
092:            public static final byte OPC_astore_3 = 78;
093:            public static final byte OPC_iastore = 79;
094:            public static final byte OPC_lastore = 80;
095:            public static final byte OPC_fastore = 81;
096:            public static final byte OPC_dastore = 82;
097:            public static final byte OPC_aastore = 83;
098:            public static final byte OPC_bastore = 84;
099:            public static final byte OPC_castore = 85;
100:            public static final byte OPC_sastore = 86;
101:            public static final byte OPC_pop = 87;
102:            public static final byte OPC_pop2 = 88;
103:            public static final byte OPC_dup = 89;
104:            public static final byte OPC_dup_x1 = 90;
105:            public static final byte OPC_dup_x2 = 91;
106:            public static final byte OPC_dup2 = 92;
107:            public static final byte OPC_dup2_x1 = 93;
108:            public static final byte OPC_dup2_x2 = 94;
109:            public static final byte OPC_swap = 95;
110:            public static final byte OPC_iadd = 96;
111:            public static final byte OPC_ladd = 97;
112:            public static final byte OPC_fadd = 98;
113:            public static final byte OPC_dadd = 99;
114:            public static final byte OPC_isub = 100;
115:            public static final byte OPC_lsub = 101;
116:            public static final byte OPC_fsub = 102;
117:            public static final byte OPC_dsub = 103;
118:            public static final byte OPC_imul = 104;
119:            public static final byte OPC_lmul = 105;
120:            public static final byte OPC_fmul = 106;
121:            public static final byte OPC_dmul = 107;
122:            public static final byte OPC_idiv = 108;
123:            public static final byte OPC_ldiv = 109;
124:            public static final byte OPC_fdiv = 110;
125:            public static final byte OPC_ddiv = 111;
126:            public static final byte OPC_irem = 112;
127:            public static final byte OPC_lrem = 113;
128:            public static final byte OPC_frem = 114;
129:            public static final byte OPC_drem = 115;
130:            public static final byte OPC_ineg = 116;
131:            public static final byte OPC_lneg = 117;
132:            public static final byte OPC_fneg = 118;
133:            public static final byte OPC_dneg = 119;
134:            public static final byte OPC_ishl = 120;
135:            public static final byte OPC_lshl = 121;
136:            public static final byte OPC_ishr = 122;
137:            public static final byte OPC_lshr = 123;
138:            public static final byte OPC_iushr = 124;
139:            public static final byte OPC_lushr = 125;
140:            public static final byte OPC_iand = 126;
141:            public static final byte OPC_land = 127;
142:            public static final byte OPC_ior = (byte) 128;
143:            public static final byte OPC_lor = (byte) 129;
144:            public static final byte OPC_ixor = (byte) 130;
145:            public static final byte OPC_lxor = (byte) 131;
146:            public static final byte OPC_iinc = (byte) 132;
147:            public static final byte OPC_i2l = (byte) 133;
148:            public static final byte OPC_i2f = (byte) 134;
149:            public static final byte OPC_i2d = (byte) 135;
150:            public static final byte OPC_l2i = (byte) 136;
151:            public static final byte OPC_l2f = (byte) 137;
152:            public static final byte OPC_l2d = (byte) 138;
153:            public static final byte OPC_f2i = (byte) 139;
154:            public static final byte OPC_f2l = (byte) 140;
155:            public static final byte OPC_f2d = (byte) 141;
156:            public static final byte OPC_d2i = (byte) 142;
157:            public static final byte OPC_d2l = (byte) 143;
158:            public static final byte OPC_d2f = (byte) 144;
159:            public static final byte OPC_i2b = (byte) 145;
160:            public static final byte OPC_i2c = (byte) 146;
161:            public static final byte OPC_i2s = (byte) 147;
162:            public static final byte OPC_lcmp = (byte) 148;
163:            public static final byte OPC_fcmpl = (byte) 149;
164:            public static final byte OPC_fcmpg = (byte) 150;
165:            public static final byte OPC_dcmpl = (byte) 151;
166:            public static final byte OPC_dcmpg = (byte) 152;
167:            public static final byte OPC_ifeq = (byte) 153;
168:            public static final byte OPC_ifne = (byte) 154;
169:            public static final byte OPC_iflt = (byte) 155;
170:            public static final byte OPC_ifge = (byte) 156;
171:            public static final byte OPC_ifgt = (byte) 157;
172:            public static final byte OPC_ifle = (byte) 158;
173:            public static final byte OPC_if_icmpeq = (byte) 159;
174:            public static final byte OPC_if_icmpne = (byte) 160;
175:            public static final byte OPC_if_icmplt = (byte) 161;
176:            public static final byte OPC_if_icmpge = (byte) 162;
177:            public static final byte OPC_if_icmpgt = (byte) 163;
178:            public static final byte OPC_if_icmple = (byte) 164;
179:            public static final byte OPC_if_acmpeq = (byte) 165;
180:            public static final byte OPC_if_acmpne = (byte) 166;
181:            public static final byte OPC_goto = (byte) 167;
182:            public static final byte OPC_jsr = (byte) 168;
183:            public static final byte OPC_ret = (byte) 169;
184:            public static final byte OPC_tableswitch = (byte) 170;
185:            public static final byte OPC_lookupswitch = (byte) 171;
186:            public static final byte OPC_ireturn = (byte) 172;
187:            public static final byte OPC_lreturn = (byte) 173;
188:            public static final byte OPC_freturn = (byte) 174;
189:            public static final byte OPC_dreturn = (byte) 175;
190:            public static final byte OPC_areturn = (byte) 176;
191:            public static final byte OPC_return = (byte) 177;
192:            public static final byte OPC_getstatic = (byte) 178;
193:            public static final byte OPC_putstatic = (byte) 179;
194:            public static final byte OPC_getfield = (byte) 180;
195:            public static final byte OPC_putfield = (byte) 181;
196:            public static final byte OPC_invokevirtual = (byte) 182;
197:            public static final byte OPC_invokespecial = (byte) 183;
198:            public static final byte OPC_invokestatic = (byte) 184;
199:            public static final byte OPC_invokeinterface = (byte) 185;
200:            public static final byte OPC_new = (byte) 187;
201:            public static final byte OPC_newarray = (byte) 188;
202:            public static final byte OPC_anewarray = (byte) 189;
203:            public static final byte OPC_arraylength = (byte) 190;
204:            public static final byte OPC_athrow = (byte) 191;
205:            public static final byte OPC_checkcast = (byte) 192;
206:            public static final byte OPC_instanceof  = (byte) 193;
207:            public static final byte OPC_monitorenter = (byte) 194;
208:            public static final byte OPC_monitorexit = (byte) 195;
209:            public static final byte OPC_wide = (byte) 196;
210:            public static final byte OPC_multianewarray = (byte) 197;
211:            public static final byte OPC_ifnull = (byte) 198;
212:            public static final byte OPC_ifnonnull = (byte) 199;
213:            public static final byte OPC_goto_w = (byte) 200;
214:            public static final byte OPC_jsr_w = (byte) 201;
215:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.