/aosp12/art/runtime/verifier/ |
H A D | register_line-inl.h | 135 const RegType& src_type = GetRegisterType(verifier, vsrc); in VerifyRegisterType() local 136 if (UNLIKELY(!check_type.IsAssignableFrom(src_type, verifier))) { in VerifyRegisterType() 141 } else if (check_type.IsUninitializedTypes() || src_type.IsUninitializedTypes()) { in VerifyRegisterType() 144 } else if (check_type.IsUnresolvedTypes() || src_type.IsUnresolvedTypes()) { in VerifyRegisterType() 150 << src_type << " but expected " << check_type; in VerifyRegisterType() 154 src_type.IsNonZeroReferenceTypes() && in VerifyRegisterType() 155 !src_type.IsUnresolvedTypes() && in VerifyRegisterType() 156 src_type.HasClass()) { in VerifyRegisterType() 157 DumpB77342775DebugData(check_type.GetClass(), src_type.GetClass()); in VerifyRegisterType() 163 if (UNLIKELY(!src_type.CheckWidePair(src_type_h))) { in VerifyRegisterType() [all …]
|
H A D | register_line.cc | 78 const RegType& src_type = GetRegisterType(verifier, vsrc); in VerifyRegisterTypeWide() local 79 if (!check_type1.IsAssignableFrom(src_type, verifier)) { in VerifyRegisterTypeWide() 80 verifier->Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << vsrc << " has type " << src_type in VerifyRegisterTypeWide() 85 if (!src_type.CheckWidePair(src_type_h)) { in VerifyRegisterTypeWide() 87 << src_type << "/" << src_type_h; in VerifyRegisterTypeWide() 199 const RegType& dst_type, const RegType& src_type) { in CheckUnaryOp() argument 200 if (VerifyRegisterType(verifier, inst->VRegB_12x(), src_type)) { in CheckUnaryOp() 215 const RegType& src_type) { in CheckUnaryOpToWide() argument 216 if (VerifyRegisterType(verifier, inst->VRegB_12x(), src_type)) { in CheckUnaryOpToWide() 315 const RegType& dst_type, const RegType& src_type, in CheckLiteralOp() argument [all …]
|
H A D | register_line.h | 243 const RegType& src_type) 258 const RegType& src_type) 336 const RegType& src_type,
|
H A D | method_verifier.cc | 2168 const RegType& src_type = work_line_->GetRegisterType(this, vregA); in CodeFlowVerifyInstruction() local 2169 bool use_src = ((return_type.IsBoolean() && src_type.IsByte()) || in CodeFlowVerifyInstruction() 2172 src_type.IsInteger())); in CodeFlowVerifyInstruction() 2175 work_line_->VerifyRegisterType(this, vregA, use_src ? src_type : return_type); in CodeFlowVerifyInstruction() 4063 const RegType& src_type = work_line_->GetRegisterType(this, get_reg); in VerifyInvocationArgsFromIterator() local 4064 if (!src_type.IsIntegralTypes()) { in VerifyInvocationArgsFromIterator() 4065 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "register v" << get_reg << " has type " << src_type in VerifyInvocationArgsFromIterator()
|
/aosp12/art/runtime/entrypoints/quick/ |
H A D | quick_throw_entrypoints.cc | 114 mirror::Class* src_type, in artThrowClassCastException() argument 132 CHECK(!dest_type->IsAssignableFrom(src_type)) in artThrowClassCastException() 135 << " <: " << src_type->PrettyDescriptor() << ";" << src_type->Depth() in artThrowClassCastException() 136 << "/" << src_type->GetField32(mirror::Class::StatusOffset()); in artThrowClassCastException() 138 DCHECK(!dest_type->IsAssignableFrom(src_type)); in artThrowClassCastException() 139 ThrowClassCastException(dest_type, src_type); in artThrowClassCastException()
|
/aosp12/frameworks/base/tools/aapt2/link/ |
H A D | TableMerger.cpp | 86 ResourceTableType* src_type) { in MergeType() argument 87 if (src_type->visibility_level >= dst_type->visibility_level) { in MergeType() 89 dst_type->visibility_level = src_type->visibility_level; in MergeType() 237 for (auto& src_type : src_package->types) { in DoMerge() local 238 ResourceTableType* dst_type = main_package_->FindOrCreateType(src_type->type); in DoMerge() 239 if (!MergeType(context_, src, dst_type, src_type.get())) { in DoMerge() 244 for (auto& src_entry : src_type->entries) { in DoMerge() 257 const ResourceNameRef res_name(src_package->name, src_type->type, src_entry->name); in DoMerge()
|
/aosp12/hardware/knowles/athletico/sound_trigger_hal/ |
H A D | cvq_ioctl.h | 178 enum src_type { enum 235 int setup_src_plugin(struct iaxxx_odsp_hw *odsp_hdl, enum src_type st); 236 int destroy_src_plugin(struct iaxxx_odsp_hw *odsp_hdl, enum src_type st); 243 int enable_src_route(struct audio_route *route_hdl, bool enable, enum src_type st);
|
H A D | cvq_util.c | 1558 int setup_src_plugin(struct iaxxx_odsp_hw *odsp_hdl, enum src_type st) in setup_src_plugin() 1605 int destroy_src_plugin(struct iaxxx_odsp_hw *odsp_hdl, enum src_type st) in destroy_src_plugin() 1753 int enable_src_route(struct audio_route *route_hdl, bool enable, enum src_type st) in enable_src_route()
|
/aosp12/art/test/712-varhandle-invocations/util-src/ |
H A D | generate_java.py | 101 for src_type in WIDENING_CONVERSIONS: 102 if var_type in WIDENING_CONVERSIONS[src_type]: 103 types_that_widen.add(src_type)
|
/aosp12/art/runtime/ |
H A D | common_throws.cc | 153 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type) { in ThrowClassCastException() argument 154 DumpB77342775DebugData(dest_type, src_type); in ThrowClassCastException() 157 mirror::Class::PrettyDescriptor(src_type).c_str(), in ThrowClassCastException()
|
H A D | common_throws.h | 78 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type)
|
/aosp12/art/runtime/interpreter/ |
H A D | unstarted_runtime.cc | 821 ObjPtr<mirror::Class> src_type = shadow_frame->GetVRegReference(arg_offset)->GetClass()-> in UnstartedSystemArraycopy() local 824 if (!src_type->IsPrimitive()) { in UnstartedSystemArraycopy() 864 } else if (src_type->IsPrimitiveByte()) { in UnstartedSystemArraycopy() 866 } else if (src_type->IsPrimitiveChar()) { in UnstartedSystemArraycopy() 868 } else if (src_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy() 872 src_type->PrettyDescriptor().c_str()); in UnstartedSystemArraycopy()
|
/aosp12/art/compiler/optimizing/ |
H A D | code_generator_x86.h | 452 void MoveToMemory(DataType::Type src_type,
|
H A D | code_generator_x86.cc | 1530 void CodeGeneratorX86::MoveToMemory(DataType::Type src_type, in MoveToMemory() argument 1539 switch (src_type) { in MoveToMemory() 1604 LOG(FATAL) << "Unreachable type " << src_type; in MoveToMemory()
|