Searched refs:javaMethod (Results 1 - 25 of 31) sorted by relevance

12

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/
H A DCompiledMethodTest.java60 final ResolvedJavaMethod javaMethod = getResolvedJavaMethod("testMethod");
61 final StructuredGraph graph = parseEager(javaMethod, AllowAssumptions.NO);
71 InstalledCode compiledMethod = getCode(javaMethod, graph);
82 final ResolvedJavaMethod javaMethod = getResolvedJavaMethod("testMethod");
83 InstalledCode compiledMethod = getCode(javaMethod);
94 final ResolvedJavaMethod javaMethod = getResolvedJavaMethod("testMethodVirtual");
95 InstalledCode compiledMethod = getCode(javaMethod);
H A DMonitorDeoptTest.java186 ResolvedJavaMethod javaMethod = getResolvedJavaMethod("test");
188 StructuredGraph graph = parseEager(javaMethod, AllowAssumptions.YES);
191 CompilationResult compilationResult = compile(javaMethod, graph);
192 final InstalledCode installedCode = getBackend().createDefaultInstalledCode(javaMethod, compilationResult);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/
H A DWSDLOperationFinder.java92 private JavaMethod javaMethod; field in class:WSDLOperationFinder.WSDLOperationMappingImpl
95 WSDLOperationMappingImpl(WSDLBoundOperation wsdlOperation, JavaMethodImpl javaMethod) { argument
97 this.javaMethod = javaMethod;
98 operationName = (javaMethod != null) ? javaMethod.getOperationQName() : wsdlOperation.getName();
106 return javaMethod;
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/
H A DCheckedExceptionImpl.java54 private final JavaMethodImpl javaMethod; field in class:CheckedExceptionImpl
73 this.javaMethod = jm;
77 return javaMethod.owner;
81 return javaMethod;
130 return WsaActionUtil.getDefaultFaultAction(javaMethod,this);
H A DRuntimeModeler.java631 JavaMethodImpl javaMethod;
634 javaMethod = new JavaMethodImpl(model,method,method,metadataReader);
639 javaMethod = new JavaMethodImpl(model,tmpMethod,method,metadataReader);
650 javaMethod.setMEP(mep);
676 javaMethod.setOperationQName(new QName(targetNamespace,operationName));
702 javaMethod.setBinding(mySOAPBinding);
711 javaMethod.setBinding(sb);
714 processDocBareMethod(javaMethod, operationName, method);
716 processDocWrappedMethod(javaMethod, methodName, operationName,
719 processRpcMethod(javaMethod, methodNam
743 processDocWrappedMethod(JavaMethodImpl javaMethod, String methodName, String operationName, Method method) argument
975 processRpcMethod(JavaMethodImpl javaMethod, String methodName, String operationName, Method method) argument
1202 processExceptions(JavaMethodImpl javaMethod, Method method) argument
1286 processDocBareMethod(JavaMethodImpl javaMethod, String operationName, Method method) argument
1415 validateDocBare(JavaMethodImpl javaMethod) argument
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DGraalCompilerAssumptionsTest.java61 ResolvedJavaMethod javaMethod = getResolvedJavaMethod(methodName);
63 StructuredGraph graph = parseEager(javaMethod, AllowAssumptions.YES);
67 CompilationResult compilationResult = compile(javaMethod, graph);
68 final InstalledCode installedCode = getBackend().createDefaultInstalledCode(javaMethod, compilationResult);
H A DDontReuseArgumentSpaceTest.java75 ResolvedJavaMethod javaMethod = getResolvedJavaMethod("killArguments");
76 StructuredGraph graph = parseEager(javaMethod, AllowAssumptions.YES);
77 CompilationResult compilationResult = compile(javaMethod, graph);
78 getBackend().createDefaultInstalledCode(javaMethod, compilationResult);
H A DGraphEncoderTest.java58 ResolvedJavaMethod javaMethod = getMetaAccess().lookupJavaMethod(method);
59 if (javaMethod.hasBytecodes()) {
60 StructuredGraph originalGraph = parseEager(javaMethod, AllowAssumptions.YES);
H A DCommonedConstantsTest.java58 ResolvedJavaMethod javaMethod = getResolvedJavaMethod("test0Snippet");
59 javaMethod.reprofile();
H A DProfilingInfoTest.java313 ResolvedJavaMethod javaMethod = getResolvedJavaMethod(methodName);
314 Assert.assertTrue(javaMethod.isStatic());
316 javaMethod.reprofile();
321 invoke(javaMethod, null, args);
327 ProfilingInfo info = javaMethod.getProfilingInfo();
334 ResolvedJavaMethod javaMethod = getResolvedJavaMethod(methodName);
335 javaMethod.reprofile();
H A DGraalCompilerTest.java966 ResolvedJavaMethod javaMethod = getMetaAccess().lookupJavaMethod(method);
967 methodMap.put(javaMethod, method);
968 return javaMethod;
985 * or null if {@code javaMethod} does not correspond to a reflection method.
987 protected Method lookupMethod(ResolvedJavaMethod javaMethod) { argument
988 return methodMap.get(javaMethod);
991 protected Object invoke(ResolvedJavaMethod javaMethod, Object receiver, Object... args) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException { argument
992 Method method = lookupMethod(javaMethod);
1057 private StructuredGraph parse1(ResolvedJavaMethod javaMethod, PhaseSuite<HighTierContext> graphBuilderSuite, AllowAssumptions allowAssumptions, CompilationIdentifier compilationId) { argument
1058 assert javaMethod
[all...]
H A DFinalizableSubclassTest.java76 final ResolvedJavaMethod javaMethod = getMetaAccess().lookupJavaMethod(constructors[0]);
77 StructuredGraph graph = new StructuredGraph(javaMethod, allowAssumptions, NO_PROFILING_INFO, INVALID_COMPILATION_ID);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.microbenchmarks/src/org/graalvm/compiler/microbenchmarks/graal/util/
H A DGraalUtil.java127 ResolvedJavaMethod javaMethod = graal.metaAccess.lookupJavaMethod(method);
128 return getGraph(graal, javaMethod);
131 public static StructuredGraph getGraph(GraalState graal, ResolvedJavaMethod javaMethod) { argument
132 return getGraph(graal, javaMethod, StructuredGraph.USE_PROFILING_INFO);
135 public static StructuredGraph getGraph(GraalState graal, ResolvedJavaMethod javaMethod, boolean useProfilingInfo) { argument
136 StructuredGraph graph = new StructuredGraph(javaMethod, StructuredGraph.AllowAssumptions.YES, useProfilingInfo, INVALID_COMPILATION_ID);
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DReflectiveTie.java130 Method javaMethod = null ;
136 javaMethod = classData.getIDLNameTranslator().getMethod( method ) ;
137 if (javaMethod == null)
141 dmm = pm.getDynamicMethodMarshaller( javaMethod ) ;
145 Object result = javaMethod.invoke( target, args ) ;
154 javaMethod.getName(),
155 javaMethod.getDeclaringClass().getName() ) ;
158 javaMethod.getName(),
159 javaMethod.getDeclaringClass().getName() ) ;
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotResolvedJavaMethodImpl.java479 Executable javaMethod = toJava();
480 if (javaMethod == null) {
484 java.lang.reflect.Parameter[] javaParameters = javaMethod.getParameters();
496 Executable javaMethod = toJava();
497 return javaMethod == null ? new Annotation[signature.getParameterCount(false)][0] : javaMethod.getParameterAnnotations();
502 Executable javaMethod = toJava();
503 if (javaMethod != null) {
504 return javaMethod.getAnnotations();
511 Executable javaMethod
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/
H A DJavaWsdlMappingType.java354 "javaMethod"
359 protected List<JavaMethod> javaMethod; field in class:JavaWsdlMappingType.JavaMethods
362 * Gets the value of the javaMethod property.
368 * This is why there is not a <CODE>set</CODE> method for the javaMethod property.
384 if (javaMethod == null) {
385 javaMethod = new ArrayList<JavaMethod>();
387 return this.javaMethod;
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/sei/
H A DStubHandler.java78 protected final JavaMethodImpl javaMethod; field in class:StubHandler
97 this.javaMethod = method;
100 soapVersion = javaMethod.getBinding().getSOAPVersion();
250 //TODO javaMethod.getOperation()
251 return javaMethod.getOperationQName();
266 return javaMethod.getMethod();
270 return javaMethod;
H A DSyncMethodHandler.java68 final JavaMethodImpl javaMethod; field in class:SyncMethodHandler
71 javaMethod = jm;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64.test/src/org/graalvm/compiler/hotspot/amd64/test/
H A DAMD64HotSpotFrameOmissionTest.java112 ResolvedJavaMethod javaMethod = getResolvedJavaMethod(name);
113 InstalledCode installedCode = getCode(javaMethod);
/openjdk9/hotspot/test/compiler/jvmci/compilerToVM/
H A DInvalidateInstalledCodeTest.java88 HotSpotResolvedJavaMethod javaMethod
91 javaMethod, testCase.bci, /* jvmciEnv = */ 0L);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/
H A DEdgesTest.java126 ResolvedJavaMethod javaMethod = getMetaAccess().lookupJavaMethod(method);
127 StructuredGraph g = parseProfiled(javaMethod, AllowAssumptions.NO);
/openjdk9/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DAOTBackend.java112 * @param javaMethod method for whose code the graph is to be created
116 private StructuredGraph buildStructuredGraph(ResolvedJavaMethod javaMethod) { argument
118 StructuredGraph graph = new StructuredGraph(javaMethod, StructuredGraph.AllowAssumptions.NO, false, CompilationIdentifier.INVALID_COMPILATION_ID);
122 handleError(javaMethod, e, " (building graph)");
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DCompileTheWorld.java634 HotSpotResolvedJavaMethod javaMethod = (HotSpotResolvedJavaMethod) metaAccess.lookupJavaMethod(constructor);
635 if (canBeCompiled(javaMethod, constructor.getModifiers())) {
636 compileMethod(javaMethod);
640 HotSpotResolvedJavaMethod javaMethod = (HotSpotResolvedJavaMethod) metaAccess.lookupJavaMethod(method);
641 if (canBeCompiled(javaMethod, method.getModifiers())) {
642 compileMethod(javaMethod);
761 private boolean canBeCompiled(HotSpotResolvedJavaMethod javaMethod, int modifiers) { argument
766 if (c.dontCompileHugeMethods && javaMethod.getCodeSize() > c.hugeMethodLimit) {
769 javaMethod.format("%H.%n(%p):%r"),
770 javaMethod
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DCheckGraalIntrinsics.java92 for (Method javaMethod : c.getDeclaredMethods()) {
93 if (javaMethod.getName().equals(intrinsic.name)) {
94 ResolvedJavaMethod method = metaAccess.lookupJavaMethod(javaMethod);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/
H A DSnippetStub.java89 Method javaMethod = SnippetTemplate.AbstractTemplates.findMethod(snippetDeclaringClass == null ? getClass() : snippetDeclaringClass, snippetMethodName, null);
90 this.method = providers.getMetaAccess().lookupJavaMethod(javaMethod);

Completed in 312 milliseconds

12