Home
last modified time | relevance | path

Searched refs:m (Results 301 – 325 of 377) sorted by relevance

1...<<111213141516

/art/test/1947-breakpoint-redefine-deopt/src/
DMain.java102 static native boolean isMethodDeoptimized(Method m); in isMethodDeoptimized() argument
/art/test/941-recursive-obsolete-jit/src/
DMain.java149 private static native boolean isInterpretedFunction(Method m, boolean require_deoptimizable); in isInterpretedFunction() argument
/art/test/064-field-access/src/
DMain.java631 for (Method m : methods) { in doReflectionTests()
633 if (m.getName().contains("Private") || in doReflectionTests()
634 (!same_package && m.getName().contains("Package")) || in doReflectionTests()
635 (!same_package && m.getName().contains("Protected"))) { in doReflectionTests()
638 this.invoke(m, validInst, subClassAccessExceptionClass); in doReflectionTests()
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md8 > `m libbreakpointlogger` # or 'm libbreakpointloggerd' with debugging checks enabled
/art/test/1939-proxy-frames/src/art/
DTest1939.java162 (p, m, a) -> {
163 if (m.getName().equals("toString")) {
/art/test/1914-get-local-instance/src/art/
DTest1914.java179 (p, m, a) -> {
180 if (m.getName().equals("toString")) {
/art/test/916-obsolete-jit/src/
DMain.java170 private static native boolean isInterpretedFunction(Method m, boolean require_deoptimizable); in isInterpretedFunction() argument
/art/test/530-checker-loops1/src/
DMain.java679 private static void verifyTriangular(int[] a, int[] b, int m, int n) { in verifyTriangular() argument
681 for (int i = 0, k = m; i < n; i++) { in verifyTriangular()
685 expectEquals(m, b.length); in verifyTriangular()
686 for (int i = 0; i < m; i++) { in verifyTriangular()
/art/runtime/
Ddebugger.cc988 ArtMethod* m = record->StackElement(i).GetMethod(); in GetRecentAllocations() local
989 class_names.Add(m->GetDeclaringClassDescriptor(), false); in GetRecentAllocations()
990 method_names.Add(m->GetName(), false); in GetRecentAllocations()
991 filenames.Add(GetMethodSourceFile(m), false); in GetRecentAllocations()
1067 ArtMethod* m = record->StackElement(stack_frame).GetMethod(); in GetRecentAllocations() local
1068 size_t class_name_index = class_names.IndexOf(m->GetDeclaringClassDescriptor()); in GetRecentAllocations()
1069 size_t method_name_index = method_names.IndexOf(m->GetName()); in GetRecentAllocations()
1070 size_t file_name_index = filenames.IndexOf(GetMethodSourceFile(m)); in GetRecentAllocations()
Dclass_linker.cc259 for (ArtMethod& m : klass->GetMethods(pointer_size)) { in EnsureSkipAccessChecksMethods()
260 ChangeInterpreterBridgeToNterp(&m, class_linker); in EnsureSkipAccessChecksMethods()
1220 ArtMethod* m; member
1320 for (ArtMethod& m : klass->GetMethods(data.pointer_size)) { in InitFromBootImage()
1322 m.GetEntryPointFromQuickCompiledCodePtrSize(data.pointer_size); in InitFromBootImage()
1327 data.m = &m; in InitFromBootImage()
1336 ArtMethod* m = data.m; in InitFromBootImage() local
1337 LOG(ERROR) << "Found a broken ArtMethod: " << ArtMethod::PrettyMethod(m); in InitFromBootImage()
1712 for (ArtMethod& m : klass->GetDirectMethods(kRuntimePointerSize)) { in Update()
1713 const void* code = m.GetEntryPointFromQuickCompiledCode(); in Update()
[all …]
Dclass_linker_test.cc292 for (ArtMethod& m : klass->GetDirectMethods(kRuntimePointerSize)) { in AssertClass()
293 EXPECT_TRUE(m.IsStatic()); in AssertClass()
294 EXPECT_TRUE(m.IsDirect()); in AssertClass()
1448 for (auto& m : c->GetMethods(kRuntimePointerSize)) { in CheckVerificationAttempted() local
1449 CheckMethod(&m, preverified); in CheckVerificationAttempted()
1659 ArtMethod* m; in TEST_F() local
1661 m = c->FindClassMethod("charAt", "(I)C", kRuntimePointerSize); in TEST_F()
1662 ASSERT_TRUE(m != nullptr); in TEST_F()
1663 ASSERT_FALSE(m->IsDirect()); in TEST_F()
1664 EXPECT_EQ("Java_java_lang_String_charAt", m->JniShortName()); in TEST_F()
[all …]
Dquick_exception_handler.cc425 void HandleNterpDeoptimization(ArtMethod* m, in HandleNterpDeoptimization() argument
434 CodeItemDataAccessor accessor(m->DexInstructionData()); in HandleNterpDeoptimization()
454 void HandleOptimizingDeoptimization(ArtMethod* m, in HandleOptimizingDeoptimization() argument
462 CodeItemDataAccessor accessor(m->DexInstructionData()); in HandleOptimizingDeoptimization()
472 << "Deopting: " << m->PrettyMethod() in HandleOptimizingDeoptimization()
Daot_class_linker.cc190 for (auto& m : k->GetVirtualMethods(pointer_size)) { in CanReferenceInBootImageExtension() local
191 ObjPtr<mirror::Class> declaring_class = m.GetDeclaringClass(); in CanReferenceInBootImageExtension()
Dart_method.cc803 std::string ArtMethod::PrettyMethod(ArtMethod* m, bool with_signature) { in PrettyMethod() argument
804 if (m == nullptr) { in PrettyMethod()
807 return m->PrettyMethod(with_signature); in PrettyMethod()
818 ArtMethod* m = in PrettyMethod() local
820 std::string res(m->GetDexFile()->PrettyMethod(m->GetDexMethodIndex(), with_signature)); in PrettyMethod()
821 if (with_signature && m->IsObsolete()) { in PrettyMethod()
/art/openjdkjvmti/
Dti_stack.cc103 art::ArtMethod* m = GetMethod(); in VisitFrame() local
104 if (m->IsRuntimeMethod()) { in VisitFrame()
109 m = m->GetInterfaceMethodIfProxy(art::kRuntimePointerSize); in VisitFrame()
110 jmethodID id = art::jni::EncodeArtMethod(m); in VisitFrame()
706 art::ArtMethod* m = stack_visitor->GetMethod(); in Run()
707 if (m != nullptr && !m->IsRuntimeMethod()) { in Run()
766 art::ArtMethod* m = stack_visitor->GetMethod(); in Run()
767 if (m != nullptr && !m->IsRuntimeMethod()) { in Run()
770 method = m; in Run()
883 for (const art::Handle<art::mirror::Object>& m : monitors) { in VisitRoot() local
[all …]
/art/tools/jvmti-agents/titrace/
DREADME.md7 > `m libtitrace` # or 'm libtitraced' with debugging checks enabled
/art/test/943-private-recursive-jit/src/
DMain.java165 private static native boolean isInterpretedFunction(Method m, boolean require_deoptimizable); in isInterpretedFunction() argument
/art/dex2oat/linker/
Dimage_test.h107 for (ArtMethod& m : klass->GetCopiedMethods(pointer_size)) { in FindCopiedMethod()
108 if (strcmp(origin->GetName(), m.GetName()) == 0 && in FindCopiedMethod()
109 origin->GetSignature() == m.GetSignature()) { in FindCopiedMethod()
110 return &m; in FindCopiedMethod()
/art/tools/jvmti-agents/dump-jvmti-state/
DREADME.md9 > `m libdumpjvmti`
/art/test/168-vmstack-annotated/src/
DMain.java187 Method m = vmStack.getDeclaredMethod("getAnnotatedThreadStackTrace", Thread.class); in getAnnotatedStack() local
188 return (Object[]) m.invoke(null, t); in getAnnotatedStack()
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc153 friend std::ostream& operator<<(std::ostream &os, ScopedClassInfo const& m);
158 ScopedMethodInfo(jvmtiEnv* jvmtienv, JNIEnv* env, jmethodID m) in ScopedMethodInfo() argument
159 : jvmtienv_(jvmtienv), env_(env), method_(m) {} in ScopedMethodInfo()
/art/runtime/arch/
Dstub_test.cc1564 ArtMethod* m = c->GetDirectMethod(0, kRuntimePointerSize); in TestFields() local
1576 GetSetBooleanStatic(&f, self, m, test); in TestFields()
1579 GetSetByteStatic(&f, self, m, test); in TestFields()
1582 GetSetCharStatic(&f, self, m, test); in TestFields()
1585 GetSetShortStatic(&f, self, m, test); in TestFields()
1588 GetSet32Static(&f, self, m, test); in TestFields()
1591 GetSet64Static(&f, self, m, test); in TestFields()
1596 GetSetObjStatic(&f, self, m, test); in TestFields()
1612 GetSetBooleanInstance(&obj, &f, self, m, test); in TestFields()
1615 GetSetByteInstance(&obj, &f, self, m, test); in TestFields()
[all …]
/art/profman/
Dprofile_assistant_test.cc317 for (auto& m : klass->GetVirtualMethods(pointer_size)) { in GetVirtualMethod() local
318 if (name == m.GetName()) { in GetVirtualMethod()
320 method = &m; in GetVirtualMethod()
1007 for (std::string& m : methods) { in TEST_F()
1008 input_file_contents += m + std::string("\n"); in TEST_F()
1156 for (std::string& m : profile_methods) { in TEST_F()
1157 input_file_contents += m + std::string("\n"); in TEST_F()
1251 for (uint32_t m : hot_methods) { in TEST_F() local
1252 const size_t pos = output.find(std::to_string(m) + "[],", hot_offset); in TEST_F()
1256 for (uint32_t m : startup_methods) { in TEST_F() local
[all …]
/art/test/1931-monitor-events/src/art/
DTest1931.java140 Method m = Object.class.getDeclaredMethod("wait"); in testUnlockedWait()
141 m.invoke(lk); in testUnlockedWait()
/art/test/ti-agent/
Dlocals_helper.cc152 jobject m) { in Java_art_Locals_GetLocalVariableTable() argument
153 jmethodID method = env->FromReflectedMethod(m); in Java_art_Locals_GetLocalVariableTable()

1...<<111213141516