Searched refs:rtype (Results 51 - 75 of 112) sorted by relevance

12345

/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeArguments.java337 private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) { argument
338 return MH.findStatic(MethodHandles.lookup(), NativeArguments.class, name, MH.type(rtype, types));
H A DNativeError.java391 private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) { argument
392 return MH.findStatic(MethodHandles.lookup(), NativeError.class, name, MH.type(rtype, types));
H A DNativeJSAdapter.java608 private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) { argument
609 return MH.findStatic(MethodHandles.lookup(), NativeJSAdapter.class, name, MH.type(rtype, types));
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DListAdapter.java399 private static Callable<MethodHandle> invokerCreator(final Class<?> rtype, final Class<?>... ptypes) { argument
403 return Bootstrap.createDynamicCallInvoker(rtype, ptypes);
H A DGlobalFunctions.java518 private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) { argument
519 return MH.findStatic(MethodHandles.lookup(), GlobalFunctions.class, name, MH.type(rtype, types));
H A DScriptFunction.java1369 private static MethodHandle findOwnMH_S(final String name, final Class<?> rtype, final Class<?>... types) { argument
1370 return MH.findStatic(MethodHandles.lookup(), ScriptFunction.class, name, MH.type(rtype, types));
1373 private static MethodHandle findOwnMH_V(final String name, final Class<?> rtype, final Class<?>... types) { argument
1374 return MH.findVirtual(MethodHandles.lookup(), ScriptFunction.class, name, MH.type(rtype, types));
H A DAccessorProperty.java729 private static MethodHandle findOwnMH_S(final String name, final Class<?> rtype, final Class<?>... types) { argument
730 return MH.findStatic(LOOKUP, AccessorProperty.class, name, MH.type(rtype, types));
/openjdk9/jdk/test/java/lang/invoke/
H A DMethodTypeTest.java47 private Class<?> rtype; field in class:MethodTypeTest
59 rtype = void.class;
120 MethodType result = MethodType.methodType(rtype, ptypes);
130 MethodType result = MethodType.methodType(rtype, Arrays.asList(ptypes));
140 MethodType result = MethodType.methodType(rtype, ptypes[0], ptypes[1]);
170 System.out.println("make (from rtype, MethodType)");
H A DRicochetTest.java515 Class<?> rtype,
518 return LOOKUP.findStatic(LOOKUP.lookupClass(), name, methodType(rtype, ptypes));
524 Class<?> rtype,
526 return findStatic(name, rtype, ptypes.toArray(new Class<?>[ptypes.size()]));
514 findStatic(String name, Class<?> rtype, Class<?>... ptypes) argument
523 findStatic(String name, Class<?> rtype, List<?> ptypes) argument
H A DInvokeGenericTest.java428 for (Class<?> rtype : types) {
429 argcTypes.add(MethodType.methodType(rtype));
/openjdk9/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp219 void relocate(address at, relocInfo::relocType rtype, int format = 0, jint method_index = 0);
603 void relocate(address at, relocInfo::relocType rtype, int format = 0) { argument
604 _insts.relocate(at, rtype, format);
/openjdk9/hotspot/src/cpu/arm/vm/
H A DmacroAssembler_arm.cpp53 void AddressLiteral::set_rspec(relocInfo::relocType rtype) { argument
54 switch (rtype) {
78 _rspec = Relocation::spec_simple(rtype);
2683 void MacroAssembler::jump(address target, relocInfo::relocType rtype, Register scratch NOT_AARCH64_ARG(AsmCondition cond)) { argument
2684 assert((rtype == relocInfo::runtime_call_type) || (rtype == relocInfo::none), "not supported");
2686 relocate(rtype);
2694 rtype = relocInfo::none;
2699 InlinedAddress address_literal(target, rtype);
2711 if (VM_Version::supports_movw() && (scratch != noreg) && (rtype
2732 patchable_jump(address target, relocInfo::relocType rtype, Register scratch NOT_AARCH64_ARG(AsmCondition cond)) argument
[all...]
H A Dassembler_arm.hpp328 const relocInfo::relocType rtype() { return _rspec.type(); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A Dassembler_aarch64.cpp1189 relocInfo::relocType rtype,
1191 if (rtype == relocInfo::none) {
1194 emit_data64(data, Relocation::spec_simple(rtype), format);
1230 relocInfo::relocType rtype = (relocInfo::relocType) reloc->type(); local
1247 if (rtype == relocInfo::none)
1288 Address::Address(address target, relocInfo::relocType rtype) : _mode(literal){ argument
1291 switch (rtype) {
1316 _rspec = Relocation::spec_simple(rtype);
1188 emit_data64(jlong data, relocInfo::relocType rtype, int format) argument
/openjdk9/jdk/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandleNatives.java291 static MethodType findMethodHandleType(Class<?> rtype, Class<?>[] ptypes) { argument
292 return MethodType.makeImpl(rtype, ptypes, true);
H A DMethodHandleImpl.java1018 MethodHandle invokeBasicUnbox = MethodHandles.basicInvoker(MethodType.methodType(basicType.rtype(), Object.class));
1405 private static MethodHandle findCollector(String name, int nargs, Class<?> rtype, Class<?>... ptypes) { argument
1407 .changeReturnType(rtype)
1884 MethodHandle invokeBasicUnbox = MethodHandles.basicInvoker(MethodType.methodType(basicType.rtype(), Object.class));
2028 * @param rtype the result type of the entire construct.
2033 static MethodHandle makeTryFinally(MethodHandle target, MethodHandle cleanup, Class<?> rtype, List<Class<?>> argTypes) { argument
2034 MethodType type = MethodType.methodType(rtype, argTypes);
2041 MethodHandle unboxResult = unboxResultHandle(rtype);
2119 MethodHandle invokeBasicUnbox = MethodHandles.basicInvoker(MethodType.methodType(basicType.rtype(), Object.class));
H A DStringConcatFactory.java1751 static MethodHandle lookupStatic(Lookup lookup, Class<?> refc, String name, Class<?> rtype, Class<?>... ptypes) { argument
1753 return lookup.findStatic(refc, name, MethodType.methodType(rtype, ptypes));
1759 static MethodHandle lookupVirtual(Lookup lookup, Class<?> refc, String name, Class<?> rtype, Class<?>... ptypes) { argument
1761 return lookup.findVirtual(refc, name, MethodType.methodType(rtype, ptypes));
H A DMemberName.java150 Class<?> rtype = (Class<?>) typeInfo[0];
151 MethodType res = MethodType.methodType(rtype, ptypes);
860 * For methods and constructors, it is {@code "DeclaringClass.name(ptype...)rtype"}.
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DWrap.java77 public static Wrap varWrap(String source, Range rtype, String brackets, Range rname, Range rinit) { argument
79 RangeWrap wtype = new RangeWrap(source, rtype);
H A DEval.java267 Range rtype = dis.treeToRange(baseType);
287 Wrap guts = Wrap.varWrap(compileSource, rtype, sbBrackets.toString(), rname, rinit);
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DNashornLinker.java361 private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) { argument
362 return MH.findStatic(MethodHandles.lookup(), NashornLinker.class, name, MH.type(rtype, types));
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/scan/
H A DScan.java189 void printMethod(String key, ClassFile cf, String cname, String mname, String rtype, argument
191 out.println(Messages.get(key, typeKind(cf), cf.getName(), cname, mname, rtype, dep(r)));
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.hpp227 void call( LIR_OpJavaCall* op, relocInfo::relocType rtype);
H A Dc1_Runtime1.cpp1185 relocInfo::relocType rtype = variable
1198 relocInfo::none, rtype);
1204 relocInfo::none, rtype);
1210 relocInfo::none, rtype);
/openjdk9/hotspot/src/share/vm/code/
H A DrelocInfo.cpp453 RelocationHolder Relocation::spec_simple(relocInfo::relocType rtype) { argument
454 if (rtype == relocInfo::none) return RelocationHolder::none;
455 relocInfo ri = relocInfo(rtype, 0);

Completed in 367 milliseconds

12345