Home
last modified time | relevance | path

Searched refs:param_types (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/
Dtype_inference.cc639 Type* param_types = (size != 0u) ? alloc->AllocArray<Type>(size, kArenaAllocDFInfo) : nullptr; in Signature() local
641 param_types[0] = Type::DexType(dex_file, method_id.class_idx_); in Signature()
645 param_types[this_size + i] = Type::DexType(dex_file, type_idx); in Signature()
647 return MethodSignature{ return_type, size, param_types }; // NOLINT in Signature()
701 Type param_type = current_method_signature_.param_types[i].AsNonNull(); in InitializeSRegs()
846 Type param_type = signature->param_types[i]; in InitializeSRegs()
Dtype_inference.h356 Type* param_types; member