Searched refs:callType (Results 1 - 12 of 12) sorted by relevance

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DLoweredCallTargetNode.java38 protected final CallingConvention.Type callType; field in class:LoweredCallTargetNode
42 CallingConvention.Type callType, InvokeKind invokeKind) {
45 this.callType = callType;
52 public CallingConvention.Type callType() { method in class:LoweredCallTargetNode
53 return callType;
40 LoweredCallTargetNode(NodeClass<? extends LoweredCallTargetNode> c, ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, CallingConvention.Type callType, InvokeKind invokeKind) argument
H A DIndirectCallTargetNode.java40 CallingConvention.Type callType,
42 this(TYPE, computedAddress, arguments, returnStamp, signature, target, callType, invokeKind);
47 ResolvedJavaMethod target, CallingConvention.Type callType, InvokeKind invokeKind) {
48 super(c, arguments, returnStamp, signature, target, callType, invokeKind);
39 IndirectCallTargetNode(ValueNode computedAddress, ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, CallingConvention.Type callType, InvokeKind invokeKind) argument
45 IndirectCallTargetNode(NodeClass<? extends IndirectCallTargetNode> c, ValueNode computedAddress, ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, CallingConvention.Type callType, InvokeKind invokeKind) argument
H A DDirectCallTargetNode.java38 public DirectCallTargetNode(ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, CallingConvention.Type callType, argument
40 this(TYPE, arguments, returnStamp, signature, target, callType, invokeKind);
44 CallingConvention.Type callType, InvokeKind invokeKind) {
45 super(c, arguments, returnStamp, signature, target, callType, invokeKind);
43 DirectCallTargetNode(NodeClass<? extends DirectCallTargetNode> c, ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, CallingConvention.Type callType, InvokeKind invokeKind) argument
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/
H A DHotSpotDirectCallTargetNode.java39 public HotSpotDirectCallTargetNode(ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, Type callType, InvokeKind invokeKind) { argument
40 super(TYPE, arguments, returnStamp, signature, target, callType, invokeKind);
H A DHotSpotIndirectCallTargetNode.java43 Type callType, InvokeKind invokeKind) {
44 super(TYPE, computedAddress, arguments, returnStamp, signature, target, callType, invokeKind);
41 HotSpotIndirectCallTargetNode(ValueNode metaspaceMethod, ValueNode computedAddress, ValueNode[] arguments, StampPair returnStamp, JavaType[] signature, ResolvedJavaMethod target, Type callType, InvokeKind invokeKind) argument
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DContinuousArrayData.java230 final MethodType callType = desc.getMethodType();
231 final Class<?> indexType = callType.parameterType(1);
232 final Class<?> returnType = callType.returnType();
261 final MethodType callType = desc.getMethodType();
262 final Class<?> indexType = callType.parameterType(1);
263 final Class<?> elementType = callType.parameterType(2);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java538 int callType = kValueType;
545 callType = kRemoteType;
548 callType = kRemoteType;
551 callType = kAbstractType;
553 callType = kAbstractType;
558 switch (callType) {
694 int callType = kValueType;
704 callType = kRemoteType;
711 callType = kRemoteType;
715 callType
[all...]
H A DIIOPOutputStream.java701 int callType = ValueHandlerImpl.kValueType;
710 callType = ValueHandlerImpl.kRemoteType;
716 callType = ValueHandlerImpl.kRemoteType;
720 callType = ValueHandlerImpl.kAbstractType;
722 callType = ValueHandlerImpl.kAbstractType;
726 switch (callType) {
H A DIIOPInputStream.java1797 int callType = ValueHandlerImpl.kValueType;
1804 callType = ValueHandlerImpl.kRemoteType;
1825 callType = ValueHandlerImpl.kAbstractType;
1834 switch (callType) {
1855 throw new StreamCorruptedException("Unknown callType: " + callType);
1889 int callType = ValueHandlerImpl.kValueType;
1898 callType = ValueHandlerImpl.kRemoteType;
1903 callType = ValueHandlerImpl.kRemoteType;
1909 callType
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DNashornBeansLinker.java142 final MethodType callType = desc.getMethodType();
145 desc.getMethodType().changeParameterType(0, Object.class).changeParameterType(1, callType.parameterType(0)));
152 final MethodHandle calleeToThis = MH.dropArguments(inv, 1, callType.parameterType(1)); // (callee->this, <drop>, args...)
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DScriptObject.java2065 final MethodType callType = desc.getMethodType();
2066 final Class<?> returnType = callType.returnType();
2068 final Class<?> keyClass = callType.parameterType(1);
2081 return new GuardedInvocation(mh, getScriptObjectGuard(callType, explicitInstanceOfCheck), (SwitchPoint)null, explicitInstanceOfCheck ? null : ClassCastException.class);
2296 * @param callType the method type at the call site
2300 private static GuardedInvocation findSetIndexMethod(final CallSiteDescriptor desc, final boolean explicitInstanceOfCheck, final MethodType callType) { argument
2301 assert callType.parameterCount() == 3;
2302 final Class<?> keyClass = callType.parameterType(1);
2303 final Class<?> valueClass = callType.parameterType(2);
2308 return new GuardedInvocation(methodHandle, getScriptObjectGuard(callType, explicitInstanceOfChec
2587 pairArguments(final MethodHandle methodHandle, final MethodType callType) argument
2606 pairArguments(final MethodHandle methodHandle, final MethodType callType, final Boolean callerVarArg) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/gen/
H A DNodeLIRBuilder.java580 CallingConvention invokeCc = gen.getResult().getFrameMapBuilder().getRegisterConfig().getCallingConvention(callTarget.callType(), x.asNode().stamp().javaType(gen.getMetaAccess()),

Completed in 300 milliseconds