blob: 9595743e1570ff37ac937abe9fbd086e108dcb4e [file] [log] [blame]
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001/*
2 * Copyright (C) 2015 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
17#ifndef ART_RUNTIME_TYPE_LOOKUP_TABLE_H_
18#define ART_RUNTIME_TYPE_LOOKUP_TABLE_H_
19
20#include "dex_file.h"
21#include "leb128.h"
22#include "utf.h"
23
24namespace art {
25
26/**
27 * TypeLookupTable used to find class_def_idx by class descriptor quickly.
28 * Implementation of TypeLookupTable is based on hash table.
29 * This class instantiated at compile time by calling Create() method and written into OAT file.
30 * At runtime, the raw data is read from memory-mapped file by calling Open() method. The table
31 * memory remains clean.
32 */
33class TypeLookupTable {
34 public:
35 ~TypeLookupTable();
36
37 // Return the number of buckets in the lookup table.
38 uint32_t Size() const {
39 return mask_ + 1;
40 }
41
42 // Method search class_def_idx by class descriptor and it's hash.
43 // If no data found then the method returns DexFile::kDexNoIndex
44 ALWAYS_INLINE uint32_t Lookup(const char* str, uint32_t hash) const {
45 uint32_t pos = hash & GetSizeMask();
46 // Thanks to special insertion algorithm, the element at position pos can be empty or start of
47 // bucket.
48 const Entry* entry = &entries_[pos];
49 while (!entry->IsEmpty()) {
50 if (CmpHashBits(entry->data, hash) && IsStringsEquals(str, entry->str_offset)) {
51 return GetClassDefIdx(entry->data);
52 }
53 if (entry->IsLast()) {
54 return DexFile::kDexNoIndex;
55 }
56 pos = (pos + entry->next_pos_delta) & GetSizeMask();
57 entry = &entries_[pos];
58 }
59 return DexFile::kDexNoIndex;
60 }
61
62 // Method creates lookup table for dex file
Vladimir Marko9bdf1082016-01-21 12:15:52 +000063 static TypeLookupTable* Create(const DexFile& dex_file, uint8_t* storage = nullptr);
Artem Udovichenkod9786b02015-10-14 16:36:55 +030064
David Sehr9aa352e2016-09-15 18:13:52 -070065 // Method opens lookup table from binary data. Lookups will traverse strings and other
66 // data contained in dex_file as well. Lookup table does not own raw_data or dex_file.
67 static TypeLookupTable* Open(const uint8_t* dex_file_pointer,
68 const uint8_t* raw_data,
69 uint32_t num_class_defs);
Artem Udovichenkod9786b02015-10-14 16:36:55 +030070
71 // Method returns pointer to binary data of lookup table. Used by the oat writer.
72 const uint8_t* RawData() const {
73 return reinterpret_cast<const uint8_t*>(entries_.get());
74 }
75
76 // Method returns length of binary data. Used by the oat writer.
David Sehr9aa352e2016-09-15 18:13:52 -070077 uint32_t RawDataLength() const { return raw_data_length_; }
Artem Udovichenkod9786b02015-10-14 16:36:55 +030078
Vladimir Marko9bdf1082016-01-21 12:15:52 +000079 // Method returns length of binary data for the specified number of class definitions.
80 static uint32_t RawDataLength(uint32_t num_class_defs);
81
Artem Udovichenkod9786b02015-10-14 16:36:55 +030082 private:
83 /**
84 * To find element we need to compare strings.
85 * It is faster to compare first hashes and then strings itself.
86 * But we have no full hash of element of table. But we can use 2 ideas.
87 * 1. All minor bits of hash inside one bucket are equals.
88 * 2. If dex file contains N classes and size of hash table is 2^n (where N <= 2^n)
89 * then 16-n bits are free. So we can encode part of element's hash into these bits.
90 * So hash of element can be divided on three parts:
91 * XXXX XXXX XXXX YYYY YZZZ ZZZZ ZZZZZ
92 * Z - a part of hash encoded in bucket (these bits of has are same for all elements in bucket) -
93 * n bits
94 * Y - a part of hash that we can write into free 16-n bits (because only n bits used to store
95 * class_def_idx)
96 * X - a part of has that we can't use without increasing increase
97 * So the data element of Entry used to store class_def_idx and part of hash of the entry.
98 */
99 struct Entry {
100 uint32_t str_offset;
101 uint16_t data;
102 uint16_t next_pos_delta;
103
104 Entry() : str_offset(0), data(0), next_pos_delta(0) {}
105
106 bool IsEmpty() const {
107 return str_offset == 0;
108 }
109
110 bool IsLast() const {
111 return next_pos_delta == 0;
112 }
113 };
114
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000115 static uint32_t CalculateMask(uint32_t num_class_defs);
116 static bool SupportedSize(uint32_t num_class_defs);
117
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300118 // Construct from a dex file.
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000119 explicit TypeLookupTable(const DexFile& dex_file, uint8_t* storage);
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300120
121 // Construct from a dex file with existing data.
David Sehr9aa352e2016-09-15 18:13:52 -0700122 TypeLookupTable(const uint8_t* dex_file_pointer,
123 const uint8_t* raw_data,
124 uint32_t num_class_defs);
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300125
126 bool IsStringsEquals(const char* str, uint32_t str_offset) const {
David Sehr9aa352e2016-09-15 18:13:52 -0700127 const uint8_t* ptr = dex_file_begin_ + str_offset;
128 CHECK(dex_file_begin_ != nullptr);
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300129 // Skip string length.
130 DecodeUnsignedLeb128(&ptr);
131 return CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(
132 str, reinterpret_cast<const char*>(ptr)) == 0;
133 }
134
135 // Method extracts hash bits from element's data and compare them with
136 // the corresponding bits of the specified hash
137 bool CmpHashBits(uint32_t data, uint32_t hash) const {
138 uint32_t mask = static_cast<uint16_t>(~GetSizeMask());
139 return (hash & mask) == (data & mask);
140 }
141
142 uint32_t GetClassDefIdx(uint32_t data) const {
143 return data & mask_;
144 }
145
146 uint32_t GetSizeMask() const {
147 return mask_;
148 }
149
150 // Attempt to set an entry on it's hash' slot. If there is alrady something there, return false.
151 // Otherwise return true.
152 bool SetOnInitialPos(const Entry& entry, uint32_t hash);
153
154 // Insert an entry, probes until there is an empty slot.
155 void Insert(const Entry& entry, uint32_t hash);
156
157 // Find the last entry in a chain.
158 uint32_t FindLastEntryInBucket(uint32_t cur_pos) const;
159
David Sehr9aa352e2016-09-15 18:13:52 -0700160 const uint8_t* dex_file_begin_;
161 const uint32_t raw_data_length_;
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300162 const uint32_t mask_;
163 std::unique_ptr<Entry[]> entries_;
164 // owns_entries_ specifies if the lookup table owns the entries_ array.
165 const bool owns_entries_;
166
167 DISALLOW_IMPLICIT_CONSTRUCTORS(TypeLookupTable);
168};
169
170} // namespace art
171
172#endif // ART_RUNTIME_TYPE_LOOKUP_TABLE_H_