Searched refs:op1 (Results 1 - 25 of 36) sorted by relevance

12

/openjdk10/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.inline.hpp31 inline jfloat BytecodeInterpreter::VMfloatAdd(jfloat op1, jfloat op2) { argument
32 return op1 + op2;
35 inline jfloat BytecodeInterpreter::VMfloatSub(jfloat op1, jfloat op2) { argument
36 return op1 - op2;
39 inline jfloat BytecodeInterpreter::VMfloatMul(jfloat op1, jfloat op2) { argument
40 return op1 * op2;
43 inline jfloat BytecodeInterpreter::VMfloatDiv(jfloat op1, jfloat op2) { argument
44 return op1 / op2;
47 inline jfloat BytecodeInterpreter::VMfloatRem(jfloat op1, jfloat op2) { argument
48 return fmod(op1, op
55 VMfloatCompare(jfloat op1, jfloat op2, int32_t direction) argument
70 VMlongAdd(jlong op1, jlong op2) argument
74 VMlongAnd(jlong op1, jlong op2) argument
78 VMlongDiv(jlong op1, jlong op2) argument
84 VMlongMul(jlong op1, jlong op2) argument
88 VMlongOr(jlong op1, jlong op2) argument
92 VMlongSub(jlong op1, jlong op2) argument
96 VMlongXor(jlong op1, jlong op2) argument
100 VMlongRem(jlong op1, jlong op2) argument
106 VMlongUshr(jlong op1, jint op2) argument
110 VMlongShr(jlong op1, jint op2) argument
114 VMlongShl(jlong op1, jint op2) argument
138 VMlongEq(jlong op1, jlong op2) argument
142 VMlongNe(jlong op1, jlong op2) argument
146 VMlongGe(jlong op1, jlong op2) argument
150 VMlongLe(jlong op1, jlong op2) argument
154 VMlongLt(jlong op1, jlong op2) argument
158 VMlongGt(jlong op1, jlong op2) argument
162 VMlongCompare(jlong op1, jlong op2) argument
182 VMdoubleAdd(jdouble op1, jdouble op2) argument
186 VMdoubleDiv(jdouble op1, jdouble op2) argument
191 VMdoubleMul(jdouble op1, jdouble op2) argument
199 VMdoubleRem(jdouble op1, jdouble op2) argument
203 VMdoubleSub(jdouble op1, jdouble op2) argument
207 VMdoubleCompare(jdouble op1, jdouble op2, int32_t direction) argument
230 VMintAdd(jint op1, jint op2) argument
234 VMintAnd(jint op1, jint op2) argument
238 VMintDiv(jint op1, jint op2) argument
244 VMintMul(jint op1, jint op2) argument
252 VMintOr(jint op1, jint op2) argument
256 VMintRem(jint op1, jint op2) argument
262 VMintShl(jint op1, jint op2) argument
266 VMintShr(jint op1, jint op2) argument
270 VMintSub(jint op1, jint op2) argument
274 VMintUshr(jint op1, jint op2) argument
278 VMintXor(jint op1, jint op2) argument
[all...]
/openjdk10/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp226 static jlong VMlongAdd(jlong op1, jlong op2);
227 static jlong VMlongAnd(jlong op1, jlong op2);
228 static jlong VMlongDiv(jlong op1, jlong op2);
229 static jlong VMlongMul(jlong op1, jlong op2);
230 static jlong VMlongOr (jlong op1, jlong op2);
231 static jlong VMlongSub(jlong op1, jlong op2);
232 static jlong VMlongXor(jlong op1, jlong op2);
233 static jlong VMlongRem(jlong op1, jlong op2);
242 static jlong VMlongUshr(jlong op1, jint op2);
243 static jlong VMlongShl (jlong op1, jin
[all...]
/openjdk10/hotspot/test/compiler/intrinsics/bigInteger/
H A DTestMulAdd.java52 public static BigInteger base_multiply(BigInteger op1) { argument
53 return op1.multiply(op1);
57 public static BigInteger new_multiply(BigInteger op1) { argument
58 return op1.multiply(op1);
H A DTestSquareToLen.java49 public static BigInteger base_multiply(BigInteger op1) { argument
50 return op1.multiply(op1);
54 public static BigInteger new_multiply(BigInteger op1) { argument
55 return op1.multiply(op1);
H A DTestMultiplyToLen.java46 public static BigInteger base_multiply(BigInteger op1, BigInteger op2) { argument
47 return op1.multiply(op2);
51 public static BigInteger new_multiply(BigInteger op1, BigInteger op2) { argument
52 return op1.multiply(op2);
/openjdk10/langtools/test/tools/javac/resolve/
H A DBitWiseOperators.java59 public static boolean compatible(OperandType op1, OperandType op2) { argument
60 return !(op1 == BOOLEAN ^ op2 == BOOLEAN);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DOperationFactory.java61 * <li>compose( Operation op1, Operation op2 ) is the operation that applies op2 to the result of applying
62 * op1 to the value</li>
464 private Operation op1 ; field in class:OperationFactory.ComposeAction
467 ComposeAction( Operation op1, Operation op2 ) argument
469 this.op1 = op1 ;
475 return op2.operate( op1.operate( value ) ) ;
479 return "composition(" + op1 + "," + op2 + ")" ;
483 public static Operation compose( Operation op1, Operation op2 ) argument
485 return new ComposeAction( op1, op
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java89 * @param op1 the first instruction to compare
91 * @return {@code true} if {@code op1} and {@code op2} are the same by the above algorithm
93 private static boolean same(LIRInstruction op1, LIRInstruction op2) { argument
94 assert op1 != null;
97 if (ValueMoveOp.isValueMoveOp(op1) && ValueMoveOp.isValueMoveOp(op2)) {
98 ValueMoveOp move1 = ValueMoveOp.asValueMoveOp(op1);
104 } else if (LoadConstantOp.isLoadConstantOp(op1) && LoadConstantOp.isLoadConstantOp(op2)) {
105 LoadConstantOp move1 = LoadConstantOp.asLoadConstantOp(op1);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DAddNode.java133 Value op1 = nodeValueMap.operand(getX());
134 assert op1 != null : getX() + ", this=" + this;
137 Value tmp = op1;
138 op1 = op2;
141 nodeValueMap.setResult(this, gen.emitAdd(op1, op2, false));
H A DMulNode.java151 Value op1 = nodeValueMap.operand(getX());
154 Value tmp = op1;
155 op1 = op2;
158 nodeValueMap.setResult(this, gen.emitMul(op1, op2, false));
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJOp.java228 String op1; field in class:JOp.TernaryOp
234 TernaryOp(String op1, String op2, argument
237 this.op1 = op1;
244 f.p('(').g(e1).p(op1).g(e2).p(op2).g(e3).p(')');
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.test/src/org/graalvm/compiler/lir/test/
H A DCompositeValueReplacementTest1.java144 LIRInstruction op1 = new TestOp(compValue1);
147 op1.forEachInput((instruction, value, mode, flags) -> {
157 op1.visitEachInput((instruction, value, mode, flags) -> assertEquals(dummyValue2, value));
/openjdk10/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp180 LIR_Op1* op1 = op->as_Op1(); local
193 } else if (op1 != NULL) {
194 handle_op1(op1);
462 void FpuStackAllocator::handle_op1(LIR_Op1* op1) { argument
463 LIR_Opr in = op1->in_opr();
464 LIR_Opr res = op1->result_opr();
471 switch (op1->code()) {
493 pop_always(op1, in);
527 compute_debug_information(op1);
530 pop_if_last_use(op1, i
[all...]
H A Dc1_LinearScan_x86.hpp171 void handle_op1(LIR_Op1* op1);
/openjdk10/hotspot/src/share/vm/opto/
H A Daddnode.cpp243 int op1 = in1->Opcode(); local
246 if ( op1 == Op_AddI && op2 == Op_SubI ) {
250 op1 = op2;
253 if( op1 == Op_SubI ) {
295 if( op1 == Op_SubI && phase->type(in1->in(1)) == TypeInt::ZERO )
309 if( op1 == Op_URShiftI && op2 == Op_ConI &&
374 int op1 = in1->Opcode(); local
377 if ( op1 == Op_AddL && op2 == Op_SubL ) {
381 op1 = op2;
385 if( op1
[all...]
H A Dsubnode.cpp144 uint op1 = in1->Opcode(); local
150 ( ( op1 == Op_AddI || op1 == Op_SubI ) &&
168 if( op1 == Op_AddI && ok_to_convert(in1, in2) ) {
206 if( op1 == Op_SubI &&
225 if( op1 == Op_AddI && op2 == Op_AddI && in1->in(1) == in2->in(1) )
229 if( op1 == Op_AddI && op2 == Op_AddI && in1->in(2) == in2->in(2) )
233 if( op1 == Op_AddI && op2 == Op_AddI && in1->in(2) == in2->in(1) )
237 if( op1 == Op_AddI && op2 == Op_AddI && in1->in(1) == in2->in(2) )
274 uint op1 local
[all...]
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Dassembler_aarch64.hpp974 void system(int op0, int op1, int CRn, int CRm, int op2,
980 f(op1, 18, 16);
995 // registers where op1 (instr[20:19]) == 11 and, (currently) only
998 void msr(int op1, int CRn, int CRm, int op2, Register rt) {
1001 f(op1, 18, 16);
1009 void mrs(int op1, int CRn, int CRm, int op2, Register rt) {
1012 f(op1, 18, 16);
1035 void sys(int op1, int CRn, int CRm, int op2,
1037 system(0b01, op1, CRn, CRm, op2, rt);
1041 // op1 CR
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp483 LIR_Op1* op1 = (LIR_Op1*)op; local
485 if (op1->_info) do_info(op1->_info);
486 if (op1->_opr->is_valid()) do_input(op1->_opr);
487 if (op1->_result->is_valid()) do_output(op1->_result);
495 LIR_Op1* op1 = (LIR_Op1*)op; local
497 assert(op1->_info != NULL, ""); do_info(op1
673 LIR_Op1* op1 = (LIR_Op1*)op; local
[all...]
H A Dc1_LinearScan.cpp436 LIR_Op1* op1 = (LIR_Op1*)op; local
437 Interval* interval = interval_at(op1->result_opr()->vreg_number());
441 TRACE_LINEAR_SCAN(4, tty->print_cr("eliminating move from interval %d to %d", op1->in_opr()->vreg_number(), op1->result_opr()->vreg_number()));
5907 bool EdgeMoveOptimizer::operations_different(LIR_Op* op1, LIR_Op* op2) { argument
5908 if (op1 == NULL || op2 == NULL) {
5913 if (op1->code() == lir_move && op2->code() == lir_move) {
5914 assert(op1->as_Op1() != NULL, "move must be LIR_Op1");
5916 LIR_Op1* move1 = (LIR_Op1*)op1;
5923 } else if (op1
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DOperators.java160 OperatorSymbol resolveBinary(DiagnosticPosition pos, JCTree.Tag tag, Type op1, Type op2) { argument
163 binop -> binop.test(op1, op2),
164 binop -> binop.resolve(op1, op2),
165 () -> reportErrorIfNeeded(pos, tag, op1, op2));
584 TypeTag op1 = unaryPromotion(arg1).getTag();
586 return (op1 == TypeTag.LONG || op1 == TypeTag.INT) &&
H A DInfer.java1171 boolean doIncorporationOp(IncorporationBinaryOpKind opKind, Type op1, Type op2, Warner warn) { argument
1172 IncorporationBinaryOp newOp = new IncorporationBinaryOp(opKind, op1, op2);
1188 boolean apply(Type op1, Type op2, Warner warn, Types types) {
1189 return types.isSubtypeUnchecked(op1, op2, warn);
1194 boolean apply(Type op1, Type op2, Warner warn, Types types) {
1195 return types.isSameType(op1, op2);
1199 abstract boolean apply(Type op1, Type op2, Warner warn, Types types); argument
1212 Type op1; field in class:Infer.IncorporationBinaryOp
1215 IncorporationBinaryOp(IncorporationBinaryOpKind opKind, Type op1, Type op2) { argument
1217 this.op1
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A DattachListener.cpp173 VM_PrintThreads op1(out, print_concurrent_locks);
174 VMThread::execute(&op1);
H A DdiagnosticCommand.cpp607 VM_PrintThreads op1(output(), _locks.value());
608 VMThread::execute(&op1);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DParserTable.java838 Operation op1 = OperationFactory.compose( rangeop, admap ) ;
839 Operation result = OperationFactory.compose( op1, OperationFactory.convertIntegerToShort() ) ;
929 Operation op1 = OperationFactory.compose( indexOp, clsop ) ;
930 Operation mop = OperationFactory.maskErrorAction( op1 ) ;
1047 Operation op1 = OperationFactory.compose( indexOp, clsop ) ;
1048 Operation mop = OperationFactory.maskErrorAction( op1 ) ;
/openjdk10/hotspot/src/share/vm/runtime/
H A Dos.cpp356 VM_FindDeadlocks op1(tty);
357 VMThread::execute(&op1);
360 VM_GC_HeapInspection op1(tty, true /* force full GC before heap inspection */);
361 VMThread::execute(&op1);

Completed in 470 milliseconds

12