diff options
Diffstat (limited to 'libdexfile/dex/method_reference.h')
-rw-r--r-- | libdexfile/dex/method_reference.h | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/libdexfile/dex/method_reference.h b/libdexfile/dex/method_reference.h index 9d4eabef2a..f66ac30c53 100644 --- a/libdexfile/dex/method_reference.h +++ b/libdexfile/dex/method_reference.h @@ -21,7 +21,6 @@ #include <string> #include "dex/dex_file.h" #include "dex/dex_file_reference.h" -#include "dex/proto_reference.h" namespace art { @@ -35,9 +34,6 @@ class MethodReference : public DexFileReference { const dex::MethodId& GetMethodId() const { return dex_file->GetMethodId(index); } - const art::ProtoReference GetProtoReference() const { - return ProtoReference(dex_file, GetMethodId().proto_idx_); - } }; // Compare the actual referenced method signatures. Used for method reference deduplication. @@ -66,8 +62,27 @@ struct MethodReferenceValueComparator { if (name_diff != 0) { return name_diff < 0; } - // Then compare protos. - return ProtoReferenceValueComparator()(mr1.GetProtoReference(), mr2.GetProtoReference()); + // And then compare proto ids, starting with return type comparison. + const dex::ProtoId& prid1 = mr1.dex_file->GetProtoId(mid1.proto_idx_); + const dex::ProtoId& prid2 = mr2.dex_file->GetProtoId(mid2.proto_idx_); + int return_type_diff = strcmp(mr1.dex_file->StringByTypeIdx(prid1.return_type_idx_), + mr2.dex_file->StringByTypeIdx(prid2.return_type_idx_)); + if (return_type_diff != 0) { + return return_type_diff < 0; + } + // And finishing with lexicographical parameter comparison. + const dex::TypeList* params1 = mr1.dex_file->GetProtoParameters(prid1); + size_t param1_size = (params1 != nullptr) ? params1->Size() : 0u; + const dex::TypeList* params2 = mr2.dex_file->GetProtoParameters(prid2); + size_t param2_size = (params2 != nullptr) ? params2->Size() : 0u; + for (size_t i = 0, num = std::min(param1_size, param2_size); i != num; ++i) { + int param_diff = strcmp(mr1.dex_file->StringByTypeIdx(params1->GetTypeItem(i).type_idx_), + mr2.dex_file->StringByTypeIdx(params2->GetTypeItem(i).type_idx_)); + if (param_diff != 0) { + return param_diff < 0; + } + } + return param1_size < param2_size; } }; |