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

123

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DRET.java38 private boolean wide; field in class:RET
52 setIndex(index); // May set wide as side effect
62 if (wide) {
66 if (wide) {
75 wide = index > com.sun.org.apache.bcel.internal.Const.MAX_BYTE;
76 if (wide) {
77 super.setLength(4); // Including the wide byte
88 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
89 this.wide = wide;
[all...]
H A DIINC.java36 private boolean wide; field in class:IINC
56 setIndex(n); // May set wide as side effect
67 if (wide) {
71 if (wide) {
82 wide = (super.getIndex() > com.sun.org.apache.bcel.internal.Const.MAX_BYTE) || (Math.abs(c) > Byte.MAX_VALUE);
83 if (wide) {
84 super.setLength(6); // wide byte included
95 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
96 this.wide = wide;
[all...]
H A DLocalVariableInstruction.java41 private boolean wide() { method in class:LocalVariableInstruction
82 if (wide()) {
87 if (wide()) {
121 protected void initFromFile(final ByteSequence bytes, final boolean wide) throws IOException { argument
122 if (wide) {
166 if (wide()) {
H A DLDC_W.java29 * LDC_W - Push item from constant pool (wide index)
54 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
H A DJSR_W.java66 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
H A DGOTO_W.java66 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
H A DINVOKEINTERFACE.java90 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
91 super.initFromFile(bytes, wide);
H A DINVOKEDYNAMIC.java77 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
78 super.initFromFile(bytes, wide);
H A DLOOKUPSWITCH.java75 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
76 super.initFromFile(bytes, wide); // reads padding
H A DTABLESWITCH.java82 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
83 super.initFromFile(bytes, wide);
H A DMULTIANEWARRAY.java77 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
78 super.initFromFile(bytes, wide);
H A DSIPUSH.java77 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
H A DBIPUSH.java74 protected void initFromFile(final ByteSequence bytes, final boolean wide) throws IOException { argument
H A DNEWARRAY.java102 protected void initFromFile( final ByteSequence bytes, final boolean wide ) throws IOException {
H A DInstruction.java127 * @param wide "wide" instruction flag
131 protected void initFromFile(final ByteSequence bytes, final boolean wide) throws IOException { argument
147 boolean wide = false;
150 if (opcode == Const.WIDE) { // Read next opcode after wide byte
151 wide = true;
456 if (wide
458 throw new ClassGenException("Illegal opcode after wide: " + opcode);
461 obj.initFromFile(bytes, wide); // Do further initializations, if any
H A DCPInstruction.java103 * @param wide wide prefix?
106 protected void initFromFile(final ByteSequence bytes, final boolean wide) throws IOException { argument
H A DBranchInstruction.java161 * @param wide wide prefix?
165 protected void initFromFile(final ByteSequence bytes, final boolean wide) throws IOException { argument
/openjdk10/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);
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dc1_LIRAssembler_ppc.hpp41 int store(LIR_Opr from_reg, Register base, int offset, BasicType type, bool wide, bool unaligned);
42 int store(LIR_Opr from_reg, Register base, Register disp, BasicType type, bool wide);
44 int load(Register base, int offset, LIR_Opr to_reg, BasicType type, bool wide, bool unaligned);
45 int load(Register base, Register disp, LIR_Opr to_reg, BasicType type, bool wide);
/openjdk10/jdk/make/src/classes/build/tools/x11wrappergen/
H A DWrapperGenerator.java41 boolean wide; field in class:WrapperGenerator
249 String getJavaAccess(boolean wide) { argument
250 return getJavaAccessForType(type, wide);
252 static String getJavaAccessForType(int type, boolean wide) { argument
265 return (wide?"Long":"Int");
269 return (wide?"ULong":"UInt");
653 public String getOffsets(StructType stp,AtomicType atp, boolean wide) argument
656 return wide == true ? (String) sizeTable64bit.get(key) : (String) sizeTable32bit.get(key);
659 public String getStructSize(StructType stp, boolean wide) argument
661 return wide
664 getLongSize(boolean wide) argument
669 getPtrSize(boolean wide) argument
673 getBoolSize(boolean wide) argument
676 getOrdinalSize(String ordinal, boolean wide) argument
823 writeWrapperSubclass(StructType stp, PrintWriter pw, boolean wide) argument
913 readSizeInfo(InputStream is, boolean wide) argument
[all...]
/openjdk10/hotspot/test/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/
H A DSimpleDebugInfoTest.java259 HotSpotConstant wide = (HotSpotConstant) constantReflection.asJavaClass(type);
260 Register reg = asm.emitLoadPointer((HotSpotConstant) wide.compress());
273 HotSpotConstant wide = (HotSpotConstant) constantReflection.asJavaClass(type);
274 Register reg = asm.emitLoadPointer((HotSpotConstant) wide.compress());
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/debug/
H A DNashornClassReader.java326 boolean wide = false;
333 case 0xc4: //wide
334 wide = true;
338 i += wide ? 4 : 2;
367 case 0x19: //aload (wide)
372 case 0x3a: //astore wide
377 i += wide ? 3 : 2;
418 case 0x84: //iinc (wide)
419 i += wide ? 5 : 3;
432 if (wide) {
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.hpp171 void const2mem (LIR_Opr src, LIR_Opr dest, BasicType type, CodeEmitInfo* info, bool wide);
176 bool pop_fpu_stack, bool wide, bool unaligned);
181 CodeEmitInfo* info, bool wide, bool unaligned);
221 LIR_PatchCode patch_code, CodeEmitInfo* info, bool pop_fpu_stack, bool unaligned, bool wide);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java58 private static boolean wide = false; field in class:CodeHTML
184 /* Same for 32-bit wide jumps
205 if (wide) {
207 wide = false; // Clear flag
214 * Remember wide byte which is used to form a 16-bit address in the
219 wide = true;
220 buf.append("(wide)");
350 if (wide) {
353 wide = false;
/openjdk10/hotspot/src/share/vm/interpreter/
H A DtemplateTable.hpp50 wide_bit // set if template belongs to a wide instruction
134 static void ldc(bool wide);
136 static void fast_aldc(bool wide);
311 static void wide();

Completed in 97 milliseconds

123