Searched refs:test_only (Results 1 - 10 of 10) sorted by relevance

/openjdk9/hotspot/src/cpu/s390/vm/
H A DmacroAssembler_s390.hpp119 // - For test_only == true, the result of the logicalOP is only used to set the condition code, dst remains unchanged.
120 // For test_only == false, the result of the logicalOP replaces the selected bits of dst.
139 bool test_only);
143 bool test_only);
H A DmacroAssembler_s390.cpp560 int nRotate, bool test_only) {
561 guarantee(!test_only, "Emitter not fit for test_only instruction variant.");
564 z_rxsbg(dst, src, lBitPos, rBitPos, nRotate, test_only); // Rotate, then xor selected.
571 int nRotate, bool test_only) {
572 guarantee(!test_only, "Emitter not fit for test_only instruction variant.");
575 z_rosbg(dst, src, lBitPos, rBitPos, nRotate, test_only); // Rotate, then xor selected.
582 int nRotate, bool test_only) {
583 guarantee(!test_only, "Emitte
559 rotate_then_and(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, bool test_only) argument
570 rotate_then_or(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, bool test_only) argument
581 rotate_then_xor(Register dst, Register src, int lBitPos, int rBitPos, int nRotate, bool test_only) argument
[all...]
H A Dassembler_s390.inline.hpp347 inline void Assembler::z_rnsbg( Register r1, Register r2, int64_t spos3, int64_t epos4, int64_t nrot5, bool test_only) { // Rotate then AND selected bits. -- z196 argument
352 emit_48( RNSBG_ZOPC | regt(r1, 8, len) | regt(r2, 12, len) | uimm6(spos3, 16+2, len) | uimm6(epos4, 24+2, len) | uimm6(nrot5, 32+2, len) | u_field(test_only ? 1 : 0, len-16-1, len-16-1));
354 inline void Assembler::z_rxsbg( Register r1, Register r2, int64_t spos3, int64_t epos4, int64_t nrot5, bool test_only) { // Rotate then XOR selected bits. -- z196 argument
359 emit_48( RXSBG_ZOPC | regt(r1, 8, len) | regt(r2, 12, len) | uimm6(spos3, 16+2, len) | uimm6(epos4, 24+2, len) | uimm6(nrot5, 32+2, len) | u_field(test_only ? 1 : 0, len-16-1, len-16-1));
361 inline void Assembler::z_rosbg( Register r1, Register r2, int64_t spos3, int64_t epos4, int64_t nrot5, bool test_only) { // Rotate then OR selected bits. -- z196 argument
366 emit_48( ROSBG_ZOPC | regt(r1, 8, len) | regt(r2, 12, len) | uimm6(spos3, 16+2, len) | uimm6(epos4, 24+2, len) | uimm6(nrot5, 32+2, len) | u_field(test_only ? 1 : 0, len-16-1, len-16-1));
H A Dassembler_s390.hpp1993 inline void z_rnsbg( Register r1, Register r2, int64_t spos3, int64_t epos4, int64_t nrot5, bool test_only = false); // rotate then AND selected bits -- z196
1994 inline void z_rxsbg( Register r1, Register r2, int64_t spos3, int64_t epos4, int64_t nrot5, bool test_only = false); // rotate then XOR selected bits -- z196
1995 inline void z_rosbg( Register r1, Register r2, int64_t spos3, int64_t epos4, int64_t nrot5, bool test_only = false); // rotate then OR selected bits -- z196
/openjdk9/hotspot/test/compiler/c2/cr8004867/
H A DTestIntUnsafeCAS.java74 static int test(boolean test_only) { argument
521 if (errn > 0 || test_only)
H A DTestIntUnsafeVolatile.java74 static int test(boolean test_only) { argument
521 if (errn > 0 || test_only)
H A DTestIntUnsafeOrdered.java74 static int test(boolean test_only) { argument
521 if (errn > 0 || test_only)
H A DTestIntAtomicCAS.java59 static int test(boolean test_only) { argument
506 if (errn > 0 || test_only)
H A DTestIntAtomicOrdered.java59 static int test(boolean test_only) { argument
506 if (errn > 0 || test_only)
H A DTestIntAtomicVolatile.java59 static int test(boolean test_only) { argument
506 if (errn > 0 || test_only)

Completed in 131 milliseconds