dex2oat调用场景和相关配置

dex2oat调用场景

boot相关image

  • 若打开WITH_DEXPREOPT,则在编译system.img时,就会在host机器上执行dex预优化(默认配置)

    dex2oat-cmdline = --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes=frameworks/base/preloaded-classes --dex-file=out/target/common/obj/JAVA_LIBRARIES/core-oj_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/core-libart_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/conscrypt_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/okhttp_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/legacy-test_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/bouncycastle_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/ext_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/telephony-common_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/voip-common_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/ims-common_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/apache-xml_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/org.apache.http.legacy.boot_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/android.hidl.base-V1.0-java_intermediates/javalib.jar --dex-file=out/target/common/obj/JAVA_LIBRARIES/android.hidl.manager-V1.0-java_intermediates/javalib.jar --dex-location=/system/framework/core-oj.jar --dex-location=/system/framework/core-libart.jar --dex-location=/system/framework/conscrypt.jar --dex-location=/system/framework/okhttp.jar --dex-location=/system/framework/legacy-test.jar --dex-location=/system/framework/bouncycastle.jar --dex-location=/system/framework/ext.jar --dex-location=/system/framework/framework.jar --dex-location=/system/framework/telephony-common.jar --dex-location=/system/framework/voip-common.jar --dex-location=/system/framework/ims-common.jar --dex-location=/system/framework/apache-xml.jar --dex-location=/system/framework/org.apache.http.legacy.boot.jar --dex-location=/system/framework/android.hidl.base-V1.0-java.jar --dex-location=/system/framework/android.hidl.manager-V1.0-java.jar --oat-symbols=out/target/product/angler/symbols/system/framework/arm64/boot.oat --oat-file=out/target/product/angler/dex_bootjars/system/framework/arm64/boot.oat --oat-location=/system/framework/arm64/boot.oat --image=out/target/product/angler/dex_bootjars/system/framework/arm64/boot.art --base=0x70000000 --instruction-set=arm64 --instruction-set-variant=cortex-a53 --instruction-set-features=default --android-root=out/target/product/angler/system --runtime-arg -Xnorelocate --compile-pic --no-generate-debug-info --generate-build-id --multi-image --no-inline-from=core-oj.jar --generate-mini-debug-info --generate-mini-debug-info --compiled-classes=frameworks/base/compiled-classes-phone
    
  • 若未打开WITH_DEXPREOPT, 则在首次开机时由zygote负责生成boot相关image.

    dex2oat-cmdline = --image=/data/dalvik-cache/arm64/system@framework@boot.art --dex-file=/system/framework/core-oj.jar --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/apache-xml.jar --dex-file=/system/framework/legacy-test.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/org.apache.http.legacy.boot.jar --dex-file=/system/framework/android.hidl.base-V1.0-java.jar --dex-file=/system/framework/android.hidl.manager-V1.0-java.jar --dex-file=/system/framework/radio_interactor_common.jar --oat-file=/data/dalvik-cache/arm64/system@framework@boot.oat --instruction-set=arm64 --instruction-set-features=a53 --base=0x70c9a000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes=/system/etc/preloaded-classes --compiled-classes=/system/etc/compiled-classes --dirty-image-objects=/system/etc/dirty-image-objects --instruction-set-variant=generic --instruction-set-features=default
    

App的安装

dex2oat-cmdline = --zip-fd=12 --zip-location=base.apk --input-vdex-fd=-1 --output-vdex-fd=14 --oat-fd=13 --oat-location=/data/app/vmdl1712710097.tmp/oat/arm64/base.odex --instruction-set=arm64 --instruction-set-variant=cortex-a53 --instruction-set-features=default --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=quicken -j4 --swap-fd=15 --classpath-dir=/data/app/vmdl1712710097.tmp

profile-guided compilation(base.art and base.odex)

  • BackgroundDexOptService发起

  • profile文件

    angler:/ # ls -l  /data/misc/profiles/cur/0/com.aurorasoftworks.quadrant.ui.professional/                                                                               
    total 0
    -rw------- 1 u0_a74 u0_a74 0 1970-02-21 08:36 primary.prof
    
  • dex2oat编译

    dex2oat-cmdline = --zip-fd=12 --zip-location=base.apk --input-vdex-fd=14 --output-vdex-fd=15 --oat-fd=13 --oat-location=/data/app/com.aurorasoftworks.quadrant.ui.professional-VH_ydz-pdzC-HwMoMrkyjA==/oat/arm64/base.odex --instruction-set=arm64 --instruction-set-variant=cortex-a53 --instruction-set-features=default --runtime-arg -Xms64m --runtime-arg -Xmx512m --compiler-filter=speed-profile -j4 --swap-fd=16 --app-image-fd=17 --image-format=lz4 --profile-file-fd=18 --classpath-dir=/data/app/com.aurorasoftworks.quadrant.ui.professional-VH_ydz-pdzC-HwMoMrkyjA==
    

动态加载dex

