Home
last modified time | relevance | path

Searched refs:method (Results 201 – 225 of 961) sorted by relevance

12345678910>>...39

/art/test/518-null-array-get/smali/
DNullArraySuccessInt2Float.smali21 .method public static floatMethod(F)V
24 .end method
26 .method public static method()V
33 .end method
/art/libdexfile/dex/
Ddex_file_tracking_registrar.cc160 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in SetAllCodeItemRegistration() local
161 const dex::CodeItem* code_item = method.GetCodeItem(); in SetAllCodeItemRegistration()
173 for (const ClassAccessor::Method& method : class_accessor.GetMethods()) { in SetAllCodeItemStartRegistration() local
174 const dex::CodeItem* code_item = method.GetCodeItem(); in SetAllCodeItemStartRegistration()
191 for (const ClassAccessor::Method& method : class_accessor.GetMethods()) { in SetAllInsnsRegistration() local
192 const dex::CodeItem* code_item = method.GetCodeItem(); in SetAllInsnsRegistration()
206 for (const ClassAccessor::Method& method : accessor.GetMethods()) { in SetCodeItemRegistration() local
207 const dex::MethodId& methodid_item = dex_file_->GetMethodId(method.GetIndex()); in SetCodeItemRegistration()
209 const dex::CodeItem* code_item = method.GetCodeItem(); in SetCodeItemRegistration()
/art/openjdkjvmti/
Ddeopt_manager.h60 bool IsMethodBeingInspected(art::ArtMethod* method)
63 bool IsMethodSafeToJit(art::ArtMethod* method)
66 bool MethodNeedsDebugVersion(art::ArtMethod* method)
88 bool MethodHasBreakpoints(art::ArtMethod* method)
91 void RemoveMethodBreakpoint(art::ArtMethod* method)
95 void AddMethodBreakpoint(art::ArtMethod* method)
135 bool MethodHasBreakpointsLocked(art::ArtMethod* method)
163 void PerformLimitedDeoptimization(art::Thread* self, art::ArtMethod* method)
167 void PerformLimitedUndeoptimization(art::Thread* self, art::ArtMethod* method)
/art/test/458-checker-instruct-simplification/smali/
DSmaliTests.smali28 .method public static EqualTrueRhs(Z)I
38 .end method
50 .method public static EqualTrueLhs(Z)I
60 .end method
72 .method public static EqualFalseRhs(Z)I
82 .end method
94 .method public static EqualFalseLhs(Z)I
104 .end method
116 .method public static NotEqualTrueRhs(Z)I
126 .end method
[all …]
/art/test/048-reflect-v8/
Dexpected.txt69 Annotations by type, defined by method singleUser with annotation Calendar: @Calendar(dayOfMonth=un…
70 Annotations by type, defined by method singleUser with annotation Calendars: <empty>
71 Annotations by type, defined by method user with annotation Calendar: @Calendar(dayOfMonth=last, da…
72 Annotations by type, defined by method user with annotation Calendars: @Calendars(value=[@Calendar(…
73 Annotations by type, defined by method user2 with annotation Calendar: @Calendar(dayOfMonth=z, dayO…
74 Annotations by type, defined by method user2 with annotation Calendars: @Calendars(value=[@Calendar…
75 Annotations by type, defined by method userComplex with annotation Calendar: @Calendar(dayOfMonth=a…
76 Annotations by type, defined by method userComplex with annotation Calendars: @Calendars(value=[@Ca…
80 Declared method annotations:
82 Annotations declared by method singleUser with annotation Calendar: @Calendar(dayOfMonth=unspecifie…
[all …]
/art/test/541-regression-inlined-deopt/smali/
DTestCase.smali18 .method private static $inline$depth1([I)V
32 .end method
34 .method private static $inline$depth0([I)V
41 .end method
43 .method public static foo()V
55 .end method
/art/test/601-method-access/smali/
DSubClassUsingInaccessibleMethod.smali19 .method public constructor <init>()V
23 .end method
26 # a package-private method from an indirectly inherited package-private class,
28 .method public test()I
33 .end method
/art/test/1914-get-local-instance/
Dlocal_instance.cc40 jmethodID method = env->GetMethodID(runnable.get(), "run", "()V"); in Java_art_Test1914_00024TargetClass_NativeInstanceMethod() local
42 env->CallVoidMethod(run, method); in Java_art_Test1914_00024TargetClass_NativeInstanceMethod()
55 jmethodID method = env->GetMethodID(runnable.get(), "run", "()V"); in Java_art_Test1914_NativeStaticMethod() local
57 env->CallVoidMethod(run, method); in Java_art_Test1914_NativeStaticMethod()
/art/test/508-referrer-method/src/p1/
DInPackage.java20 public static int $inline$method() { in $inline$method()
24 return PublicB.method(); in $inline$method()
/art/test/800-smali/smali/
Db_22045582.smali3 # Fail verification of a method that returns an undefined register even if the return type
8 .method public static run()La/b/c/d/e/nonexistent;
13 .end method
Db_29778499_2.smali4 # Test invoking an interface method on an object that doesn't implement any interface.
7 .method public static run()V
13 .end method
/art/test/044-proxy/src/
DBasicTest.java235 public Object invoke(Object proxy, Method method, Object[] args) in invoke() argument
238 System.out.println("Invoke " + method); in invoke()
244 if (method.getDeclaringClass() == java.lang.Object.class) { in invoke()
246 if (method.getName().equals("toString")) { in invoke()
248 } else if (method.getName().equals("hashCode")) { in invoke()
250 } else if (method.getName().equals("equals")) { in invoke()
257 if (method.getDeclaringClass() == Trace.class) { in invoke()
258 if (method.getName().equals("getTrace")) { in invoke()
272 if (method.getDeclaringClass() == Trace.class) { in invoke()
273 if (method.getName().equals("getTrace")) { in invoke()
[all …]
/art/test/990-field-trace/src/art/
DTest990.java41 private Executable method; field in Test990.FieldWrite
47 public FieldWrite(Executable method, Object target, Field f, Object v) { in FieldWrite() argument
48 this.method = method; in FieldWrite()
59 " in method " + method + in Print()
65 private Executable method; field in Test990.FieldRead
69 public FieldRead(Executable method, Object target, Field f) { in FieldRead() argument
70 this.method = method; in FieldRead()
79 " in method " + method); in Print()
/art/test/546-regression-simplify-catch/smali/
DTestCase.smali21 .method public static testCase_EmptyCatch()I
37 .end method
42 .method public static testCase_NoConrolFlowCatch()I
59 .end method
65 .method public static testCase_InvalidLoadException()I
79 .end method
85 .method public static testCase_TriviallyDeadPredecessor(II)I
103 .end method
/art/test/986-native-method-bind/
Dinfo.txt1 Tests native-method-bind callback and native method replacement.
/art/test/587-inline-class-error/smali/
DSuperVerifyError.smali19 .method public final foo()V
22 .end method
24 .method public bar()V
27 .end method
/art/tools/jvmti-agents/titrace/
Dtitrace.cc149 void OnSingleStep(jvmtiEnv* jvmti_env, jmethodID method, jlocation location) { in OnSingleStep()
154 MethodBytecode& bytecode = LookupBytecode(jvmti_env, method); in OnSingleStep()
172 MethodBytecode& LookupBytecode(jvmtiEnv* jvmti_env, jmethodID method) { in LookupBytecode()
176 auto it = bytecode_cache_.find(method); in LookupBytecode()
181 error = jvmti_env->GetBytecodes(method, &bytecode_count_ptr, &bytecodes_ptr); in LookupBytecode()
182 CHECK_JVMTI_ERROR(jvmti_env, error) << "Failed to get bytecodes for method " << method; in LookupBytecode()
183 CHECK(bytecodes_ptr != nullptr) << "Bytecode ptr was null for method " << method; in LookupBytecode()
184 CHECK_GE(bytecode_count_ptr, 0) << "Bytecode size too small for method " << method; in LookupBytecode()
188 std::make_pair(method, MethodBytecode(jvmti_env, bytecodes_ptr, bytecode_count_ptr))); in LookupBytecode()
212 jmethodID method, in SingleStep()
[all …]
/art/test/954-invoke-polymorphic-verifier/
Dexpected.txt1 …leNotInvoke.<init>(): void MethodHandleNotInvoke.<init>(): couldn't find method java.lang.invoke.M…
2 …HandleToString.<init>(): invoke type (METHOD_POLYMORPHIC) does not match method type of java.lang.…
4 …Arguments.<init>(): Rejecting invocation, expected 2 argument registers, method signature has 3 or…
5 …ManyArguments.<init>(): Rejecting invocation, expected 4 argument registers, method signature has 3
7 …urePolymorphic.<init>(): invoke type (METHOD_POLYMORPHIC) does not match method type of java.lang.…
8 …ify: void BetterFakeSignaturePolymorphic.<init>(): Signature polymorphic method in unsuppported cl…
12 …dExchange(java.lang.invoke.VarHandle, java.lang.Object[]): couldn't find method java.lang.invoke.V…
13 …ors.compareAndExchangeAcquire(java.lang.invoke.VarHandle): couldn't find method java.lang.invoke.V…
14 …ors.compareAndExchangeRelease(java.lang.invoke.VarHandle): couldn't find method java.lang.invoke.V…
15 …nhappyAccessors.compareAndSet(java.lang.invoke.VarHandle): couldn't find method java.lang.invoke.V…
[all …]
/art/compiler/optimizing/
Dinliner.cc202 static bool IsMethodOrDeclaringClassFinal(ArtMethod* method) in IsMethodOrDeclaringClassFinal() argument
204 return method->IsFinal() || method->GetDeclaringClass()->IsFinal(); in IsMethodOrDeclaringClassFinal()
280 static uint32_t FindMethodIndexIn(ArtMethod* method, in FindMethodIndexIn() argument
284 if (IsSameDexFile(*method->GetDexFile(), dex_file)) { in FindMethodIndexIn()
285 return method->GetDexMethodIndex(); in FindMethodIndexIn()
287 return method->FindDexMethodIndexInOtherDexFile(dex_file, name_and_signature_index); in FindMethodIndexIn()
324 explicit ScopedProfilingInfoInlineUse(ArtMethod* method, Thread* self) in ScopedProfilingInfoInlineUse() argument
325 : method_(method), in ScopedProfilingInfoInlineUse()
330 Runtime::Current()->GetJit()->GetCodeCache()->NotifyCompilerUse(method, self)) { in ScopedProfilingInfoInlineUse()
414 static bool IsMethodUnverified(const CompilerOptions& compiler_options, ArtMethod* method) in IsMethodUnverified() argument
[all …]
Doptimizing_compiler.cc291 uintptr_t GetEntryPointOf(ArtMethod* method) const override in GetEntryPointOf()
293 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize( in GetEntryPointOf()
300 ArtMethod* method,
380 ArtMethod* method,
388 ArtMethod* method,
734 ArtMethod* method, in TryCompile() argument
776 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr); in TryCompile()
777 if (method != nullptr) { in TryCompile()
781 containing_class = &method->GetClassDef(); in TryCompile()
782 interpreter_metadata = method->GetQuickenedInfo(); in TryCompile()
[all …]
/art/test/991-field-trace-2/
Dexpected.txt4 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
7 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
12 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
18 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
21 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
27 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
30 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
35 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
38 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
43 …est991$TestClass1.xyz on object of type: class art.Test991$TestClass1 in method public void art.Te…
[all …]
/art/test/979-const-method-handle/
Dinfo.txt1 This test checks const-method-handle and const-method-type bytecodes.
/art/test/975-iface-private/smali/
DIface.smali23 # // Synthetic method
32 .method public sayHi()V
39 .end method
41 .method private synthetic getHiWords()Ljava/lang/String;
45 .end method
/art/test/563-checker-fakestring/smali/
DTestCase.smali25 .method public static vregAliasing([B)Ljava/lang/String;
40 .end method
50 .method public static compareNewInstance()V
68 .end method
83 .method public static deoptimizeNewInstance([I[B)I
111 .end method
123 .method public static removeNewInstance([B)Ljava/lang/String;
134 .end method
137 .method public static irreducibleLoopAndStringInit1([BZ)Ljava/lang/String;
155 .end method
[all …]
/art/test/442-checker-constant-folding/smali/
DTestCmp.smali35 .method public static $opt$CmpLongConstants()I
41 .end method
58 .method public static $opt$CmpGtFloatConstants()I
64 .end method
81 .method public static $opt$CmpLtFloatConstants()I
87 .end method
104 .method public static $opt$CmpGtDoubleConstants()I
110 .end method
127 .method public static $opt$CmpLtDoubleConstants()I
133 .end method
[all …]

12345678910>>...39