Lines Matching refs:callSiteDescriptor

352         final CallSiteDescriptor callSiteDescriptor = request.getCallSiteDescriptor();
483 private GuardedInvocation createGuardedDynamicMethodInvocation(final CallSiteDescriptor callSiteDescriptor,
485 final MethodHandle inv = getDynamicMethodInvocation(callSiteDescriptor, linkerServices, methodName, methodMap);
486 return inv == null ? null : new GuardedInvocation(inv, getClassGuard(callSiteDescriptor.getMethodType()));
489 private MethodHandle getDynamicMethodInvocation(final CallSiteDescriptor callSiteDescriptor,
492 return dynaMethod != null ? dynaMethod.getInvocation(callSiteDescriptor, linkerServices) : null;
552 final CallSiteDescriptor callSiteDescriptor = req.getDescriptor();
554 assertParameterCount(callSiteDescriptor, 3);
559 final MethodType origType = callSiteDescriptor.getMethodType();
577 callSiteDescriptor.changeMethodType(setterType), linkerServices);
612 final CallSiteDescriptor callSiteDescriptor = req.getDescriptor();
614 assertParameterCount(callSiteDescriptor, 2);
615 final GuardedInvocation gi = createGuardedDynamicMethodInvocation(callSiteDescriptor, req.linkerServices,
646 final CallSiteDescriptor callSiteDescriptor = req.getDescriptor();
647 final MethodType type = callSiteDescriptor.getMethodType().changeReturnType(Object.class);
649 assertParameterCount(callSiteDescriptor, 2);
661 GET_ANNOTATED_METHOD, 1, callSiteDescriptor, linkerServices);
697 final CallSiteDescriptor callSiteDescriptor = req.getDescriptor();
699 assertParameterCount(callSiteDescriptor, 1);
716 callSiteDescriptor.getMethodType()), clazz, validationType);