From 0d9fa0b4244e029de8da4c33d883a74b7e2ffb97 Mon Sep 17 00:00:00 2001 From: baalajimaestro Date: Sat, 19 Mar 2022 19:51:45 -0300 Subject: veux: props: Optimise dex flags This is a squash of the following commits: 1. Optimise dex flags for a faster boot * Used multiple threads and speed profile to hasten the first boot Signed-off-by: baalajimaestro Change-Id: I2cce5ddf7d50308511e81436fcac613b2c6537bf 2. Rework dex flags again When I went through https://source.android.com/devices/tech/dalvik/configure my previous configs felt wrong, this one should be perfect (I hope). Even though there is a slight trade-off for boot time by using the speed profile, we do make up for it by using 8 threads. PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER attempts to compile all prebuilts fully optimised to speed level, thus the phone doesnt need to deal with it. I also do know that this might be a trade-off on size, but I do see the first boot time is more worthy to trade-off. The speed level mentioned here runs dex verification and compiles all AOT methods. Signed-off-by: baalajimaestro Signed-off-by: Omkar Chandorkar Change-Id: Ic0156ff8956a7c5f53820be6db438f6f6399d3c0 3. Switch certain dexopt profiles to verify Prebuilt apps like Gmail/Google App, will be updated by google play, and there is no need spend time and space optimising what is going to be replaced. Switch to Google's recommendation of using verify for an OTA package. Applications still stay on speed. Instead, replace the install profile with speed-profile making apps perform better. Signed-off-by: baalajimaestro Change-Id: I2cce5ddf7d50308511e81436fcac613b2c6537bf --- device.mk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'device.mk') diff --git a/device.mk b/device.mk index c9460b4..880bfa5 100644 --- a/device.mk +++ b/device.mk @@ -131,6 +131,9 @@ PRODUCT_PACKAGES += \ PRODUCT_AAPT_CONFIG := normal PRODUCT_AAPT_PREF_CONFIG := xxhdpi +# Dex +PRODUCT_DEX_PREOPT_DEFAULT_COMPILER_FILTER := verify + # DeviceSettings PRODUCT_PACKAGES += \ XiaomiParts -- cgit v1.2.3