blob: 108a5af90841f7eed4817d4fe1d2ae7669be1fc0 [file] [log] [blame]
Ian Rogers4f6ad8a2013-03-18 15:27:28 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_DEX_FILE_INL_H_
18#define ART_RUNTIME_DEX_FILE_INL_H_
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070019
Vladimir Marko80afd022015-05-19 18:08:00 +010020#include "base/bit_utils.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070021#include "base/logging.h"
Brian Carlstroma2806552014-02-27 12:29:32 -080022#include "base/stringpiece.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070023#include "dex_file.h"
24#include "leb128.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025
26namespace art {
27
28inline int32_t DexFile::GetStringLength(const StringId& string_id) const {
Ian Rogers13735952014-10-08 12:43:28 -070029 const uint8_t* ptr = begin_ + string_id.string_data_off_;
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030 return DecodeUnsignedLeb128(&ptr);
31}
32
Ian Rogersdfb325e2013-10-30 01:00:44 -070033inline const char* DexFile::GetStringDataAndUtf16Length(const StringId& string_id,
34 uint32_t* utf16_length) const {
Mathieu Chartier2cebb242015-04-21 16:50:40 -070035 DCHECK(utf16_length != nullptr) << GetLocation();
Ian Rogers13735952014-10-08 12:43:28 -070036 const uint8_t* ptr = begin_ + string_id.string_data_off_;
Ian Rogersdfb325e2013-10-30 01:00:44 -070037 *utf16_length = DecodeUnsignedLeb128(&ptr);
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070038 return reinterpret_cast<const char*>(ptr);
39}
40
Vladimir Marko5c6a5872016-06-27 13:50:16 +010041inline const char* DexFile::GetStringData(const StringId& string_id) const {
42 uint32_t ignored;
43 return GetStringDataAndUtf16Length(string_id, &ignored);
44}
45
46inline const char* DexFile::StringDataAndUtf16LengthByIdx(uint32_t idx,
47 uint32_t* utf16_length) const {
48 if (idx == kDexNoIndex) {
49 *utf16_length = 0;
50 return nullptr;
51 }
52 const StringId& string_id = GetStringId(idx);
53 return GetStringDataAndUtf16Length(string_id, utf16_length);
54}
55
56inline const char* DexFile::StringDataByIdx(uint32_t idx) const {
57 uint32_t unicode_length;
58 return StringDataAndUtf16LengthByIdx(idx, &unicode_length);
59}
60
61inline const char* DexFile::StringByTypeIdx(uint32_t idx, uint32_t* unicode_length) const {
62 const TypeId& type_id = GetTypeId(idx);
63 return StringDataAndUtf16LengthByIdx(type_id.descriptor_idx_, unicode_length);
64}
65
66inline const char* DexFile::StringByTypeIdx(uint32_t idx) const {
67 const TypeId& type_id = GetTypeId(idx);
68 return StringDataByIdx(type_id.descriptor_idx_);
69}
70
71inline const char* DexFile::GetTypeDescriptor(const TypeId& type_id) const {
72 return StringDataByIdx(type_id.descriptor_idx_);
73}
74
75inline const char* DexFile::GetFieldTypeDescriptor(const FieldId& field_id) const {
76 const DexFile::TypeId& type_id = GetTypeId(field_id.type_idx_);
77 return GetTypeDescriptor(type_id);
78}
79
80inline const char* DexFile::GetFieldName(const FieldId& field_id) const {
81 return StringDataByIdx(field_id.name_idx_);
82}
83
84inline const char* DexFile::GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
85 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_);
86 return GetTypeDescriptor(type_id);
87}
88
Ian Rogersd91d6d62013-09-25 20:26:14 -070089inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const {
90 return Signature(this, GetProtoId(method_id.proto_idx_));
91}
92
Vladimir Marko5c6a5872016-06-27 13:50:16 +010093inline const char* DexFile::GetMethodName(const MethodId& method_id) const {
94 return StringDataByIdx(method_id.name_idx_);
95}
96
97inline const char* DexFile::GetMethodShorty(uint32_t idx) const {
98 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_);
99}
100
101inline const char* DexFile::GetMethodShorty(const MethodId& method_id) const {
102 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_);
103}
104
105inline const char* DexFile::GetMethodShorty(const MethodId& method_id, uint32_t* length) const {
106 // Using the UTF16 length is safe here as shorties are guaranteed to be ASCII characters.
107 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length);
108}
109
110inline const char* DexFile::GetClassDescriptor(const ClassDef& class_def) const {
111 return StringByTypeIdx(class_def.class_idx_);
112}
113
114inline const char* DexFile::GetReturnTypeDescriptor(const ProtoId& proto_id) const {
115 return StringByTypeIdx(proto_id.return_type_idx_);
116}
117
118inline const char* DexFile::GetShorty(uint32_t proto_idx) const {
119 const ProtoId& proto_id = GetProtoId(proto_idx);
120 return StringDataByIdx(proto_id.shorty_idx_);
121}
122
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700123inline const DexFile::TryItem* DexFile::GetTryItems(const CodeItem& code_item, uint32_t offset) {
124 const uint16_t* insns_end_ = &code_item.insns_[code_item.insns_size_in_code_units_];
125 return reinterpret_cast<const TryItem*>
Ian Rogersef7d42f2014-01-06 12:55:46 -0800126 (RoundUp(reinterpret_cast<uintptr_t>(insns_end_), 4)) + offset;
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700127}
128
Ian Rogersdfb325e2013-10-30 01:00:44 -0700129static inline bool DexFileStringEquals(const DexFile* df1, uint32_t sidx1,
130 const DexFile* df2, uint32_t sidx2) {
131 uint32_t s1_len; // Note: utf16 length != mutf8 length.
132 const char* s1_data = df1->StringDataAndUtf16LengthByIdx(sidx1, &s1_len);
133 uint32_t s2_len;
134 const char* s2_data = df2->StringDataAndUtf16LengthByIdx(sidx2, &s2_len);
135 return (s1_len == s2_len) && (strcmp(s1_data, s2_data) == 0);
136}
137
138inline bool Signature::operator==(const Signature& rhs) const {
139 if (dex_file_ == nullptr) {
140 return rhs.dex_file_ == nullptr;
141 }
142 if (rhs.dex_file_ == nullptr) {
143 return false;
144 }
145 if (dex_file_ == rhs.dex_file_) {
146 return proto_id_ == rhs.proto_id_;
147 }
148 uint32_t lhs_shorty_len; // For a shorty utf16 length == mutf8 length.
149 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
150 &lhs_shorty_len);
151 StringPiece lhs_shorty(lhs_shorty_data, lhs_shorty_len);
152 {
153 uint32_t rhs_shorty_len;
154 const char* rhs_shorty_data =
155 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
156 &rhs_shorty_len);
157 StringPiece rhs_shorty(rhs_shorty_data, rhs_shorty_len);
158 if (lhs_shorty != rhs_shorty) {
159 return false; // Shorty mismatch.
160 }
161 }
162 if (lhs_shorty[0] == 'L') {
163 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
164 const DexFile::TypeId& rhs_return_type_id =
165 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
166 if (!DexFileStringEquals(dex_file_, return_type_id.descriptor_idx_,
167 rhs.dex_file_, rhs_return_type_id.descriptor_idx_)) {
168 return false; // Return type mismatch.
169 }
170 }
171 if (lhs_shorty.find('L', 1) != StringPiece::npos) {
172 const DexFile::TypeList* params = dex_file_->GetProtoParameters(*proto_id_);
173 const DexFile::TypeList* rhs_params = rhs.dex_file_->GetProtoParameters(*rhs.proto_id_);
174 // Both lists are empty or have contents, or else shorty is broken.
175 DCHECK_EQ(params == nullptr, rhs_params == nullptr);
176 if (params != nullptr) {
177 uint32_t params_size = params->Size();
178 DCHECK_EQ(params_size, rhs_params->Size()); // Parameter list size must match.
179 for (uint32_t i = 0; i < params_size; ++i) {
180 const DexFile::TypeId& param_id = dex_file_->GetTypeId(params->GetTypeItem(i).type_idx_);
181 const DexFile::TypeId& rhs_param_id =
182 rhs.dex_file_->GetTypeId(rhs_params->GetTypeItem(i).type_idx_);
183 if (!DexFileStringEquals(dex_file_, param_id.descriptor_idx_,
184 rhs.dex_file_, rhs_param_id.descriptor_idx_)) {
185 return false; // Parameter type mismatch.
186 }
187 }
188 }
189 }
190 return true;
191}
192
193
Ian Rogers4f6ad8a2013-03-18 15:27:28 -0700194} // namespace art
195
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700196#endif // ART_RUNTIME_DEX_FILE_INL_H_