/aosp12/art/runtime/mirror/ |
H A D | method.cc | 30 DCHECK(!method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod() 45 DCHECK(method->IsConstructor()) << method->PrettyMethod(); in CreateFromArtMethod()
|
/aosp12/art/runtime/native/ |
H A D | java_lang_invoke_MethodHandleImpl.cc | 50 if (method->IsConstructor()) { in MethodHandleImpl_getMemberInternal()
|
H A D | java_lang_reflect_Parameter.cc | 69 if (method->IsConstructor()) { in Parameter_getAnnotationNative()
|
H A D | java_lang_reflect_Executable.cc | 99 if (!method->IsConstructor() || in Executable_getParameterAnnotationsNative()
|
H A D | java_lang_Class.cc | 560 return m->IsConstructor() && in MethodMatchesConstructor()
|
/aosp12/art/compiler/driver/ |
H A D | dex_compilation_unit.cc | 63 DCHECK(IsConstructor()); in RequiresConstructorBarrier()
|
H A D | dex_compilation_unit.h | 87 bool IsConstructor() const { in IsConstructor() function
|
/aosp12/art/runtime/ |
H A D | reflection.cc | 537 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeWithVarArgs() 578 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeWithJValues() 621 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeVirtualOrInterfaceWithJValues() 665 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor(); in InvokeVirtualOrInterfaceWithVarArgs() 726 if (declaring_class->IsStringClass() && m->IsConstructor()) { in InvokeMethod() 802 CHECK(constructor->IsConstructor()); in InvokeConstructor()
|
H A D | art_method.cc | 553 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader() 671 bool is_constructor = IsConstructor(); in SetIntrinsic() 687 DCHECK_EQ(is_constructor, IsConstructor()); in SetIntrinsic()
|
H A D | class_linker-inl.h | 309 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in GetResolvedMethod() 361 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in ResolveMethod()
|
H A D | instrumentation.cc | 248 UNLIKELY(method->IsConstructor() && in InstallStubsForMethod() 260 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { in InstallStubsForMethod() 273 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) { in InstallStubsForMethod() 1045 if (method->IsStatic() && !method->IsConstructor() && in Undeoptimize()
|
H A D | art_method.h | 147 bool IsConstructor() const { in IsConstructor() function 153 return IsConstructor() && IsStatic(); in IsClassInitializer()
|
H A D | art_method-inl.h | 118 return IsConstructor() || IsStatic(); in CheckIncompatibleClassChange()
|
H A D | stack.cc | 778 DCHECK(!method->IsDirect() && !method->IsConstructor()) in GetCurrentQuickFrameInfo()
|
H A D | method_handles.cc | 681 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) { in RefineTargetMethod()
|
/aosp12/art/compiler/dex/ |
H A D | inline_method_analyser.cc | 154 CHECK(target_method->IsConstructor()); in GetTargetConstructor() 294 DCHECK(method->IsConstructor()); in DoAnalyseConstructor() 480 if (method != nullptr && !method->IsStatic() && method->IsConstructor()) { in AnalyseMethodCode()
|
/aosp12/art/runtime/entrypoints/ |
H A D | entrypoint_utils-inl.h | 435 resolved_method->IsConstructor())) { in FindMethodToCall() 725 if (klass == referring_class && referrer->IsConstructor() && referrer->IsStatic()) { in ResolveVerifyAndClinit() 758 return method->IsStatic() && !method->IsConstructor(); in NeedsClinitCheckBeforeCall()
|
/aosp12/art/runtime/verifier/ |
H A D | method_verifier.cc | 139 return IsConstructor() && !IsStatic(); in IsInstanceConstructor() 211 bool IsConstructor() const { in IsConstructor() function in art::verifier::impl::__anon5f019aef0110::MethodVerifier 907 if (IsConstructor()) { in Verify() 1003 if (IsConstructor()) { in Verify() 1023 if (!(IsConstructor() && IsStatic())) { in Verify() 1710 if (IsConstructor()) { in SetTypesFromSignature() 2978 is_constructor = called_method->IsConstructor(); in CodeFlowVerifyInstruction() 3862 if (res_method->IsConstructor() && method_type != METHOD_DIRECT) { in ResolveMethodAndCheckAccess() 3987 if (!res_method->IsConstructor()) { in VerifyInvocationArgsFromIterator() 4681 !IsConstructor() || in GetInstanceField()
|
/aosp12/art/tools/hiddenapi/ |
H A D | hiddenapi.cc | 183 inline bool IsConstructor() const { return IsMethod() && HasAccessFlags(kAccConstructor); } in IsConstructor() function in art::hiddenapi::DexMember 485 } else if (member.IsConstructor()) { in IsMemberVisible()
|
/aosp12/art/compiler/optimizing/ |
H A D | sharpening.cc | 68 DCHECK(!(callee->IsConstructor() && callee->GetDeclaringClass()->IsStringClass())); in SharpenLoadMethod()
|
H A D | reference_type_propagation.cc | 558 DCHECK(method->IsConstructor()) in SetClassAsTypeInfo()
|
H A D | instruction_simplifier.cc | 2539 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in NoEscapeForStringBufferReference() 2677 user->AsInvokeStaticOrDirect()->GetResolvedMethod()->IsConstructor() && in TryReplaceStringBuilderAppend()
|
/aosp12/art/runtime/interpreter/mterp/ |
H A D | nterp.cc | 395 && resolved_method->IsConstructor()) { in NterpGetMethod()
|
/aosp12/art/runtime/interpreter/ |
H A D | interpreter_common.cc | 82 if (method->GetDeclaringClass()->IsStringClass() && method->IsConstructor()) { in UseFastInterpreterToInterpreterInvoke() 1215 && called_method->IsConstructor())) { in DoCallCommon()
|
H A D | interpreter_common.h | 317 called_method->IsConstructor())); in DoInvoke()
|