Searched refs:inputVal (Results 1 - 4 of 4) sorted by relevance

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/
H A DArithmeticLIRGeneratorTool.java79 Value emitFloatConvert(FloatConvert op, Value inputVal); argument
81 Value emitReinterpret(LIRKind to, Value inputVal); argument
83 Value emitNarrow(Value inputVal, int bits); argument
85 Value emitSignExtend(Value inputVal, int fromBits, int toBits); argument
87 Value emitZeroExtend(Value inputVal, int fromBits, int toBits); argument
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/
H A DAArch64ArithmeticLIRGenerator.java194 public Value emitFloatConvert(FloatConvert op, Value inputVal) { argument
196 LIRKind resultLirKind = LIRKind.combine(inputVal).changeType(resultPlatformKind);
198 getLIRGen().append(new AArch64FloatConvertOp(op, result, getLIRGen().asAllocatable(inputVal)));
224 public Value emitReinterpret(LIRKind to, Value inputVal) { argument
225 ValueKind<?> from = inputVal.getValueKind();
227 return inputVal;
230 getLIRGen().append(new AArch64ReinterpretOp(result, getLIRGen().asAllocatable(inputVal)));
235 public Value emitNarrow(Value inputVal, int bits) { argument
236 if (inputVal.getPlatformKind() == AArch64Kind.QWORD && bits <= 32) {
237 LIRKind resultKind = getResultLirKind(bits, inputVal);
247 emitZeroExtend(Value inputVal, int fromBits, int toBits) argument
259 emitSignExtend(Value inputVal, int fromBits, int toBits) argument
366 emitNegate(Value inputVal) argument
418 emitUnary(AArch64ArithmeticOp op, Value inputVal) argument
453 emitStore(ValueKind<?> lirKind, Value address, Value inputVal, LIRFrameState state) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/
H A DAMD64ArithmeticLIRGenerator.java134 public Variable emitNegate(Value inputVal) { argument
135 AllocatableValue input = getLIRGen().asAllocatable(inputVal);
167 public Variable emitNot(Value inputVal) { argument
168 AllocatableValue input = getLIRGen().asAllocatable(inputVal);
778 public Value emitReinterpret(LIRKind to, Value inputVal) { argument
779 ValueKind<?> from = inputVal.getValueKind();
781 return inputVal;
784 AllocatableValue input = getLIRGen().asAllocatable(inputVal);
848 public Value emitNarrow(Value inputVal, int bits) { argument
849 if (inputVal
858 emitSignExtend(Value inputVal, int fromBits, int toBits) argument
890 emitZeroExtend(Value inputVal, int fromBits, int toBits) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.sparc/src/org/graalvm/compiler/core/sparc/
H A DSPARCArithmeticLIRGenerator.java567 public Value emitNarrow(Value inputVal, int bits) { argument
568 if (inputVal.getPlatformKind() == XWORD && bits <= 32) {
569 LIRKind resultKind = LIRKind.combine(inputVal).changeType(WORD);
571 getLIRGen().emitMove(result, inputVal);
574 return inputVal;
584 public Value emitSignExtend(Value inputVal, int fromBits, int toBits) { argument
587 LIRKind resultKind = LIRKind.combine(inputVal).changeType(toBits > 32 ? XWORD : WORD);
590 return inputVal;
591 } else if (isJavaConstant(inputVal)) {
592 JavaConstant javaConstant = asJavaConstant(inputVal);
637 emitReinterpret(LIRKind to, Value inputVal) argument
664 emitStore(ValueKind<?> kind, Value address, Value inputVal, LIRFrameState state) argument
[all...]

Completed in 66 milliseconds