Searched refs:wide (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DRET.java71 private boolean wide; field in class:RET
82 setIndex(index); // May set wide as side effect
90 if(wide)
95 if(wide)
102 if(wide = index > com.sun.org.apache.bcel.internal.Constants.MAX_BYTE)
103 length = 4; // Including the wide byte
111 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
113 this.wide = wide;
115 if(wide) {
[all...]
H A DIINC.java69 private boolean wide; field in class:IINC
88 setIndex(n); // May set wide as side effect
97 if(wide) // Need WIDE prefix ?
102 if(wide) {
112 if(wide = ((n > com.sun.org.apache.bcel.internal.Constants.MAX_SHORT) ||
114 length = 6; // wide byte included
122 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
124 this.wide = wide;
126 if(wide) {
[all...]
H A DLocalVariableInstruction.java76 private final boolean wide() { return n > Constants.MAX_BYTE; } method in class:LocalVariableInstruction
115 if(wide()) // Need WIDE prefix ?
121 if(wide())
151 protected void initFromFile(ByteSequence bytes, boolean wide) argument
154 if(wide) {
192 if(wide()) // Need WIDE prefix ?
H A DLDC_W.java64 * LDC_W - Push item from constant pool (wide index)
84 protected void initFromFile(ByteSequence bytes, boolean wide) argument
H A DLOOKUPSWITCH.java102 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
104 super.initFromFile(bytes, wide); // reads padding
H A DInstruction.java162 * @param wide "wide" instruction flag
164 protected void initFromFile(ByteSequence bytes, boolean wide) argument
178 boolean wide = false;
182 if(opcode == Constants.WIDE) { // Read next opcode after wide byte
183 wide = true;
206 if(wide && !((obj instanceof LocalVariableInstruction) ||
209 throw new Exception("Illegal opcode after wide: " + opcode);
212 obj.initFromFile(bytes, wide); // Do further initializations, if any
H A DBIPUSH.java105 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DGOTO_W.java93 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DJSR_W.java93 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DSIPUSH.java102 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DINVOKEINTERFACE.java112 protected void initFromFile(ByteSequence bytes, boolean wide) argument
115 super.initFromFile(bytes, wide);
H A DMULTIANEWARRAY.java103 protected void initFromFile(ByteSequence bytes, boolean wide) argument
106 super.initFromFile(bytes, wide);
H A DTABLESWITCH.java111 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
113 super.initFromFile(bytes, wide);
H A DNEWARRAY.java119 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DCPInstruction.java133 * @param wide wide prefix?
135 protected void initFromFile(ByteSequence bytes, boolean wide) argument
H A DBranchInstruction.java186 * @param wide wide prefix?
190 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DSelect.java158 protected void initFromFile(ByteSequence bytes, boolean wide) throws IOException argument
H A DLDC.java118 protected void initFromFile(ByteSequence bytes, boolean wide) argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.hpp43 int store(LIR_Opr from_reg, Register base, int offset, BasicType type, bool wide, bool unaligned);
44 int store(LIR_Opr from_reg, Register base, Register disp, BasicType type, bool wide);
46 int load(Register base, int offset, LIR_Opr to_reg, BasicType type, bool wide, bool unaligned);
47 int load(Register base, Register disp, LIR_Opr to_reg, BasicType type, bool wide);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/generator/
H A DWrapperGenerator.java39 boolean wide; field in class:WrapperGenerator
247 String getJavaAccess(boolean wide) { argument
248 return getJavaAccessForType(type, wide);
250 static String getJavaAccessForType(int type, boolean wide) { argument
263 return (wide?"Long":"Int");
267 return (wide?"ULong":"UInt");
651 public String getOffsets(StructType stp,AtomicType atp, boolean wide) argument
654 return wide == true ? (String) sizeTable64bit.get(key) : (String) sizeTable32bit.get(key);
657 public String getStructSize(StructType stp, boolean wide) argument
659 return wide
662 getLongSize(boolean wide) argument
667 getPtrSize(boolean wide) argument
671 getBoolSize(boolean wide) argument
674 getOrdinalSize(String ordinal, boolean wide) argument
817 writeWrapperSubclass(StructType stp, PrintWriter pw, boolean wide) argument
907 readSizeInfo(InputStream is, boolean wide) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.hpp167 void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);
172 bool pop_fpu_stack, bool wide, bool unaligned);
177 CodeEmitInfo* info, bool wide, bool unaligned);
215 LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java78 private static boolean wide=false; field in class:CodeHTML
202 /* Same for 32-bit wide jumps
215 if(wide) {
217 wide=false; // Clear flag
226 * Remember wide byte which is used to form a 16-bit address in the
231 wide = true;
232 buf.append("(wide)");
362 if(wide) {
365 wide = false;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.hpp66 wide_bit // set if template belongs to a wide instruction
149 static void ldc(bool wide);
151 static void fast_aldc(bool wide);
320 static void wide();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DByteCodes.java238 wide = 196, field in interface:ByteCodes
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java78 private static boolean wide=false; /* The `WIDE' instruction is used in the field in class:Utility
79 * byte code to allow 16-bit wide indices
290 /* 32-bit wide jumps
301 if(wide) {
303 wide=false; // Clear flag
312 * Remember wide byte which is used to form a 16-bit address in the
317 wide = true;
318 buf.append("\t(wide)");
411 if(wide) {
414 wide
[all...]

Completed in 128 milliseconds

12