Searched refs:g0 (Results 1 - 25 of 32) sorted by relevance

12

/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DGapVector.java63 g0 = 0;
90 return g0;
110 private int g0; field in class:GapVector
161 int new_gs = (g1 - g0) + nItems;
162 if (end <= g0) {
164 if (g0 != end) {
167 // Adjust g0.
168 shiftGapStartDown(g0 - nItems);
169 } else if (position >= g0) {
171 if (g0 !
[all...]
H A DGapContent.java192 int g0 = getGapStart();
195 if ((where + len) <= g0) {
199 } else if (where >= g0) {
202 chars.offset = g1 + where - g0;
205 int before = g0 - where;
237 int g0 = getGapStart();
239 int index = (offset < g0) ? offset : offset + (g1 - g0);
284 int g0 = getGapStart();
286 int offs = (index < g0)
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc/src/org/graalvm/compiler/asm/sparc/
H A DSPARCMacroAssembler.java32 import static jdk.vm.ci.sparc.SPARC.g0;
50 private static final SPARCAddress Placeholder = new SPARCAddress(g0, 0);
117 or(g0, g0, dst);
121 stb(g0, addr);
125 sth(g0, addr);
129 stx(g0, addr);
133 subcc(rs1, rs2, g0);
137 subcc(rs1, simm13, g0);
149 jmpl(address.getBase(), address.getDisplacement(), g0);
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.sparc/src/org/graalvm/compiler/hotspot/sparc/
H A DSPARCHotSpotLeaveUnpackFramesStackFrameOp.java25 import static jdk.vm.ci.sparc.SPARC.g0;
76 masm.stx(g0, lastJavaPc);
77 masm.stx(g0, new SPARCAddress(thread, threadLastJavaSpOffset));
78 masm.stw(g0, new SPARCAddress(thread, threadJavaFrameAnchorFlagsOffset));
H A DSPARCHotSpotCRuntimeCallEpilogueOp.java27 import static jdk.vm.ci.sparc.SPARC.g0;
70 masm.stx(g0, new SPARCAddress(thread, threadLastJavaSpOffset));
71 masm.stx(g0, new SPARCAddress(thread, threadLastJavaPcOffset));
72 masm.stw(g0, new SPARCAddress(thread, threadJavaFrameAnchorFlagsOffset));
H A DSPARCHotSpotSafepointOp.java26 import static jdk.vm.ci.sparc.SPARC.g0;
74 masm.ldx(new SPARCAddress(safepointPollAddress, 0), g0);
H A DSPARCHotSpotJumpToExceptionHandlerInCallerOp.java27 import static jdk.vm.ci.sparc.SPARC.g0;
78 masm.jmpl(asRegister(handlerInCallerPc), 0, g0);
H A DSPARCHotSpotEnterUnpackFramesStackFrameOp.java28 import static jdk.vm.ci.sparc.SPARC.g0;
112 masm.stx(g0, new SPARCAddress(thread, threadLastJavaPcOffset));
H A DSPARCHotSpotStrategySwitchOp.java32 import static jdk.vm.ci.sparc.SPARC.g0;
107 final Register constantBaseRegister = AllocatableValue.ILLEGAL.equals(constantTableBase) ? g0 : asRegister(constantTableBase);
/openjdk9/hotspot/test/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/sparc/
H A DSPARCTestAssembler.java150 emitOp3(0b10, ret, 0b000010, SPARC.g0, lo); // OR g0, lo, ret
383 emitOp3(0b10, to, 0b000010, from, SPARC.g0); // OR from, g0, to
395 emitOp3(0b10, SPARC.g0, 0b111000, SPARC.i7, 8); // JMPL [i7+8], g0
396 emitOp3(0b10, SPARC.g0, 0b111101, SPARC.g0, SPARC.g0); // RESTORE g0, g
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCOP3Op.java33 import static jdk.vm.ci.sparc.SPARC.g0;
62 return new SPARCOP3Op(op3, g0.asValue(LIRKind.value(rs2.getPlatformKind())), rs2, rd, state);
70 return new SPARCOP3Op(op3, rs1, rs2, g0.asValue(LIRKind.value(rs2.getPlatformKind())), state);
96 emitOp3(masm, op3, rs1, rs2, g0.asValue(LIRKind.value(rs2.getPlatformKind())));
H A DSPARCMove.java44 import static jdk.vm.ci.sparc.SPARC.g0;
97 const2reg(crb, masm, result, g0, constant, getDelayedControlTransfer());
100 const2stack(crb, masm, slot, g0, getDelayedControlTransfer(), constant);
406 masm.ldub(addr, g0);
525 masm.st(g0, addr, byteCount);
531 move(crb, masm, result, g0, input, delaySlotLir);
569 emitStore(g0.asValue(LIRKind.combine(result)), resultAddress, result.getPlatformKind(), delaySlotLir, null, crb, masm);
653 masm.or(g0, input.asInt(), resultRegister);
655 if (constantTableBase.equals(g0)) {
668 masm.or(g0, (in
[all...]
H A DSPARCOPFOp.java52 this(opf, SPARC.g0.asValue(LIRKind.value(SPARCKind.SINGLE)), rs2, rd);
H A DSPARCBitManipulationOp.java28 import static jdk.vm.ci.sparc.SPARC.g0;
84 masm.srl(dst, g0, dst);
H A DSPARCArrayEqualsOp.java36 import static jdk.vm.ci.sparc.SPARC.g0;
129 masm.mov(g0, result);
160 masm.sub(g0, length, length);
H A DSPARCArithmetic.java45 import static jdk.vm.ci.sparc.SPARC.g0;
248 masm.wrccr(SPARC.g0, 1 << (SPARCAssembler.CCR_ICC_SHIFT + SPARCAssembler.CCR_V_SHIFT));
296 masm.wrccr(g0, 1 << (CCR_XCC_SHIFT + CCR_V_SHIFT));
/openjdk9/hotspot/src/os_cpu/linux_sparc/vm/
H A Dlinux_sparc.s27 # -- wr %g0, %asi
34 mov %g0, %o0
/openjdk9/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s27 !! -- wr %g0, %asi
33 mov %g0, %o0
/openjdk9/jdk/test/java/awt/Graphics2D/DrawString/
H A DAlphaSurfaceText.java75 int g0 = (rgb0 & 0x00ff00) >> 8;
77 int gdiff = g0-g1; if (gdiff<0) gdiff = -gdiff;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.sparc.test/src/org/graalvm/compiler/asm/sparc/test/
H A DSPARCAssemblerTest.java35 import static jdk.vm.ci.sparc.SPARC.g0;
81 testControlTransferOp(l -> CBCOND.emit(masm, CarryClear, false, g0, 3, l), -512, 511);
94 testControlTransferOp(l -> BPR.emit(masm, Rc_z, ANNUL, PREDICT_NOT_TAKEN, g0, l), -maxDisp,
/openjdk9/jdk/test/javax/imageio/plugins/shared/
H A DBitDepth.java217 int g0 = ((color >> 8) & 0xff) - g;
219 return r0*r0 + g0*g0 + b0*b0;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/
H A DSPARCArithmeticLIRGenerator.java60 import static jdk.vm.ci.sparc.SPARC.g0;
119 getLIRGen().append(new SPARCOP3Op(Op3s.Srl, operand, SPARC.g0.asValue(), usedOperand));
121 getLIRGen().append(new SPARCOP3Op(Op3s.Popc, SPARC.g0.asValue(), usedOperand, result));
158 getLIRGen().append(new SPARCOPFOp(opf, g0.asValue(), input, result));
177 getLIRGen().append(new SPARCOPFOp(opf, g0.asValue(), input, result));
198 getLIRGen().append(new SPARCOPFOp(opf, g0.asValue(), input, result));
333 Value zero = SPARC.g0.asValue(LIRKind.value(SPARCKind.WORD));
355 Variable as = emitBinary(result.getValueKind(), Sra, a, g0.asValue(LIRKind.value(WORD)));
356 Variable bs = emitBinary(result.getValueKind(), Sra, b, g0.asValue(LIRKind.value(WORD)));
627 getLIRGen().append(new SPARCOP3Op(Sra, inputVal, SPARC.g0
[all...]
/openjdk9/jdk/test/java/awt/FontClass/
H A DHelvLtOblTest.java150 int g0 = (rgb0 & 0x00ff00) >> 8;
152 int gdiff = g0-g1; if (gdiff<0) gdiff = -gdiff;
/openjdk9/jdk/test/javax/swing/JComponent/4337267/
H A Dbug4337267.java245 Graphics g0 = image.getGraphics();
246 super.paint(g0);
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.sparc/src/jdk/vm/ci/sparc/
H A DSPARC.java50 public static final Register g0 = new Register(0, 0, "g0", CPU); field in class:SPARC
184 g0, g1, g2, g3, g4, g5, g6, g7,
212 g0, g1, g2, g3, g4, g5, g6, g7,

Completed in 192 milliseconds

12