01-12 12:22:52.992 12046 12046 W dex2oat : Using default instruction set features for ARM CPU variant (default) using conservative defaults
01-12 12:22:52.993 12046 12046 I dex2oat : /system/bin/dex2oat -j4 --dex-file=/data/data/com.netease.newsreader.activity/files/tdata_VnV324.jar --output-vdex-fd=56 --oat-fd=57 --oat-location=/data/data/com.netease.newsreader.activity/files/oat/arm/tdata_VnV324.odex --compiler-filter=quicken
01-12 12:22:53.755 12046 12046 I dex2oat : dex2oat took 763.301ms (290.864ms cpu) (threads: 4) arena alloc=11KB (12000B) java alloc=98KB (101152B) native alloc=1328KB (1360200B) free=2MB (2309816B)

01-12 12:23:24.391 12156 12156 W dex2oat : Using default instruction set features for ARM CPU variant (default) using conservative defaults
01-12 12:23:24.392 12156 12156 I dex2oat : /system/bin/dex2oat -j4 --dex-file=/data/data/com.netease.newsreader.activity/files/tdata_GBG382.jar --output-vdex-fd=50 --oat-fd=51 --oat-location=/data/data/com.netease.newsreader.activity/files/oat/arm/tdata_GBG382.odex --compiler-filter=quicken
01-12 12:23:25.688 12156 12156 I dex2oat : dex2oat took 1.298s (487.876ms cpu) (threads: 4) arena alloc=8KB (9184B) java alloc=221KB (226544B) native alloc=1265KB (1296200B) free=2MB (2373816B)

uiautomator

  • 前提

    若未配置WITH_DEXPREOPT,则在首次启动uiautomator时也会触发dex2oat的编译

  • 启动uiautomator

    $ adb shell uiautomator -h 
    
  • dex2oat编译

    01-02 05:54:26.089 30222 30222 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 2000 <<<<<<
    01-02 05:54:26.141 30222 30222 I app_process: Using an offset of 0xff3d8000 from default art base address of 0x70000000
    01-02 05:54:26.141 30222 30222 I app_process: GenerateImage: /system/bin/dex2oat --image=/data/local/tmp/dalvik-cache/arm64/system@framework@boot.art --dex-file=/system/framework/core-oj.jar --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/apache-xml.jar --dex-file=/system/framework/legacy-test.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/org.apache.http.legacy.boot.jar --dex-file=/system/framework/android.hidl.base-V1.0-java.jar --dex-file=/system/framework/android.hidl.manager-V1.0-java.jar --dex-file=/system/framework/radio_interactor_common.jar --oat-file=/data/local/tmp/dalvik-cache/arm64/system@framework@boot.oat --instruction-set=arm64 --instruction-set-features=a53 --base=0x6f3d8000 --runtim
    01-02 05:54:26.257 30224 30224 I dex2oat : /system/bin/dex2oat --image=/data/local/tmp/dalvik-cache/arm64/system@framework@boot.art --dex-file=/system/framework/core-oj.jar --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/apache-xml.jar --dex-file=/system/framework/legacy-test.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/org.apache.http.legacy.boot.jar --dex-file=/system/framework/android.hidl.base-V1.0-java.jar --dex-file=/system/framework/android.hidl.manager-V1.0-java.jar --dex-file=/system/framework/radio_interactor_common.jar --oat-file=/data/local/tmp/dalvik-cache/arm64/system@framework@boot.oat --instruction-set=arm64 --instruction-set-features=a53 --base=0x6f3d8000 --runtime-arg -Xms64m -
    
  • 编译产物

    $ ls -l /data/local/tmp/dalvik-cache/arm64/                                                                                                              
    total 89816
    -rw-r--r-- 1 shell shell    17024 2012-01-02 05:55 system@framework@android.test.runner.jar@classes.dex
    -rw-r--r-- 1 shell shell   119380 2012-01-02 05:55 system@framework@android.test.runner.jar@classes.vdex
    -rw-r--r-- 1 shell shell 10784768 2012-01-02 05:55 system@framework@boot.art
    -rw-r--r-- 1 shell shell 42107520 2012-01-02 05:55 system@framework@boot.oat
    -rw-r--r-- 1 shell shell 38225946 2012-01-02 05:55 system@framework@boot.vdex
    -rw-r--r-- 1 shell shell    25216 2012-01-02 05:55 system@framework@uiautomator.jar@classes.dex
    -rw-r--r-- 1 shell shell   549570 2012-01-02 05:55 system@framework@uiautomator.jar@classes.vdex
    

dex2oat相关配置

pm.dexopt相关

angler:/ # getprop|grep pm.dexopt
[pm.dexopt.ab-ota]: [speed-profile]
[pm.dexopt.bg-dexopt]: [speed-profile]
[pm.dexopt.boot]: [verify]
[pm.dexopt.first-boot]: [quicken]
[pm.dexopt.install]: [quicken]

这些属性定义在build/target/product/core_minimal.mk中

dex2oat编译线程个数

  • 默认为设备cpu核数

  • dalvik.vm.boot-dex2oat-threads

    • number of threads to use during boot time
    • 若配置WITH_DEXPREOPT为TRUE, 则boot阶段没有要编译的东西
    • 若配置WITH_DEXPREOPT为false,则会编译
      • services.jar
      • ethernet-service.jar
      • wifi-service.jar
      • com.android.location.provider.jar
      • javax.obex.jar
  • dalvik.vm.dex2oat-threads

    • number of threads to use after boot time
    • 特指PackageManager.DexOptimizer及之后的app安装
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容