blob: 437e14772964855906ca8068e6519aa9e3ff960e [file] [log] [blame]
Adam Lesinski7ad11102016-10-28 16:39:15 -07001/*
2 * Copyright (C) 2016 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#include "benchmark/benchmark.h"
18
Adam Lesinskida431a22016-12-29 16:08:16 -050019#include "android-base/stringprintf.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070020#include "androidfw/ApkAssets.h"
21#include "androidfw/AssetManager.h"
22#include "androidfw/AssetManager2.h"
23#include "androidfw/ResourceTypes.h"
24
Adam Lesinskic8f71aa2017-02-08 07:03:50 -080025#include "BenchmarkHelpers.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070026#include "data/basic/R.h"
Adam Lesinskida431a22016-12-29 16:08:16 -050027#include "data/libclient/R.h"
Adam Lesinski7ad11102016-10-28 16:39:15 -070028#include "data/styles/R.h"
29
Adam Lesinski7ad11102016-10-28 16:39:15 -070030namespace app = com::android::app;
Adam Lesinskida431a22016-12-29 16:08:16 -050031namespace basic = com::android::basic;
32namespace libclient = com::android::libclient;
Adam Lesinski7ad11102016-10-28 16:39:15 -070033
34namespace android {
35
36constexpr const static char* kFrameworkPath = "/system/framework/framework-res.apk";
37
38static void BM_AssetManagerLoadAssets(benchmark::State& state) {
39 std::string path = GetTestDataPath() + "/basic/basic.apk";
40 while (state.KeepRunning()) {
Adam Lesinski0c405242017-01-13 20:47:26 -080041 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
Adam Lesinski7ad11102016-10-28 16:39:15 -070042 AssetManager2 assets;
43 assets.SetApkAssets({apk.get()});
44 }
45}
46BENCHMARK(BM_AssetManagerLoadAssets);
47
48static void BM_AssetManagerLoadAssetsOld(benchmark::State& state) {
49 String8 path((GetTestDataPath() + "/basic/basic.apk").data());
50 while (state.KeepRunning()) {
51 AssetManager assets;
52 assets.addAssetPath(path, nullptr /* cookie */, false /* appAsLib */,
53 false /* isSystemAsset */);
54
55 // Force creation.
56 assets.getResources(true);
57 }
58}
59BENCHMARK(BM_AssetManagerLoadAssetsOld);
60
61static void BM_AssetManagerLoadFrameworkAssets(benchmark::State& state) {
62 std::string path = kFrameworkPath;
63 while (state.KeepRunning()) {
Adam Lesinski0c405242017-01-13 20:47:26 -080064 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(path);
Adam Lesinski7ad11102016-10-28 16:39:15 -070065 AssetManager2 assets;
66 assets.SetApkAssets({apk.get()});
67 }
68}
69BENCHMARK(BM_AssetManagerLoadFrameworkAssets);
70
71static void BM_AssetManagerLoadFrameworkAssetsOld(benchmark::State& state) {
72 String8 path(kFrameworkPath);
73 while (state.KeepRunning()) {
74 AssetManager assets;
75 assets.addAssetPath(path, nullptr /* cookie */, false /* appAsLib */,
76 false /* isSystemAsset */);
77
78 // Force creation.
79 assets.getResources(true);
80 }
81}
82BENCHMARK(BM_AssetManagerLoadFrameworkAssetsOld);
83
Adam Lesinskid9c809c2017-12-28 13:01:35 -080084static void BM_AssetManagerGetResource(benchmark::State& state, uint32_t resid) {
85 GetResourceBenchmark({GetTestDataPath() + "/basic/basic.apk"}, nullptr /*config*/, resid, state);
Adam Lesinskida431a22016-12-29 16:08:16 -050086}
Adam Lesinskid9c809c2017-12-28 13:01:35 -080087BENCHMARK_CAPTURE(BM_AssetManagerGetResource, number1, basic::R::integer::number1);
88BENCHMARK_CAPTURE(BM_AssetManagerGetResource, deep_ref, basic::R::integer::deep_ref);
Adam Lesinski7ad11102016-10-28 16:39:15 -070089
Adam Lesinskid9c809c2017-12-28 13:01:35 -080090static void BM_AssetManagerGetResourceOld(benchmark::State& state, uint32_t resid) {
91 GetResourceBenchmarkOld({GetTestDataPath() + "/basic/basic.apk"}, nullptr /*config*/, resid,
92 state);
Adam Lesinski7ad11102016-10-28 16:39:15 -070093}
Adam Lesinskid9c809c2017-12-28 13:01:35 -080094BENCHMARK_CAPTURE(BM_AssetManagerGetResourceOld, number1, basic::R::integer::number1);
95BENCHMARK_CAPTURE(BM_AssetManagerGetResourceOld, deep_ref, basic::R::integer::deep_ref);
Adam Lesinski7ad11102016-10-28 16:39:15 -070096
Adam Lesinskida431a22016-12-29 16:08:16 -050097static void BM_AssetManagerGetLibraryResource(benchmark::State& state) {
98 GetResourceBenchmark(
99 {GetTestDataPath() + "/lib_two/lib_two.apk", GetTestDataPath() + "/lib_one/lib_one.apk",
100 GetTestDataPath() + "/libclient/libclient.apk"},
101 nullptr /*config*/, libclient::R::string::foo_one, state);
102}
103BENCHMARK(BM_AssetManagerGetLibraryResource);
104
105static void BM_AssetManagerGetLibraryResourceOld(benchmark::State& state) {
106 GetResourceBenchmarkOld(
107 {GetTestDataPath() + "/lib_two/lib_two.apk", GetTestDataPath() + "/lib_one/lib_one.apk",
108 GetTestDataPath() + "/libclient/libclient.apk"},
109 nullptr /*config*/, libclient::R::string::foo_one, state);
110}
111BENCHMARK(BM_AssetManagerGetLibraryResourceOld);
112
Adam Lesinski7ad11102016-10-28 16:39:15 -0700113constexpr static const uint32_t kStringOkId = 0x0104000au;
114
115static void BM_AssetManagerGetResourceFrameworkLocale(benchmark::State& state) {
Adam Lesinski7ad11102016-10-28 16:39:15 -0700116 ResTable_config config;
117 memset(&config, 0, sizeof(config));
118 memcpy(config.language, "fr", 2);
Adam Lesinskida431a22016-12-29 16:08:16 -0500119 GetResourceBenchmark({kFrameworkPath}, &config, kStringOkId, state);
Adam Lesinski7ad11102016-10-28 16:39:15 -0700120}
121BENCHMARK(BM_AssetManagerGetResourceFrameworkLocale);
122
123static void BM_AssetManagerGetResourceFrameworkLocaleOld(benchmark::State& state) {
Adam Lesinski7ad11102016-10-28 16:39:15 -0700124 ResTable_config config;
125 memset(&config, 0, sizeof(config));
126 memcpy(config.language, "fr", 2);
Adam Lesinskida431a22016-12-29 16:08:16 -0500127 GetResourceBenchmarkOld({kFrameworkPath}, &config, kStringOkId, state);
Adam Lesinski7ad11102016-10-28 16:39:15 -0700128}
129BENCHMARK(BM_AssetManagerGetResourceFrameworkLocaleOld);
130
131static void BM_AssetManagerGetBag(benchmark::State& state) {
Adam Lesinski0c405242017-01-13 20:47:26 -0800132 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(GetTestDataPath() + "/styles/styles.apk");
Adam Lesinski7ad11102016-10-28 16:39:15 -0700133 if (apk == nullptr) {
134 state.SkipWithError("Failed to load assets");
135 return;
136 }
137
138 AssetManager2 assets;
139 assets.SetApkAssets({apk.get()});
140
141 while (state.KeepRunning()) {
142 const ResolvedBag* bag = assets.GetBag(app::R::style::StyleTwo);
143 const auto bag_end = end(bag);
144 for (auto iter = begin(bag); iter != bag_end; ++iter) {
145 uint32_t key = iter->key;
146 Res_value value = iter->value;
147 benchmark::DoNotOptimize(key);
148 benchmark::DoNotOptimize(value);
149 }
150 }
151}
152BENCHMARK(BM_AssetManagerGetBag);
153
154static void BM_AssetManagerGetBagOld(benchmark::State& state) {
155 AssetManager assets;
156 if (!assets.addAssetPath(String8((GetTestDataPath() + "/styles/styles.apk").data()),
Adam Lesinskida431a22016-12-29 16:08:16 -0500157 nullptr /*cookie*/, false /*appAsLib*/, false /*isSystemAssets*/)) {
Adam Lesinski7ad11102016-10-28 16:39:15 -0700158 state.SkipWithError("Failed to load assets");
159 return;
160 }
161
162 const ResTable& table = assets.getResources(true);
163
164 while (state.KeepRunning()) {
165 const ResTable::bag_entry* bag_begin;
166 const ssize_t N = table.lockBag(app::R::style::StyleTwo, &bag_begin);
167 const ResTable::bag_entry* const bag_end = bag_begin + N;
168 for (auto iter = bag_begin; iter != bag_end; ++iter) {
169 uint32_t key = iter->map.name.ident;
170 Res_value value = iter->map.value;
171 benchmark::DoNotOptimize(key);
172 benchmark::DoNotOptimize(value);
173 }
174 table.unlockBag(bag_begin);
175 }
176}
177BENCHMARK(BM_AssetManagerGetBagOld);
178
Adam Lesinski0c405242017-01-13 20:47:26 -0800179static void BM_AssetManagerGetResourceLocales(benchmark::State& state) {
180 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
181 if (apk == nullptr) {
182 state.SkipWithError("Failed to load assets");
183 return;
184 }
185
186 AssetManager2 assets;
187 assets.SetApkAssets({apk.get()});
188
189 while (state.KeepRunning()) {
190 std::set<std::string> locales =
191 assets.GetResourceLocales(false /*exclude_system*/, true /*merge_equivalent_languages*/);
192 benchmark::DoNotOptimize(locales);
193 }
194}
195BENCHMARK(BM_AssetManagerGetResourceLocales);
196
197static void BM_AssetManagerGetResourceLocalesOld(benchmark::State& state) {
198 AssetManager assets;
199 if (!assets.addAssetPath(String8(kFrameworkPath), nullptr /*cookie*/, false /*appAsLib*/,
Adam Lesinskid9c809c2017-12-28 13:01:35 -0800200 true /*isSystemAssets*/)) {
Adam Lesinski0c405242017-01-13 20:47:26 -0800201 state.SkipWithError("Failed to load assets");
202 return;
203 }
204
205 const ResTable& table = assets.getResources(true);
206
207 while (state.KeepRunning()) {
208 Vector<String8> locales;
209 table.getLocales(&locales, true /*includeSystemLocales*/, true /*mergeEquivalentLangs*/);
210 benchmark::DoNotOptimize(locales);
211 }
212}
213BENCHMARK(BM_AssetManagerGetResourceLocalesOld);
214
Adam Lesinskid9c809c2017-12-28 13:01:35 -0800215static void BM_AssetManagerSetConfigurationFramework(benchmark::State& state) {
216 std::unique_ptr<const ApkAssets> apk = ApkAssets::Load(kFrameworkPath);
217 if (apk == nullptr) {
218 state.SkipWithError("Failed to load assets");
219 return;
220 }
221
222 AssetManager2 assets;
223 assets.SetApkAssets({apk.get()});
224
225 ResTable_config config;
226 memset(&config, 0, sizeof(config));
227
228 while (state.KeepRunning()) {
229 config.sdkVersion = ~config.sdkVersion;
230 assets.SetConfiguration(config);
231 }
232}
233BENCHMARK(BM_AssetManagerSetConfigurationFramework);
234
235static void BM_AssetManagerSetConfigurationFrameworkOld(benchmark::State& state) {
236 AssetManager assets;
237 if (!assets.addAssetPath(String8(kFrameworkPath), nullptr /*cookie*/, false /*appAsLib*/,
238 true /*isSystemAssets*/)) {
239 state.SkipWithError("Failed to load assets");
240 return;
241 }
242
243 const ResTable& table = assets.getResources(true);
244
245 ResTable_config config;
246 memset(&config, 0, sizeof(config));
247
248 while (state.KeepRunning()) {
249 config.sdkVersion = ~config.sdkVersion;
250 assets.setConfiguration(config);
251 }
252}
253BENCHMARK(BM_AssetManagerSetConfigurationFrameworkOld);
254
Adam Lesinski7ad11102016-10-28 16:39:15 -0700255} // namespace android