connectedhomeip icon indicating copy to clipboard operation
connectedhomeip copied to clipboard

Decouple reporting::Engine from InteractionModelEngine (somewhat)

Open andy31415 opened this issue 1 year ago • 9 comments

Changes

  • define a "EngineDelegate" pure abstract class to define the needs of a reporting engine. Still rough as reaching into object pools seems to be very direct in the current classes
  • define a support/static_support_smart_ptr.h to allow us to use compile-time decisions if real pointers should be used for IM delegates or if we should just reference globals.

Expectation is that on small platforms RAM usage should decrease as we are switching from a pointer usage to the static wrapper.

I tested this theory at least on QPG using -fdump-lang-class. I got:

#BEFORE
Class chip::app::reporting::Engine
   size=256 align=8
   base size=252 base align=8
chip::app::reporting::Engine (0x0x7f589da8ec00) 0

#AFTER
Class chip::app::reporting::Engine
   size=248 align=8
   base size=248 base align=8
chip::app::reporting::Engine (0x0x7f3d0c434900) 0

However since InteractionModelEngine has a single reporting::Engine member, there seems to be no difference

andy31415 avatar Feb 12 '24 18:02 andy31415

PR #32081: Size comparison from 7cc357ea9d26ee3cf170eab198930f1ac3d7321a to 481db24f294c7420bc633cb3136c5548b44ba6d7

Increases (14 builds for cc13x4_26x4, cc32xx, mbed, nrfconnect, qpg, stm32)
platform target config section 7cc357ea 481db24f change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781396 781596 200 0.0
.rodata 90372 90428 56 0.1
.text 690760 690904 144 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 800284 800500 216 0.0
.rodata 84772 84828 56 0.1
.text 715248 715408 160 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 788868 789084 216 0.0
.rodata 111516 111572 56 0.1
.text 677088 677248 160 0.0
pump-app LP_EM_CC1354P10_6 (read only) 739180 739380 200 0.0
.rodata 86092 86148 56 0.1
.text 652824 652968 144 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 724804 725012 208 0.0
.rodata 81932 81988 56 0.1
.text 642608 642760 152 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581338 581602 264 0.0
.rodata 86530 86626 96 0.1
.text 492684 492852 168 0.0
lock CC3235SF_LAUNCHXL (read only) 628794 629058 264 0.0
.rodata 107138 107234 96 0.1
.text 519532 519700 168 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532024 2532208 184 0.0
.text 1494708 1494892 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1095612 1095796 184 0.0
rodata 111732 111788 56 0.1
text 806100 806240 140 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1215944 1216144 200 0.0
rodata 141592 141648 56 0.0
text 801728 801872 144 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1046812 1047012 200 0.0
rodata 99388 99444 56 0.1
text 770020 770164 144 0.0
qpg lighting-app qpg6105+debug (read/write) 1124896 1125096 200 0.0
.text 637280 637480 200 0.0
lock-app qpg6105+debug (read/write) 1089712 1089912 200 0.0
.text 602092 602292 200 0.0
stm32 light STM32WB5MM-DK (read/write) 597269 597469 200 0.0
.rodata 78828 78884 56 0.1
.text 379752 379896 144 0.0
Decreases (1 build for cc13x4_26x4)
platform target config section 7cc357ea 481db24f change % change
cc13x4_26x4 pump-app LP_EM_CC1354P10_6 (read/write) 167880 167872 -8 -0.0
.bss 89648 89640 -8 -0.0
Full report (14 builds for cc13x4_26x4, cc32xx, mbed, nrfconnect, qpg, stm32)
platform target config section 7cc357ea 481db24f change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781396 781596 200 0.0
(read/write) 168920 168920 0 0.0
.bss 90908 90908 0 0.0
.data 3568 3568 0 0.0
.rodata 90372 90428 56 0.1
.text 690760 690904 144 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 800284 800500 216 0.0
(read/write) 179184 179184 0 0.0
.bss 101188 101188 0 0.0
.data 3560 3560 0 0.0
.rodata 84772 84828 56 0.1
.text 715248 715408 160 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 788868 789084 216 0.0
(read/write) 173632 173632 0 0.0
.bss 95636 95636 0 0.0
.data 3560 3560 0 0.0
.rodata 111516 111572 56 0.1
.text 677088 677248 160 0.0
pump-app LP_EM_CC1354P10_6 (read only) 739180 739380 200 0.0
(read/write) 167880 167872 -8 -0.0
.bss 89648 89640 -8 -0.0
.data 3552 3552 0 0.0
.rodata 86092 86148 56 0.1
.text 652824 652968 144 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 724804 725012 208 0.0
(read/write) 168096 168096 0 0.0
.bss 89864 89864 0 0.0
.data 3552 3552 0 0.0
.rodata 81932 81988 56 0.1
.text 642608 642760 152 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581338 581602 264 0.0
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86530 86626 96 0.1
.text 492684 492852 168 0.0
lock CC3235SF_LAUNCHXL (read only) 628794 629058 264 0.0
(read/write) 208368 208368 0 0.0
.bss 201744 201744 0 0.0
.data 1504 1504 0 0.0
.rodata 107138 107234 96 0.1
.text 519532 519700 168 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532024 2532208 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494708 1494892 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1095612 1095796 184 0.0
bss 129969 129969 0 0.0
rodata 111732 111788 56 0.1
text 806100 806240 140 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1215944 1216144 200 0.0
bss 122107 122107 0 0.0
rodata 141592 141648 56 0.0
text 801728 801872 144 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046812 1047012 200 0.0
bss 129633 129633 0 0.0
rodata 99388 99444 56 0.1
text 770020 770164 144 0.0
qpg lighting-app qpg6105+debug (read/write) 1124896 1125096 200 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637280 637480 200 0.0
lock-app qpg6105+debug (read/write) 1089712 1089912 200 0.0
.bss 98672 98672 0 0.0
.data 840 840 0 0.0
.text 602092 602292 200 0.0
stm32 light STM32WB5MM-DK (read/write) 597269 597469 200 0.0
.bss 128288 128288 0 0.0
.data 676 676 0 0.0
.rodata 78828 78884 56 0.1
.text 379752 379896 144 0.0

github-actions[bot] avatar Feb 12 '24 19:02 github-actions[bot]

PR #32081: Size comparison from 7cc357ea9d26ee3cf170eab198930f1ac3d7321a to 13e26b572d7042c489c86fce820d4ee765baca7a

Increases above 0.2%:

platform target config section 7cc357ea 13e26b57 change % change
linux air-purifier-app debug .data.rel.ro 74248 74440 192 0.3
bridge-app debug .data.rel.ro 86160 86336 176 0.2
chip-tool-ipv6only arm64 (read/write) 588640 591744 3104 0.5
lock-app debug .data.rel.ro 80664 80856 192 0.2
ota-provider-app debug .data.rel.ro 69760 69936 176 0.3
ota-requestor-app debug .data.rel.ro 72720 72896 176 0.2
shell debug .data.rel.ro 86040 86224 184 0.2
tv-app debug .data.rel.ro 94104 94296 192 0.2
Increases (62 builds for cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
platform target config section 7cc357ea 13e26b57 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781396 781596 200 0.0
.rodata 90372 90428 56 0.1
.text 690760 690904 144 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 800284 800500 216 0.0
.rodata 84772 84828 56 0.1
.text 715248 715408 160 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 788868 789084 216 0.0
.rodata 111516 111572 56 0.1
.text 677088 677248 160 0.0
pump-app LP_EM_CC1354P10_6 (read only) 739180 739380 200 0.0
.rodata 86092 86148 56 0.1
.text 652824 652968 144 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 724804 725012 208 0.0
.rodata 81932 81988 56 0.1
.text 642608 642760 152 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581338 581602 264 0.0
.rodata 86530 86626 96 0.1
.text 492684 492852 168 0.0
lock CC3235SF_LAUNCHXL (read only) 628794 629058 264 0.0
.rodata 107138 107234 96 0.1
.text 519532 519700 168 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564843 565051 208 0.0
.app_xip_area 454701 454909 208 0.0
lock cyw930739m2evb_01 (read/write) 549955 550155 200 0.0
.app_xip_area 435013 435213 200 0.0
ota-requestor cyw930739m2evb_01 (read/write) 566491 566691 200 0.0
.app_xip_area 457845 458045 200 0.0
switch cyw930739m2evb_01 (read/write) 563299 563499 200 0.0
.app_xip_area 451341 451541 200 0.0
efr32 lighting-app BRD4161A+rs9116 (read/write) 928728 928976 248 0.0
.text 729416 729664 248 0.0
BRD4187C (read/write) 1105488 1105704 216 0.0
.text 906964 907180 216 0.0
lock-app BRD4161A+wf200 (read/write) 1123108 1123316 208 0.0
.text 932008 932216 208 0.0
window-app BRD4187C (read/write) 1159688 1159936 248 0.0
.text 987468 987716 248 0.0
esp32 all-clusters-app c3devkit (read only) 1202656 1202816 160 0.0
(read/write) 1747176 1747232 56 0.0
.flash.rodata 250456 250512 56 0.0
.flash.text 1202656 1202816 160 0.0
m5stack (read only) 1244395 1244675 280 0.0
(read/write) 532116 532172 56 0.0
.flash.rodata 280592 280648 56 0.0
.flash.text 1238231 1238511 280 0.0
k32w contact k32w0+release (read only) 611224 611440 216 0.0
.text 610688 610904 216 0.0
k32w1+release (read/write) 696632 696832 200 0.0
.text 582608 582808 200 0.0
light k32w0+release (read only) 599400 599616 216 0.0
.text 598864 599080 216 0.0
k32w1+release (read/write) 787576 787776 200 0.0
.text 664680 664880 200 0.0
lock k32w0+release (read only) 581888 582088 200 0.0
.text 581352 581552 200 0.0
linux air-purifier-app debug (read only) 2629205 2630269 1064 0.0
(read/write) 129376 129568 192 0.1
.data.rel.ro 74248 74440 192 0.3
.text 2266373 2267029 656 0.0
all-clusters-app debug (read only) 5879009 5880057 1048 0.0
(read/write) 478760 478952 192 0.0
.data.rel.ro 332824 333016 192 0.1
.text 5099075 5099715 640 0.0
all-clusters-minimal-app debug (read only) 5193873 5194937 1064 0.0
(read/write) 236608 236800 192 0.1
.data.rel.ro 97096 97288 192 0.2
.text 4670899 4671555 656 0.0
bridge-app debug (read only) 4602233 4603297 1064 0.0
(read/write) 217592 217816 224 0.1
.bss 118560 118592 32 0.0
.data.rel.ro 86160 86336 176 0.2
.text 4152643 4153299 656 0.0
chip-tool debug (read only) 11975441 11976457 1016 0.0
(read/write) 520856 521048 192 0.0
.data.rel.ro 414240 414424 184 0.0
.text 10822931 10823539 608 0.0
chip-tool-ipv6only arm64 (read only) 11471808 11472848 1040 0.0
(read/write) 588640 591744 3104 0.5
.bss 103320 103336 16 0.0
.data.rel.ro 454000 454184 184 0.0
.got 20328 20336 8 0.0
.text 10231852 10232412 560 0.0
lighting-app debug+rpc+ui (read only) 5523577 5524641 1064 0.0
(read/write) 226376 226600 224 0.1
.bss 119512 119544 32 0.0
.data.rel.ro 94560 94736 176 0.2
.text 4923187 4923843 656 0.0
lock-app debug (read only) 4681009 4682073 1064 0.0
(read/write) 205552 205744 192 0.1
.data.rel.ro 80664 80856 192 0.2
.text 4212915 4213571 656 0.0
ota-provider-app debug (read only) 4303121 4304185 1064 0.0
(read/write) 193808 194000 192 0.1
.data.rel.ro 69760 69936 176 0.3
.text 3902035 3902691 656 0.0
ota-requestor-app debug (read only) 4419153 4420217 1064 0.0
(read/write) 198056 198216 160 0.1
.data.rel.ro 72720 72896 176 0.2
.text 4007763 4008419 656 0.0
shell debug (read only) 2868297 2869361 1064 0.0
(read/write) 155784 155976 192 0.1
.data.rel.ro 86040 86224 184 0.2
.text 2508130 2508786 656 0.0
thermostat-no-ble arm64 (read only) 4483496 4484584 1088 0.0
.bss 122344 122360 16 0.0
.data.rel.ro 103712 103896 184 0.2
.got 12216 12224 8 0.1
.text 3978684 3979292 608 0.0
tv-app debug (read only) 5650297 5651361 1064 0.0
(read/write) 351784 351976 192 0.1
.data.rel.ro 94104 94296 192 0.2
.text 5122099 5122755 656 0.0
tv-casting-app debug (read only) 9856081 9857129 1048 0.0
(read/write) 340496 340720 224 0.1
.bss 156624 156656 32 0.0
.data.rel.ro 174040 174232 192 0.1
.text 9007875 9008515 640 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532024 2532208 184 0.0
.text 1494708 1494892 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1095612 1095796 184 0.0
rodata 111732 111788 56 0.1
text 806100 806240 140 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1215944 1216144 200 0.0
rodata 141592 141648 56 0.0
text 801728 801872 144 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1046812 1047012 200 0.0
rodata 99388 99444 56 0.1
text 770020 770164 144 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read/write) 1789780 1790044 264 0.0
.text 1583340 1583604 264 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read/write) 1715548 1715812 264 0.0
.text 1511444 1511708 264 0.0
light cy8ckit_062s2_43012 (read/write) 1634876 1635124 248 0.0
.text 1437500 1437748 248 0.0
lock cy8ckit_062s2_43012 (read/write) 1667172 1667444 272 0.0
.text 1442596 1442868 272 0.0
qpg lighting-app qpg6105+debug (read/write) 1124896 1125096 200 0.0
.text 637280 637480 200 0.0
lock-app qpg6105+debug (read/write) 1089712 1089912 200 0.0
.text 602092 602292 200 0.0
stm32 light STM32WB5MM-DK (read/write) 597269 597469 200 0.0
.rodata 78828 78884 56 0.1
.text 379752 379896 144 0.0
telink air-quality-sensor-app tlsr9528a_retention (read/write) 825830 826030 200 0.0
text 617558 617708 150 0.0
all-clusters-app tlsr9518adk80d (read/write) 1084356 1084564 208 0.0
text 787626 787778 152 0.0
all-clusters-minimal-app tlsr9528a (read/write) 1045056 1045264 208 0.0
text 761066 761218 152 0.0
bridge-app tlsr9518adk80d (read/write) 907068 907276 208 0.0
text 649726 649878 152 0.0
contact-sensor-app tlsr9528a_retention (read/write) 827430 827630 200 0.0
text 619220 619370 150 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read/write) 933696 933896 200 0.0
text 699904 700054 150 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read/write) 1068544 1068752 208 0.0
text 773524 773676 152 0.0
lock-app-dfu tlsr9528a (read/write) 906724 906916 192 0.0
text 655714 655864 150 0.0
ota-requestor-app tlsr9518adk80d (read/write) 924848 925056 208 0.0
text 667618 667770 152 0.0
pump-app tlsr9258a_retention (read/write) 830038 830230 192 0.0
text 622222 622372 150 0.0
pump-controller-app tlsr9518adk80d (read/write) 793760 793960 200 0.0
text 592988 593138 150 0.0
smoke_co_alarm-app tlsr9528a_retention (read/write) 828694 828894 200 0.0
text 621574 621724 150 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read/write) 852373 852573 200 0.0
text 636420 636570 150 0.0
thermostat tlsr9518adk80d (read/write) 819348 819548 200 0.0
text 612620 612770 150 0.0
window-covering tlsr9258a (read/write) 838804 839004 200 0.0
text 629128 629278 150 0.0
Decreases (13 builds for cc13x4_26x4, k32w, linux, telink)
platform target config section 7cc357ea 13e26b57 change % change
cc13x4_26x4 pump-app LP_EM_CC1354P10_6 (read/write) 167880 167872 -8 -0.0
.bss 89648 89640 -8 -0.0
k32w lock k32w0+release (read/write) 78836 78828 -8 -0.0
.bss 66704 66696 -8 -0.0
linux thermostat-no-ble arm64 (read/write) 249576 248536 -1040 -0.4
telink air-quality-sensor-app tlsr9528a_retention bss 51116 51108 -8 -0.0
contact-sensor-app tlsr9528a_retention bss 51164 51156 -8 -0.0
light-switch-app-ota-shell-factory-data tlsr9528a bss 79204 79196 -8 -0.0
lock-app-dfu tlsr9528a bss 70668 70660 -8 -0.0
pump-app tlsr9258a_retention bss 51272 51264 -8 -0.0
pump-controller-app tlsr9518adk80d bss 57472 57464 -8 -0.0
smoke_co_alarm-app tlsr9528a_retention bss 51292 51284 -8 -0.0
temperature-measurement-app-mars-ota tlsr9518adk80d bss 60948 60940 -8 -0.0
thermostat tlsr9518adk80d bss 57760 57752 -8 -0.0
window-covering tlsr9258a bss 69576 69568 -8 -0.0
Full report (63 builds for cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
platform target config section 7cc357ea 13e26b57 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781396 781596 200 0.0
(read/write) 168920 168920 0 0.0
.bss 90908 90908 0 0.0
.data 3568 3568 0 0.0
.rodata 90372 90428 56 0.1
.text 690760 690904 144 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 800284 800500 216 0.0
(read/write) 179184 179184 0 0.0
.bss 101188 101188 0 0.0
.data 3560 3560 0 0.0
.rodata 84772 84828 56 0.1
.text 715248 715408 160 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 788868 789084 216 0.0
(read/write) 173632 173632 0 0.0
.bss 95636 95636 0 0.0
.data 3560 3560 0 0.0
.rodata 111516 111572 56 0.1
.text 677088 677248 160 0.0
pump-app LP_EM_CC1354P10_6 (read only) 739180 739380 200 0.0
(read/write) 167880 167872 -8 -0.0
.bss 89648 89640 -8 -0.0
.data 3552 3552 0 0.0
.rodata 86092 86148 56 0.1
.text 652824 652968 144 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 724804 725012 208 0.0
(read/write) 168096 168096 0 0.0
.bss 89864 89864 0 0.0
.data 3552 3552 0 0.0
.rodata 81932 81988 56 0.1
.text 642608 642760 152 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581338 581602 264 0.0
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86530 86626 96 0.1
.text 492684 492852 168 0.0
lock CC3235SF_LAUNCHXL (read only) 628794 629058 264 0.0
(read/write) 208368 208368 0 0.0
.bss 201744 201744 0 0.0
.data 1504 1504 0 0.0
.rodata 107138 107234 96 0.1
.text 519532 519700 168 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564843 565051 208 0.0
.app_xip_area 454701 454909 208 0.0
.bss 64976 64976 0 0.0
.data 744 744 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 549955 550155 200 0.0
.app_xip_area 435013 435213 200 0.0
.bss 69768 69768 0 0.0
.data 752 752 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 566491 566691 200 0.0
.app_xip_area 457845 458045 200 0.0
.bss 63512 63512 0 0.0
.data 712 712 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 563299 563499 200 0.0
.app_xip_area 451341 451541 200 0.0
.bss 66752 66752 0 0.0
.data 784 784 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rs9116 (read/write) 928728 928976 248 0.0
.bss 197904 197904 0 0.0
.data 1388 1388 0 0.0
.text 729416 729664 248 0.0
BRD4187C (read/write) 1105488 1105704 216 0.0
.bss 195100 195100 0 0.0
.data 3404 3404 0 0.0
.text 906964 907180 216 0.0
lock-app BRD4161A+wf200 (read/write) 1123108 1123316 208 0.0
.bss 188288 188288 0 0.0
.data 2792 2792 0 0.0
.text 932008 932216 208 0.0
window-app BRD4187C (read/write) 1159688 1159936 248 0.0
.bss 168884 168884 0 0.0
.data 3316 3316 0 0.0
.text 987468 987716 248 0.0
esp32 all-clusters-app c3devkit (read only) 1202656 1202816 160 0.0
(read/write) 1747176 1747232 56 0.0
.dram0.bss 73568 73568 0 0.0
.dram0.data 13628 13628 0 0.0
.flash.rodata 250456 250512 56 0.0
.flash.text 1202656 1202816 160 0.0
.iram0.text 75530 75530 0 0.0
m5stack (read only) 1244395 1244675 280 0.0
(read/write) 532116 532172 56 0.0
.dram0.bss 80424 80424 0 0.0
.dram0.data 35180 35180 0 0.0
.flash.rodata 280592 280648 56 0.0
.flash.text 1238231 1238511 280 0.0
.iram0.text 125403 125403 0 0.0
k32w contact k32w0+release (read only) 611224 611440 216 0.0
(read/write) 81392 81392 0 0.0
.bss 69184 69184 0 0.0
.data 2224 2224 0 0.0
.text 610688 610904 216 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 696632 696832 200 0.0
.bss 67752 67752 0 0.0
.data 2800 2800 0 0.0
.text 582608 582808 200 0.0
light k32w0+release (read only) 599400 599616 216 0.0
(read/write) 79344 79344 0 0.0
.bss 67160 67160 0 0.0
.data 2200 2200 0 0.0
.text 598864 599080 216 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 787576 787776 200 0.0
.bss 77428 77428 0 0.0
.data 2016 2016 0 0.0
.text 664680 664880 200 0.0
lock k32w0+release (read only) 581888 582088 200 0.0
(read/write) 78836 78828 -8 -0.0
.bss 66704 66696 -8 -0.0
.data 2148 2148 0 0.0
.text 581352 581552 200 0.0
linux air-purifier-app debug (read only) 2629205 2630269 1064 0.0
(read/write) 129376 129568 192 0.1
.bss 46944 46944 0 0.0
.data 2240 2240 0 0.0
.data.rel.ro 74248 74440 192 0.3
.dynamic 608 608 0 0.0
.got 4568 4568 0 0.0
.init 27 27 0 0.0
.init_array 760 760 0 0.0
.rodata 184968 184968 0 0.0
.text 2266373 2267029 656 0.0
all-clusters-app debug (read only) 5879009 5880057 1048 0.0
(read/write) 478760 478952 192 0.0
.bss 134064 134064 0 0.0
.data 4464 4464 0 0.0
.data.rel.ro 332824 333016 192 0.1
.dynamic 624 624 0 0.0
.got 5384 5384 0 0.0
.init 27 27 0 0.0
.init_array 1360 1360 0 0.0
.rodata 347624 347624 0 0.0
.text 5099075 5099715 640 0.0
all-clusters-minimal-app debug (read only) 5193873 5194937 1064 0.0
(read/write) 236608 236800 192 0.1
.bss 128080 128080 0 0.0
.data 4336 4336 0 0.0
.data.rel.ro 97096 97288 192 0.2
.dynamic 624 624 0 0.0
.got 5304 5304 0 0.0
.init 27 27 0 0.0
.init_array 1128 1128 0 0.0
.rodata 288154 288154 0 0.0
.text 4670899 4671555 656 0.0
bridge-app debug (read only) 4602233 4603297 1064 0.0
(read/write) 217592 217816 224 0.1
.bss 118560 118592 32 0.0
.data 6144 6144 0 0.0
.data.rel.ro 86160 86336 176 0.2
.dynamic 624 624 0 0.0
.got 5272 5272 0 0.0
.init 27 27 0 0.0
.init_array 816 816 0 0.0
.rodata 228922 228922 0 0.0
.text 4152643 4153299 656 0.0
chip-tool debug (read only) 11975441 11976457 1016 0.0
(read/write) 520856 521048 192 0.0
.bss 94296 94296 0 0.0
.data 5090 5090 0 0.0
.data.rel.ro 414240 414424 184 0.0
.dynamic 624 624 0 0.0
.got 5776 5776 0 0.0
.init 27 27 0 0.0
.init_array 792 792 0 0.0
.rodata 447513 447513 0 0.0
.text 10822931 10823539 608 0.0
chip-tool-ipv6only arm64 (read only) 11471808 11472848 1040 0.0
(read/write) 588640 591744 3104 0.5
.bss 103320 103336 16 0.0
.data 4480 4480 0 0.0
.data.rel.ro 454000 454184 184 0.0
.dynamic 512 512 0 0.0
.got 20328 20336 8 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 352956 352956 0 0.0
.text 10231852 10232412 560 0.0
lighting-app debug+rpc+ui (read only) 5523577 5524641 1064 0.0
(read/write) 226376 226600 224 0.1
.bss 119512 119544 32 0.0
.data 4800 4800 0 0.0
.data.rel.ro 94560 94736 176 0.2
.dynamic 672 672 0 0.0
.got 5888 5888 0 0.0
.init 27 27 0 0.0
.init_array 936 936 0 0.0
.rodata 353620 353620 0 0.0
.text 4923187 4923843 656 0.0
lock-app debug (read only) 4681009 4682073 1064 0.0
(read/write) 205552 205744 192 0.1
.bss 114064 114064 0 0.0
.data 4096 4096 0 0.0
.data.rel.ro 80664 80856 192 0.2
.dynamic 624 624 0 0.0
.got 5224 5224 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 255418 255418 0 0.0
.text 4212915 4213571 656 0.0
ota-provider-app debug (read only) 4303121 4304185 1064 0.0
(read/write) 193808 194000 192 0.1
.bss 113824 113824 0 0.0
.data 4304 4304 0 0.0
.data.rel.ro 69760 69936 176 0.3
.dynamic 624 624 0 0.0
.got 4560 4560 0 0.0
.init 27 27 0 0.0
.init_array 712 712 0 0.0
.rodata 207770 207770 0 0.0
.text 3902035 3902691 656 0.0
ota-requestor-app debug (read only) 4419153 4420217 1064 0.0
(read/write) 198056 198216 160 0.1
.bss 114720 114720 0 0.0
.data 4704 4704 0 0.0
.data.rel.ro 72720 72896 176 0.2
.dynamic 624 624 0 0.0
.got 4496 4496 0 0.0
.init 27 27 0 0.0
.init_array 768 768 0 0.0
.rodata 213786 213786 0 0.0
.text 4007763 4008419 656 0.0
shell debug (read only) 2868297 2869361 1064 0.0
(read/write) 155784 155976 192 0.1
.bss 62576 62576 0 0.0
.data 1392 1392 0 0.0
.data.rel.ro 86040 86224 184 0.2
.dynamic 592 592 0 0.0
.got 4080 4080 0 0.0
.init 27 27 0 0.0
.init_array 1072 1072 0 0.0
.rodata 187360 187360 0 0.0
.text 2508130 2508786 656 0.0
thermostat-no-ble arm64 (read only) 4483496 4484584 1088 0.0
(read/write) 249576 248536 -1040 -0.4
.bss 122344 122360 16 0.0
.data 3352 3352 0 0.0
.data.rel.ro 103712 103896 184 0.2
.dynamic 512 512 0 0.0
.got 12216 12224 8 0.1
.init 24 24 0 0.0
.init_array 416 416 0 0.0
.rodata 159420 159420 0 0.0
.text 3978684 3979292 608 0.0
tv-app debug (read only) 5650297 5651361 1064 0.0
(read/write) 351784 351976 192 0.1
.bss 243872 243872 0 0.0
.data 6496 6496 0 0.0
.data.rel.ro 94104 94296 192 0.2
.dynamic 624 624 0 0.0
.got 5512 5512 0 0.0
.init 27 27 0 0.0
.init_array 1152 1152 0 0.0
.rodata 286490 286490 0 0.0
.text 5122099 5122755 656 0.0
tv-casting-app debug (read only) 9856081 9857129 1048 0.0
(read/write) 340496 340720 224 0.1
.bss 156624 156656 32 0.0
.data 2912 2912 0 0.0
.data.rel.ro 174040 174232 192 0.1
.dynamic 624 624 0 0.0
.got 5088 5088 0 0.0
.init 27 27 0 0.0
.init_array 1176 1176 0 0.0
.rodata 382480 382480 0 0.0
.text 9007875 9008515 640 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532024 2532208 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494708 1494892 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1095612 1095796 184 0.0
bss 129969 129969 0 0.0
rodata 111732 111788 56 0.1
text 806100 806240 140 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1215944 1216144 200 0.0
bss 122107 122107 0 0.0
rodata 141592 141648 56 0.0
text 801728 801872 144 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046812 1047012 200 0.0
bss 129633 129633 0 0.0
rodata 99388 99444 56 0.1
text 770020 770164 144 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 835288 835288 0 0.0
(read/write) 1789780 1790044 264 0.0
.bss 195396 195396 0 0.0
.data 2656 2656 0 0.0
.text 1583340 1583604 264 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 837624 837624 0 0.0
(read/write) 1715548 1715812 264 0.0
.bss 193084 193084 0 0.0
.data 2632 2632 0 0.0
.text 1511444 1511708 264 0.0
light cy8ckit_062s2_43012 (read only) 844352 844352 0 0.0
(read/write) 1634876 1635124 248 0.0
.bss 186548 186548 0 0.0
.data 2440 2440 0 0.0
.text 1437500 1437748 248 0.0
lock cy8ckit_062s2_43012 (read only) 817152 817152 0 0.0
(read/write) 1667172 1667444 272 0.0
.bss 213748 213748 0 0.0
.data 2440 2440 0 0.0
.text 1442596 1442868 272 0.0
qpg lighting-app qpg6105+debug (read/write) 1124896 1125096 200 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637280 637480 200 0.0
lock-app qpg6105+debug (read/write) 1089712 1089912 200 0.0
.bss 98672 98672 0 0.0
.data 840 840 0 0.0
.text 602092 602292 200 0.0
stm32 light STM32WB5MM-DK (read/write) 597269 597469 200 0.0
.bss 128288 128288 0 0.0
.data 676 676 0 0.0
.rodata 78828 78884 56 0.1
.text 379752 379896 144 0.0
telink air-quality-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 825830 826030 200 0.0
bss 51116 51108 -8 -0.0
text 617558 617708 150 0.0
all-clusters-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 1084356 1084564 208 0.0
bss 100920 100920 0 0.0
text 787626 787778 152 0.0
all-clusters-minimal-app tlsr9528a (read only) 47960 47960 0 0.0
(read/write) 1045056 1045264 208 0.0
bss 110028 110028 0 0.0
text 761066 761218 152 0.0
bridge-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 907068 907276 208 0.0
bss 93060 93060 0 0.0
text 649726 649878 152 0.0
contact-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 827430 827630 200 0.0
bss 51164 51156 -8 -0.0
text 619220 619370 150 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read only) 51584 51584 0 0.0
(read/write) 933696 933896 200 0.0
bss 79204 79196 -8 -0.0
text 699904 700054 150 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read only) 29122 29122 0 0.0
(read/write) 1068544 1068752 208 0.0
bss 100140 100140 0 0.0
text 773524 773676 152 0.0
lock-app-dfu tlsr9528a (read only) 51584 51584 0 0.0
(read/write) 906724 906916 192 0.0
bss 70668 70660 -8 -0.0
text 655714 655864 150 0.0
ota-requestor-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 924848 925056 208 0.0
bss 92640 92640 0 0.0
text 667618 667770 152 0.0
pump-app tlsr9258a_retention (read only) 51774 51774 0 0.0
(read/write) 830038 830230 192 0.0
bss 51272 51264 -8 -0.0
text 622222 622372 150 0.0
pump-controller-app tlsr9518adk80d (read only) 31872 31872 0 0.0
(read/write) 793760 793960 200 0.0
bss 57472 57464 -8 -0.0
text 592988 593138 150 0.0
shell tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 676856 676856 0 0.0
bss 73640 73640 0 0.0
text 462254 462254 0 0.0
smoke_co_alarm-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 828694 828894 200 0.0
bss 51292 51284 -8 -0.0
text 621574 621724 150 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read only) 32220 32220 0 0.0
(read/write) 852373 852573 200 0.0
bss 60948 60940 -8 -0.0
text 636420 636570 150 0.0
thermostat tlsr9518adk80d (read only) 31872 31872 0 0.0
(read/write) 819348 819548 200 0.0
bss 57760 57752 -8 -0.0
text 612620 612770 150 0.0
window-covering tlsr9258a (read only) 51584 51584 0 0.0
(read/write) 838804 839004 200 0.0
bss 69576 69568 -8 -0.0
text 629128 629278 150 0.0

github-actions[bot] avatar Feb 12 '24 19:02 github-actions[bot]

PR #32081: Size comparison from 06c57697dfac63fe0cb498fff5b5467120d54ac6 to b39a0b2ac68e657fe96ab9bdbc21b9fd5d0ae897

Increases (4 builds for cc32xx, mbed, stm32)
platform target config section 06c57697 b39a0b2a change % change
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581498 256 0.0
.rodata 86538 86626 88 0.1
.text 492580 492748 168 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628954 256 0.0
.rodata 107146 107234 88 0.1
.text 519428 519596 168 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532008 2532192 184 0.0
.text 1494692 1494876 184 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597405 208 0.0
.rodata 78828 78884 56 0.1
.text 379688 379840 152 0.0
Full report (4 builds for cc32xx, mbed, stm32)
platform target config section 06c57697 b39a0b2a change % change
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581498 256 0.0
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86538 86626 88 0.1
.text 492580 492748 168 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628954 256 0.0
(read/write) 208360 208360 0 0.0
.bss 201744 201744 0 0.0
.data 1496 1496 0 0.0
.rodata 107146 107234 88 0.1
.text 519428 519596 168 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532008 2532192 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494692 1494876 184 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597405 208 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78828 78884 56 0.1
.text 379688 379840 152 0.0

github-actions[bot] avatar Feb 13 '24 21:02 github-actions[bot]

PR #32081: Size comparison from 06c57697dfac63fe0cb498fff5b5467120d54ac6 to 3966203842d0a40766cf768d5b7905254f91d0ca

Increases (16 builds for cc13x4_26x4, cc32xx, k32w, mbed, qpg, stm32)
platform target config section 06c57697 39662038 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read/write) 168904 168920 16 0.0
.bss 90908 90924 16 0.0
.rodata 90372 90428 56 0.1
lock-ftd LP_EM_CC1354P10_6 (read/write) 179184 179200 16 0.0
.bss 101188 101204 16 0.0
.rodata 84780 84836 56 0.1
lock-mtd LP_EM_CC1354P10_6 (read/write) 173632 173648 16 0.0
.bss 95636 95652 16 0.0
.rodata 111516 111572 56 0.1
pump-app LP_EM_CC1354P10_6 (read/write) 167880 167888 8 0.0
.bss 89648 89656 8 0.0
.rodata 86092 86148 56 0.1
pump-controller-app LP_EM_CC1354P10_6 (read/write) 168080 168096 16 0.0
.bss 89864 89880 16 0.0
.rodata 81932 81988 56 0.1
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581506 264 0.0
.rodata 86538 86626 88 0.1
.text 492580 492756 176 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628954 256 0.0
.rodata 107146 107234 88 0.1
.text 519428 519596 168 0.0
k32w contact k32w0+release (read only) 611592 611808 216 0.0
.text 611056 611272 216 0.0
k32w1+release (read/write) 750636 750852 216 0.0
.text 627800 628016 216 0.0
light k32w0+release (read only) 599768 599984 216 0.0
.text 599232 599448 216 0.0
k32w1+release (read/write) 786344 786552 208 0.0
.text 664456 664664 208 0.0
lock k32w0+release (read only) 582256 582456 200 0.0
.text 581720 581920 200 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532008 2532192 184 0.0
.text 1494692 1494876 184 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125040 208 0.0
.text 637216 637424 208 0.0
lock-app qpg6105+debug (read/write) 1089624 1089840 216 0.0
.text 602004 602220 216 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597405 208 0.0
.rodata 78828 78884 56 0.1
.text 379688 379840 152 0.0
Decreases (6 builds for cc13x4_26x4, k32w)
platform target config section 06c57697 39662038 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781324 780692 -632 -0.1
.text 690688 689996 -692 -0.1
lock-ftd LP_EM_CC1354P10_6 (read only) 800228 799588 -640 -0.1
.text 715184 714484 -700 -0.1
lock-mtd LP_EM_CC1354P10_6 (read only) 788804 788164 -640 -0.1
.text 677024 676324 -700 -0.1
pump-app LP_EM_CC1354P10_6 (read only) 739116 738468 -648 -0.1
.text 652760 652052 -708 -0.1
pump-controller-app LP_EM_CC1354P10_6 (read only) 724732 724100 -632 -0.1
.text 642536 641844 -692 -0.1
k32w lock k32w0+release (read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
Full report (16 builds for cc13x4_26x4, cc32xx, k32w, mbed, qpg, stm32)
platform target config section 06c57697 39662038 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781324 780692 -632 -0.1
(read/write) 168904 168920 16 0.0
.bss 90908 90924 16 0.0
.data 3560 3560 0 0.0
.rodata 90372 90428 56 0.1
.text 690688 689996 -692 -0.1
lock-ftd LP_EM_CC1354P10_6 (read only) 800228 799588 -640 -0.1
(read/write) 179184 179200 16 0.0
.bss 101188 101204 16 0.0
.data 3560 3560 0 0.0
.rodata 84780 84836 56 0.1
.text 715184 714484 -700 -0.1
lock-mtd LP_EM_CC1354P10_6 (read only) 788804 788164 -640 -0.1
(read/write) 173632 173648 16 0.0
.bss 95636 95652 16 0.0
.data 3560 3560 0 0.0
.rodata 111516 111572 56 0.1
.text 677024 676324 -700 -0.1
pump-app LP_EM_CC1354P10_6 (read only) 739116 738468 -648 -0.1
(read/write) 167880 167888 8 0.0
.bss 89648 89656 8 0.0
.data 3552 3552 0 0.0
.rodata 86092 86148 56 0.1
.text 652760 652052 -708 -0.1
pump-controller-app LP_EM_CC1354P10_6 (read only) 724732 724100 -632 -0.1
(read/write) 168080 168096 16 0.0
.bss 89864 89880 16 0.0
.data 3544 3544 0 0.0
.rodata 81932 81988 56 0.1
.text 642536 641844 -692 -0.1
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581506 264 0.0
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86538 86626 88 0.1
.text 492580 492756 176 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628954 256 0.0
(read/write) 208360 208360 0 0.0
.bss 201744 201744 0 0.0
.data 1496 1496 0 0.0
.rodata 107146 107234 88 0.1
.text 519428 519596 168 0.0
k32w contact k32w0+release (read only) 611592 611808 216 0.0
(read/write) 81408 81408 0 0.0
.bss 69200 69200 0 0.0
.data 2224 2224 0 0.0
.text 611056 611272 216 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 750636 750852 216 0.0
.bss 80652 80652 0 0.0
.data 2816 2816 0 0.0
.text 627800 628016 216 0.0
light k32w0+release (read only) 599768 599984 216 0.0
(read/write) 79360 79360 0 0.0
.bss 67176 67176 0 0.0
.data 2200 2200 0 0.0
.text 599232 599448 216 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 786344 786552 208 0.0
.bss 80500 80500 0 0.0
.data 2032 2032 0 0.0
.text 664456 664664 208 0.0
lock k32w0+release (read only) 582256 582456 200 0.0
(read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
.data 2148 2148 0 0.0
.text 581720 581920 200 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532008 2532192 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494692 1494876 184 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125040 208 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637216 637424 208 0.0
lock-app qpg6105+debug (read/write) 1089624 1089840 216 0.0
.bss 98672 98672 0 0.0
.data 840 840 0 0.0
.text 602004 602220 216 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597405 208 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78828 78884 56 0.1
.text 379688 379840 152 0.0

github-actions[bot] avatar Feb 13 '24 21:02 github-actions[bot]

PR #32081: Size comparison from 06c57697dfac63fe0cb498fff5b5467120d54ac6 to fccf9d9e0161caca035213c163cf5b781635d19b

Increases above 0.2%:

platform target config section 06c57697 fccf9d9e change % change
linux thermostat-no-ble arm64 (read/write) 246520 249496 2976 1.2
Increases (40 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, k32w, linux, mbed, psoc6, qpg, stm32)
platform target config section 06c57697 fccf9d9e change % change
bl602 lighting-app bl602 (read/write) 1430866 1431990 1124 0.1
.rodata 157436 157528 92 0.1
.text 1097972 1099004 1032 0.1
bl602+mfd (read/write) 1445274 1446406 1132 0.1
.rodata 156396 156488 92 0.1
.text 1113274 1114314 1040 0.1
bl602+rpc (read/write) 1478250 1479374 1124 0.1
.rodata 165004 165096 92 0.1
.text 1129358 1130386 1028 0.1
bl702 lighting-app bl702 (read/write) 1195431 1196551 1120 0.1
.rodata 106820 106912 92 0.1
.text 966976 968004 1028 0.1
bl702+mfd (read/write) 1206487 1207607 1120 0.1
.rodata 105760 105852 92 0.1
.text 978986 980014 1028 0.1
bl702+rpc (read/write) 1287155 1288275 1120 0.1
.rodata 122192 122284 92 0.1
.text 1041920 1042948 1028 0.1
bl706-eth (read/write) 1014073 1015193 1120 0.1
.rodata 100140 100232 92 0.1
.text 759052 760080 1028 0.1
bl706-wifi (read/write) 1247266 1248494 1228 0.1
.rodata 121120 121212 92 0.1
.text 989488 990622 1134 0.1
bl702l lighting-app bl702l (read/write) 1165012 1166132 1120 0.1
.rodata 100824 100916 92 0.1
.text 960078 961106 1028 0.1
bl702l+mfd (read/write) 1176416 1177536 1120 0.1
.rodata 99764 99856 92 0.1
.text 972400 973428 1028 0.1
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read/write) 168904 168920 16 0.0
.bss 90908 90924 16 0.0
.rodata 90372 90428 56 0.1
lock-ftd LP_EM_CC1354P10_6 (read/write) 179184 179200 16 0.0
.bss 101188 101204 16 0.0
.rodata 84780 84836 56 0.1
lock-mtd LP_EM_CC1354P10_6 (read/write) 173632 173648 16 0.0
.bss 95636 95652 16 0.0
.rodata 111516 111572 56 0.1
pump-app LP_EM_CC1354P10_6 (read/write) 167880 167888 8 0.0
.bss 89648 89656 8 0.0
.rodata 86092 86148 56 0.1
pump-controller-app LP_EM_CC1354P10_6 (read/write) 168080 168096 16 0.0
.bss 89864 89880 16 0.0
.rodata 81932 81988 56 0.1
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581538 296 0.1
.rodata 86538 86626 88 0.1
.text 492580 492792 212 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628994 296 0.0
.rodata 107146 107234 88 0.1
.text 519428 519640 212 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564779 565019 240 0.0
.app_xip_area 454637 454877 240 0.1
lock cyw930739m2evb_01 (read/write) 549883 550123 240 0.0
.app_xip_area 434941 435181 240 0.1
ota-requestor cyw930739m2evb_01 (read/write) 566427 566659 232 0.0
.app_xip_area 457789 458021 232 0.1
switch cyw930739m2evb_01 (read/write) 563243 563491 248 0.0
.app_xip_area 451285 451533 248 0.1
efr32 lighting-app BRD4161A+rs9116 (read/write) 928632 928912 280 0.0
.text 729320 729600 280 0.0
BRD4187C (read/write) 1105424 1105704 280 0.0
.text 906900 907180 280 0.0
lock-app BRD4161A+wf200 (read/write) 1123108 1123348 240 0.0
.text 932008 932248 240 0.0
window-app BRD4187C (read/write) 1159528 1159808 280 0.0
.text 987308 987588 280 0.0
k32w contact k32w0+release (read only) 611592 611840 248 0.0
.text 611056 611304 248 0.0
k32w1+release (read/write) 750636 750892 256 0.0
.text 627800 628056 256 0.0
light k32w0+release (read only) 599768 600016 248 0.0
.text 599232 599480 248 0.0
k32w1+release (read/write) 786344 786600 256 0.0
.text 664456 664712 256 0.0
lock k32w0+release (read only) 582256 582488 232 0.0
.text 581720 581952 232 0.0
linux chip-tool-ipv6only arm64 (read only) 11473296 11478736 5440 0.0
.data.rel.ro 454144 454328 184 0.0
.rodata 353004 353148 144 0.0
.text 10232908 10237772 4864 0.0
thermostat-no-ble arm64 (read only) 4482456 4483624 1168 0.0
(read/write) 246520 249496 2976 1.2
.bss 122344 122360 16 0.0
.data.rel.ro 103712 103896 184 0.2
.got 12216 12224 8 0.1
.text 3977644 3978332 688 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532008 2532192 184 0.0
.text 1494692 1494876 184 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read/write) 1791140 1791452 312 0.0
.text 1583980 1584292 312 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read/write) 1715444 1715740 296 0.0
.text 1511340 1511636 296 0.0
light cy8ckit_062s2_43012 (read/write) 1634764 1635076 312 0.0
.text 1437388 1437700 312 0.0
lock cy8ckit_062s2_43012 (read/write) 1667076 1667380 304 0.0
.text 1442500 1442804 304 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125080 248 0.0
.text 637216 637464 248 0.0
lock-app qpg6105+debug (read/write) 1089624 1089888 264 0.0
.text 602004 602268 264 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597445 248 0.0
.rodata 78828 78884 56 0.1
.text 379688 379880 192 0.1
Decreases (7 builds for cc13x4_26x4, k32w, linux)
platform target config section 06c57697 fccf9d9e change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781324 780732 -592 -0.1
.text 690688 690040 -648 -0.1
lock-ftd LP_EM_CC1354P10_6 (read only) 800228 799628 -600 -0.1
.text 715184 714528 -656 -0.1
lock-mtd LP_EM_CC1354P10_6 (read only) 788804 788204 -600 -0.1
.text 677024 676368 -656 -0.1
pump-app LP_EM_CC1354P10_6 (read only) 739116 738508 -608 -0.1
.text 652760 652096 -664 -0.1
pump-controller-app LP_EM_CC1354P10_6 (read only) 724732 724140 -592 -0.1
.text 642536 641888 -648 -0.1
k32w lock k32w0+release (read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
linux chip-tool-ipv6only arm64 (read/write) 591232 589888 -1344 -0.2
.got 20360 20352 -8 -0.0
Full report (40 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, k32w, linux, mbed, psoc6, qpg, stm32)
platform target config section 06c57697 fccf9d9e change % change
bl602 lighting-app bl602 (read/write) 1430866 1431990 1124 0.1
.bss 85320 85320 0 0.0
.data 9496 9496 0 0.0
.rodata 157436 157528 92 0.1
.text 1097972 1099004 1032 0.1
bl602+mfd (read/write) 1445274 1446406 1132 0.1
.bss 85480 85480 0 0.0
.data 9472 9472 0 0.0
.rodata 156396 156488 92 0.1
.text 1113274 1114314 1040 0.1
bl602+rpc (read/write) 1478250 1479374 1124 0.1
.bss 93352 93352 0 0.0
.data 9872 9872 0 0.0
.rodata 165004 165096 92 0.1
.text 1129358 1130386 1028 0.1
bl702 lighting-app bl702 (read only) 3478 3478 0 0.0
(read/write) 1195431 1196551 1120 0.1
.bss 11121 11121 0 0.0
.data 3680 3680 0 0.0
.rodata 106820 106912 92 0.1
.text 966976 968004 1028 0.1
bl702+mfd (read only) 3478 3478 0 0.0
(read/write) 1206487 1207607 1120 0.1
.bss 11297 11297 0 0.0
.data 3656 3656 0 0.0
.rodata 105760 105852 92 0.1
.text 978986 980014 1028 0.1
bl702+rpc (read only) 3478 3478 0 0.0
(read/write) 1287155 1288275 1120 0.1
.bss 19589 19589 0 0.0
.data 4224 4224 0 0.0
.rodata 122192 122284 92 0.1
.text 1041920 1042948 1028 0.1
bl706-eth (read/write) 1014073 1015193 1120 0.1
.bss 23680 23680 0 0.0
.data 3248 3248 0 0.0
.rodata 100140 100232 92 0.1
.text 759052 760080 1028 0.1
bl706-wifi (read/write) 1247266 1248494 1228 0.1
.bss 10565 10565 0 0.0
.data 3688 3688 0 0.0
.rodata 121120 121212 92 0.1
.text 989488 990622 1134 0.1
bl702l lighting-app bl702l (read only) 512 512 0 0.0
(read/write) 1165012 1166132 1120 0.1
.bss 16316 16316 0 0.0
.data 5040 5040 0 0.0
.rodata 100824 100916 92 0.1
.text 960078 961106 1028 0.1
bl702l+mfd (read only) 512 512 0 0.0
(read/write) 1176416 1177536 1120 0.1
.bss 16492 16492 0 0.0
.data 5024 5024 0 0.0
.rodata 99764 99856 92 0.1
.text 972400 973428 1028 0.1
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 781324 780732 -592 -0.1
(read/write) 168904 168920 16 0.0
.bss 90908 90924 16 0.0
.data 3560 3560 0 0.0
.rodata 90372 90428 56 0.1
.text 690688 690040 -648 -0.1
lock-ftd LP_EM_CC1354P10_6 (read only) 800228 799628 -600 -0.1
(read/write) 179184 179200 16 0.0
.bss 101188 101204 16 0.0
.data 3560 3560 0 0.0
.rodata 84780 84836 56 0.1
.text 715184 714528 -656 -0.1
lock-mtd LP_EM_CC1354P10_6 (read only) 788804 788204 -600 -0.1
(read/write) 173632 173648 16 0.0
.bss 95636 95652 16 0.0
.data 3560 3560 0 0.0
.rodata 111516 111572 56 0.1
.text 677024 676368 -656 -0.1
pump-app LP_EM_CC1354P10_6 (read only) 739116 738508 -608 -0.1
(read/write) 167880 167888 8 0.0
.bss 89648 89656 8 0.0
.data 3552 3552 0 0.0
.rodata 86092 86148 56 0.1
.text 652760 652096 -664 -0.1
pump-controller-app LP_EM_CC1354P10_6 (read only) 724732 724140 -592 -0.1
(read/write) 168080 168096 16 0.0
.bss 89864 89880 16 0.0
.data 3544 3544 0 0.0
.rodata 81932 81988 56 0.1
.text 642536 641888 -648 -0.1
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581538 296 0.1
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86538 86626 88 0.1
.text 492580 492792 212 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628994 296 0.0
(read/write) 208360 208360 0 0.0
.bss 201744 201744 0 0.0
.data 1496 1496 0 0.0
.rodata 107146 107234 88 0.1
.text 519428 519640 212 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564779 565019 240 0.0
.app_xip_area 454637 454877 240 0.1
.bss 64976 64976 0 0.0
.data 744 744 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 549883 550123 240 0.0
.app_xip_area 434941 435181 240 0.1
.bss 69768 69768 0 0.0
.data 752 752 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 566427 566659 232 0.0
.app_xip_area 457789 458021 232 0.1
.bss 63512 63512 0 0.0
.data 704 704 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 563243 563491 248 0.0
.app_xip_area 451285 451533 248 0.1
.bss 66752 66752 0 0.0
.data 784 784 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rs9116 (read/write) 928632 928912 280 0.0
.bss 197904 197904 0 0.0
.data 1388 1388 0 0.0
.text 729320 729600 280 0.0
BRD4187C (read/write) 1105424 1105704 280 0.0
.bss 195100 195100 0 0.0
.data 3404 3404 0 0.0
.text 906900 907180 280 0.0
lock-app BRD4161A+wf200 (read/write) 1123108 1123348 240 0.0
.bss 188288 188288 0 0.0
.data 2792 2792 0 0.0
.text 932008 932248 240 0.0
window-app BRD4187C (read/write) 1159528 1159808 280 0.0
.bss 168884 168884 0 0.0
.data 3316 3316 0 0.0
.text 987308 987588 280 0.0
k32w contact k32w0+release (read only) 611592 611840 248 0.0
(read/write) 81408 81408 0 0.0
.bss 69200 69200 0 0.0
.data 2224 2224 0 0.0
.text 611056 611304 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 750636 750892 256 0.0
.bss 80652 80652 0 0.0
.data 2816 2816 0 0.0
.text 627800 628056 256 0.0
light k32w0+release (read only) 599768 600016 248 0.0
(read/write) 79360 79360 0 0.0
.bss 67176 67176 0 0.0
.data 2200 2200 0 0.0
.text 599232 599480 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 786344 786600 256 0.0
.bss 80500 80500 0 0.0
.data 2032 2032 0 0.0
.text 664456 664712 256 0.0
lock k32w0+release (read only) 582256 582488 232 0.0
(read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
.data 2148 2148 0 0.0
.text 581720 581952 232 0.0
linux chip-tool-ipv6only arm64 (read only) 11473296 11478736 5440 0.0
(read/write) 591232 589888 -1344 -0.2
.bss 103320 103320 0 0.0
.data 4480 4480 0 0.0
.data.rel.ro 454144 454328 184 0.0
.dynamic 512 512 0 0.0
.got 20360 20352 -8 -0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 353004 353148 144 0.0
.text 10232908 10237772 4864 0.0
thermostat-no-ble arm64 (read only) 4482456 4483624 1168 0.0
(read/write) 246520 249496 2976 1.2
.bss 122344 122360 16 0.0
.data 3352 3352 0 0.0
.data.rel.ro 103712 103896 184 0.2
.dynamic 512 512 0 0.0
.got 12216 12224 8 0.1
.init 24 24 0 0.0
.init_array 416 416 0 0.0
.rodata 159420 159420 0 0.0
.text 3977644 3978332 688 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532008 2532192 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494692 1494876 184 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 834568 834568 0 0.0
(read/write) 1791140 1791452 312 0.0
.bss 196116 196116 0 0.0
.data 2656 2656 0 0.0
.text 1583980 1584292 312 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 837624 837624 0 0.0
(read/write) 1715444 1715740 296 0.0
.bss 193084 193084 0 0.0
.data 2632 2632 0 0.0
.text 1511340 1511636 296 0.0
light cy8ckit_062s2_43012 (read only) 844352 844352 0 0.0
(read/write) 1634764 1635076 312 0.0
.bss 186548 186548 0 0.0
.data 2440 2440 0 0.0
.text 1437388 1437700 312 0.0
lock cy8ckit_062s2_43012 (read only) 817152 817152 0 0.0
(read/write) 1667076 1667380 304 0.0
.bss 213748 213748 0 0.0
.data 2440 2440 0 0.0
.text 1442500 1442804 304 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125080 248 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637216 637464 248 0.0
lock-app qpg6105+debug (read/write) 1089624 1089888 264 0.0
.bss 98672 98672 0 0.0
.data 840 840 0 0.0
.text 602004 602268 264 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597445 248 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78828 78884 56 0.1
.text 379688 379880 192 0.1

github-actions[bot] avatar Feb 13 '24 22:02 github-actions[bot]

PR #32081: Size comparison from 62fcaf0aa43cad0368b4cc9a00de31d3c1e3548b to dc64dbd87f34ab34e9b34a527372cee818800139

Increases (19 builds for cc13x4_26x4, cc32xx, k32w, mbed, nrfconnect, qpg, stm32)
platform target config section 62fcaf0a dc64dbd8 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780476 780732 256 0.0
.rodata 90372 90428 56 0.1
.text 689836 690040 204 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 799380 799628 248 0.0
.rodata 84780 84836 56 0.1
.text 714332 714528 196 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 787956 788204 248 0.0
.rodata 111516 111572 56 0.1
.text 676172 676368 196 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738268 738508 240 0.0
.rodata 86092 86148 56 0.1
.text 651908 652096 188 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723884 724140 256 0.0
.rodata 81932 81988 56 0.1
.text 641684 641888 204 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581538 296 0.1
.rodata 86538 86626 88 0.1
.text 492580 492792 212 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628994 296 0.0
.rodata 107146 107234 88 0.1
.text 519428 519640 212 0.0
k32w contact k32w0+release (read only) 611592 611840 248 0.0
.text 611056 611304 248 0.0
k32w1+release (read/write) 750636 750892 256 0.0
.text 627800 628056 256 0.0
light k32w0+release (read only) 599768 600016 248 0.0
.text 599232 599480 248 0.0
k32w1+release (read/write) 786344 786600 256 0.0
.text 664456 664712 256 0.0
lock k32w0+release (read only) 582256 582488 232 0.0
.text 581720 581952 232 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532008 2532192 184 0.0
.text 1494692 1494876 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1096948 1097196 248 0.0
rodata 111708 111764 56 0.1
text 806692 806884 192 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1217304 1217552 248 0.0
rodata 141576 141632 56 0.0
text 802388 802576 188 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1046744 1046976 232 0.0
rodata 99384 99440 56 0.1
text 769960 770132 172 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125080 248 0.0
.text 637216 637464 248 0.0
lock-app qpg6105+debug (read/write) 1089624 1089888 264 0.0
.text 602004 602268 264 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597445 248 0.0
.rodata 78828 78884 56 0.1
.text 379688 379880 192 0.1
Decreases (2 builds for cc13x4_26x4, k32w)
platform target config section 62fcaf0a dc64dbd8 change % change
cc13x4_26x4 pump-app LP_EM_CC1354P10_6 (read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
k32w lock k32w0+release (read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
Full report (19 builds for cc13x4_26x4, cc32xx, k32w, mbed, nrfconnect, qpg, stm32)
platform target config section 62fcaf0a dc64dbd8 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780476 780732 256 0.0
(read/write) 168920 168920 0 0.0
.bss 90924 90924 0 0.0
.data 3560 3560 0 0.0
.rodata 90372 90428 56 0.1
.text 689836 690040 204 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 799380 799628 248 0.0
(read/write) 179200 179200 0 0.0
.bss 101204 101204 0 0.0
.data 3560 3560 0 0.0
.rodata 84780 84836 56 0.1
.text 714332 714528 196 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 787956 788204 248 0.0
(read/write) 173648 173648 0 0.0
.bss 95652 95652 0 0.0
.data 3560 3560 0 0.0
.rodata 111516 111572 56 0.1
.text 676172 676368 196 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738268 738508 240 0.0
(read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
.data 3552 3552 0 0.0
.rodata 86092 86148 56 0.1
.text 651908 652096 188 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723884 724140 256 0.0
(read/write) 168096 168096 0 0.0
.bss 89880 89880 0 0.0
.data 3544 3544 0 0.0
.rodata 81932 81988 56 0.1
.text 641684 641888 204 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581538 296 0.1
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86538 86626 88 0.1
.text 492580 492792 212 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628994 296 0.0
(read/write) 208360 208360 0 0.0
.bss 201744 201744 0 0.0
.data 1496 1496 0 0.0
.rodata 107146 107234 88 0.1
.text 519428 519640 212 0.0
k32w contact k32w0+release (read only) 611592 611840 248 0.0
(read/write) 81408 81408 0 0.0
.bss 69200 69200 0 0.0
.data 2224 2224 0 0.0
.text 611056 611304 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 750636 750892 256 0.0
.bss 80652 80652 0 0.0
.data 2816 2816 0 0.0
.text 627800 628056 256 0.0
light k32w0+release (read only) 599768 600016 248 0.0
(read/write) 79360 79360 0 0.0
.bss 67176 67176 0 0.0
.data 2200 2200 0 0.0
.text 599232 599480 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 786344 786600 256 0.0
.bss 80500 80500 0 0.0
.data 2032 2032 0 0.0
.text 664456 664712 256 0.0
lock k32w0+release (read only) 582256 582488 232 0.0
(read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
.data 2148 2148 0 0.0
.text 581720 581952 232 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532008 2532192 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494692 1494876 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1096948 1097196 248 0.0
bss 130689 130689 0 0.0
rodata 111708 111764 56 0.1
text 806692 806884 192 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1217304 1217552 248 0.0
bss 122827 122827 0 0.0
rodata 141576 141632 56 0.0
text 802388 802576 188 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046744 1046976 232 0.0
bss 129633 129633 0 0.0
rodata 99384 99440 56 0.1
text 769960 770132 172 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125080 248 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637216 637464 248 0.0
lock-app qpg6105+debug (read/write) 1089624 1089888 264 0.0
.bss 98672 98672 0 0.0
.data 840 840 0 0.0
.text 602004 602268 264 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597445 248 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78828 78884 56 0.1
.text 379688 379880 192 0.1

github-actions[bot] avatar Feb 13 '24 23:02 github-actions[bot]

PR #32081: Size comparison from 62fcaf0aa43cad0368b4cc9a00de31d3c1e3548b to 77b473b024d1b566972b288c08c5cb42f3627cf3

Increases above 0.2%:

platform target config section 62fcaf0a 77b473b0 change % change
linux air-purifier-app debug .data.rel.ro 74248 74440 192 0.3
bridge-app debug .data.rel.ro 86160 86336 176 0.2
lock-app debug .data.rel.ro 80664 80856 192 0.2
ota-provider-app debug .data.rel.ro 69760 69936 176 0.3
ota-requestor-app debug .data.rel.ro 72720 72896 176 0.2
shell debug .data.rel.ro 86040 86224 184 0.2
thermostat-no-ble arm64 (read/write) 246520 249512 2992 1.2
tv-app debug .data.rel.ro 94264 94456 192 0.2
Increases (72 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
platform target config section 62fcaf0a 77b473b0 change % change
bl602 lighting-app bl602 (read/write) 1430866 1431990 1124 0.1
.rodata 157436 157528 92 0.1
.text 1097972 1099004 1032 0.1
bl602+mfd (read/write) 1445274 1446406 1132 0.1
.rodata 156396 156488 92 0.1
.text 1113274 1114314 1040 0.1
bl602+rpc (read/write) 1478250 1479374 1124 0.1
.rodata 165004 165096 92 0.1
.text 1129358 1130386 1028 0.1
bl702 lighting-app bl702 (read/write) 1195431 1196551 1120 0.1
.rodata 106820 106912 92 0.1
.text 966976 968004 1028 0.1
bl702+mfd (read/write) 1206487 1207607 1120 0.1
.rodata 105760 105852 92 0.1
.text 978986 980014 1028 0.1
bl702+rpc (read/write) 1287155 1288275 1120 0.1
.rodata 122192 122284 92 0.1
.text 1041920 1042948 1028 0.1
bl706-eth (read/write) 1014073 1015193 1120 0.1
.rodata 100140 100232 92 0.1
.text 759052 760080 1028 0.1
bl706-wifi (read/write) 1247266 1248494 1228 0.1
.rodata 121120 121212 92 0.1
.text 989488 990622 1134 0.1
bl702l lighting-app bl702l (read/write) 1165012 1166132 1120 0.1
.rodata 100824 100916 92 0.1
.text 960078 961106 1028 0.1
bl702l+mfd (read/write) 1176416 1177536 1120 0.1
.rodata 99764 99856 92 0.1
.text 972400 973428 1028 0.1
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780476 780732 256 0.0
.rodata 90372 90428 56 0.1
.text 689836 690040 204 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 799380 799628 248 0.0
.rodata 84780 84836 56 0.1
.text 714332 714528 196 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 787956 788188 232 0.0
.rodata 111516 111572 56 0.1
.text 676172 676352 180 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738268 738492 224 0.0
.rodata 86092 86148 56 0.1
.text 651908 652080 172 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723884 724140 256 0.0
.rodata 81932 81988 56 0.1
.text 641684 641888 204 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581538 296 0.1
.rodata 86538 86626 88 0.1
.text 492580 492792 212 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628994 296 0.0
.rodata 107146 107234 88 0.1
.text 519428 519640 212 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564779 565011 232 0.0
.app_xip_area 454637 454869 232 0.1
lock cyw930739m2evb_01 (read/write) 549883 550123 240 0.0
.app_xip_area 434941 435181 240 0.1
ota-requestor cyw930739m2evb_01 (read/write) 566427 566659 232 0.0
.app_xip_area 457789 458021 232 0.1
switch cyw930739m2evb_01 (read/write) 563243 563491 248 0.0
.app_xip_area 451285 451533 248 0.1
efr32 lighting-app BRD4161A+rs9116 (read/write) 928632 928912 280 0.0
.text 729320 729600 280 0.0
BRD4187C (read/write) 1105424 1105672 248 0.0
.text 906900 907148 248 0.0
lock-app BRD4161A+wf200 (read/write) 1123108 1123348 240 0.0
.text 932008 932248 240 0.0
window-app BRD4187C (read/write) 1159528 1159808 280 0.0
.text 987308 987588 280 0.0
esp32 all-clusters-app c3devkit (read only) 1203514 1203708 194 0.0
(read/write) 1747880 1747936 56 0.0
.flash.rodata 250520 250576 56 0.0
.flash.text 1203514 1203708 194 0.0
m5stack (read only) 1245027 1245371 344 0.0
(read/write) 532780 532836 56 0.0
.flash.rodata 280648 280704 56 0.0
.flash.text 1238863 1239207 344 0.0
k32w contact k32w0+release (read only) 611592 611840 248 0.0
.text 611056 611304 248 0.0
k32w1+release (read/write) 750636 750884 248 0.0
.text 627800 628048 248 0.0
light k32w0+release (read only) 599768 600016 248 0.0
.text 599232 599480 248 0.0
k32w1+release (read/write) 786344 786592 248 0.0
.text 664456 664704 248 0.0
lock k32w0+release (read only) 582256 582488 232 0.0
.text 581720 581952 232 0.0
linux air-purifier-app debug (read only) 2629045 2630125 1080 0.0
(read/write) 129344 129536 192 0.1
.data.rel.ro 74248 74440 192 0.3
.text 2266053 2266725 672 0.0
all-clusters-app debug (read only) 5881281 5882377 1096 0.0
(read/write) 479312 479504 192 0.0
.data.rel.ro 332808 333000 192 0.1
.text 5101091 5101779 688 0.0
all-clusters-minimal-app debug (read only) 5193809 5194889 1080 0.0
(read/write) 236576 236768 192 0.1
.data.rel.ro 97096 97288 192 0.2
.text 4670643 4671315 672 0.0
bridge-app debug (read only) 4602073 4603153 1080 0.0
(read/write) 217560 217784 224 0.1
.bss 118528 118560 32 0.0
.data.rel.ro 86160 86336 176 0.2
.text 4152291 4152963 672 0.0
chip-tool debug (read only) 11977841 11983049 5208 0.0
(read/write) 520984 521176 192 0.0
.data.rel.ro 414384 414568 184 0.0
.text 10824675 10829475 4800 0.0
chip-tool-ipv6only arm64 (read only) 11473440 11478720 5280 0.0
.data.rel.ro 454144 454328 184 0.0
.got 20344 20352 8 0.0
.text 10232956 10237756 4800 0.0
lighting-app debug+rpc+ui (read only) 5523577 5524609 1032 0.0
(read/write) 226344 226568 224 0.1
.bss 119480 119512 32 0.0
.data.rel.ro 94560 94736 176 0.2
.text 4922963 4923587 624 0.0
lock-app debug (read only) 4680753 4681833 1080 0.0
(read/write) 205552 205744 192 0.1
.data.rel.ro 80664 80856 192 0.2
.text 4212467 4213139 672 0.0
ota-provider-app debug (read only) 4302593 4303657 1064 0.0
(read/write) 193808 194000 192 0.1
.data.rel.ro 69760 69936 176 0.3
.text 3901507 3902163 656 0.0
ota-requestor-app debug (read only) 4418625 4419705 1080 0.0
(read/write) 198056 198216 160 0.1
.data.rel.ro 72720 72896 176 0.2
.text 4007235 4007907 672 0.0
shell debug (read only) 2866985 2868065 1080 0.0
(read/write) 155752 155944 192 0.1
.data.rel.ro 86040 86224 184 0.2
.text 2507938 2508610 672 0.0
thermostat-no-ble arm64 (read only) 4482456 4483608 1152 0.0
(read/write) 246520 249512 2992 1.2
.bss 122344 122360 16 0.0
.data.rel.ro 103712 103896 184 0.2
.got 12216 12224 8 0.1
.text 3977644 3978316 672 0.0
tv-app debug (read only) 5652809 5653889 1080 0.0
(read/write) 351944 352136 192 0.1
.data.rel.ro 94264 94456 192 0.2
.text 5123955 5124627 672 0.0
tv-casting-app debug (read only) 9855985 9861209 5224 0.1
(read/write) 340464 340688 224 0.1
.bss 156592 156624 32 0.0
.data.rel.ro 174040 174232 192 0.1
.text 9007555 9012371 4816 0.1
mbed lock-app-release cy8cproto_062_4343w (read/write) 2532008 2532192 184 0.0
.text 1494692 1494876 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1096948 1097196 248 0.0
rodata 111708 111764 56 0.1
text 806692 806880 188 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1217304 1217552 248 0.0
rodata 141576 141632 56 0.0
text 802388 802572 184 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1046744 1046960 216 0.0
rodata 99384 99440 56 0.1
text 769960 770128 168 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read/write) 1791140 1791436 296 0.0
.text 1583980 1584276 296 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read/write) 1715444 1715740 296 0.0
.text 1511340 1511636 296 0.0
light cy8ckit_062s2_43012 (read/write) 1634764 1635076 312 0.0
.text 1437388 1437700 312 0.0
lock cy8ckit_062s2_43012 (read/write) 1667076 1667380 304 0.0
.text 1442500 1442804 304 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125080 248 0.0
.text 637216 637464 248 0.0
lock-app qpg6105+debug (read/write) 1089624 1089872 248 0.0
.text 602004 602252 248 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597445 248 0.0
.rodata 78828 78884 56 0.1
.text 379688 379880 192 0.1
telink air-quality-sensor-app tlsr9528a_retention (read/write) 825790 826022 232 0.0
text 617518 617702 184 0.0
all-clusters-app tlsr9518adk80d (read/write) 1085780 1086028 248 0.0
text 788340 788530 190 0.0
all-clusters-minimal-app tlsr9528a (read/write) 1045016 1045256 240 0.0
text 761036 761222 186 0.0
bridge-app tlsr9518adk80d (read/write) 907028 907276 248 0.0
text 649692 649878 186 0.0
contact-sensor-app tlsr9528a_retention (read/write) 827390 827622 232 0.0
text 619180 619364 184 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read/write) 933656 933888 232 0.0
text 699864 700052 188 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read/write) 1068512 1068752 240 0.0
text 773490 773676 186 0.0
lock-app-dfu tlsr9528a (read/write) 906684 906916 232 0.0
text 655674 655858 184 0.0
ota-requestor-app tlsr9518adk80d (read/write) 924808 925056 248 0.0
text 667584 667770 186 0.0
pump-app tlsr9258a_retention (read/write) 829998 830230 232 0.0
text 622182 622366 184 0.0
pump-controller-app tlsr9518adk80d (read/write) 793720 793952 232 0.0
text 592948 593132 184 0.0
smoke_co_alarm-app tlsr9528a_retention (read/write) 828654 828886 232 0.0
text 621534 621718 184 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read/write) 852333 852565 232 0.0
text 636380 636564 184 0.0
thermostat tlsr9518adk80d (read/write) 819308 819540 232 0.0
text 612580 612764 184 0.0
window-covering tlsr9258a (read/write) 838764 838996 232 0.0
text 629088 629272 184 0.0
Decreases (13 builds for cc13x4_26x4, k32w, linux, telink)
platform target config section 62fcaf0a 77b473b0 change % change
cc13x4_26x4 pump-app LP_EM_CC1354P10_6 (read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
k32w lock k32w0+release (read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
linux chip-tool-ipv6only arm64 (read/write) 591120 589904 -1216 -0.2
telink air-quality-sensor-app tlsr9528a_retention bss 51116 51108 -8 -0.0
contact-sensor-app tlsr9528a_retention bss 51164 51156 -8 -0.0
light-switch-app-ota-shell-factory-data tlsr9528a bss 79204 79196 -8 -0.0
lock-app-dfu tlsr9528a bss 70668 70660 -8 -0.0
pump-app tlsr9258a_retention bss 51272 51264 -8 -0.0
pump-controller-app tlsr9518adk80d bss 57472 57464 -8 -0.0
smoke_co_alarm-app tlsr9528a_retention bss 51292 51284 -8 -0.0
temperature-measurement-app-mars-ota tlsr9518adk80d bss 60948 60940 -8 -0.0
thermostat tlsr9518adk80d bss 57760 57752 -8 -0.0
window-covering tlsr9258a bss 69576 69568 -8 -0.0
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
platform target config section 62fcaf0a 77b473b0 change % change
bl602 lighting-app bl602 (read/write) 1430866 1431990 1124 0.1
.bss 85320 85320 0 0.0
.data 9496 9496 0 0.0
.rodata 157436 157528 92 0.1
.text 1097972 1099004 1032 0.1
bl602+mfd (read/write) 1445274 1446406 1132 0.1
.bss 85480 85480 0 0.0
.data 9472 9472 0 0.0
.rodata 156396 156488 92 0.1
.text 1113274 1114314 1040 0.1
bl602+rpc (read/write) 1478250 1479374 1124 0.1
.bss 93352 93352 0 0.0
.data 9872 9872 0 0.0
.rodata 165004 165096 92 0.1
.text 1129358 1130386 1028 0.1
bl702 lighting-app bl702 (read only) 3478 3478 0 0.0
(read/write) 1195431 1196551 1120 0.1
.bss 11121 11121 0 0.0
.data 3680 3680 0 0.0
.rodata 106820 106912 92 0.1
.text 966976 968004 1028 0.1
bl702+mfd (read only) 3478 3478 0 0.0
(read/write) 1206487 1207607 1120 0.1
.bss 11297 11297 0 0.0
.data 3656 3656 0 0.0
.rodata 105760 105852 92 0.1
.text 978986 980014 1028 0.1
bl702+rpc (read only) 3478 3478 0 0.0
(read/write) 1287155 1288275 1120 0.1
.bss 19589 19589 0 0.0
.data 4224 4224 0 0.0
.rodata 122192 122284 92 0.1
.text 1041920 1042948 1028 0.1
bl706-eth (read/write) 1014073 1015193 1120 0.1
.bss 23680 23680 0 0.0
.data 3248 3248 0 0.0
.rodata 100140 100232 92 0.1
.text 759052 760080 1028 0.1
bl706-wifi (read/write) 1247266 1248494 1228 0.1
.bss 10565 10565 0 0.0
.data 3688 3688 0 0.0
.rodata 121120 121212 92 0.1
.text 989488 990622 1134 0.1
bl702l lighting-app bl702l (read only) 512 512 0 0.0
(read/write) 1165012 1166132 1120 0.1
.bss 16316 16316 0 0.0
.data 5040 5040 0 0.0
.rodata 100824 100916 92 0.1
.text 960078 961106 1028 0.1
bl702l+mfd (read only) 512 512 0 0.0
(read/write) 1176416 1177536 1120 0.1
.bss 16492 16492 0 0.0
.data 5024 5024 0 0.0
.rodata 99764 99856 92 0.1
.text 972400 973428 1028 0.1
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780476 780732 256 0.0
(read/write) 168920 168920 0 0.0
.bss 90924 90924 0 0.0
.data 3560 3560 0 0.0
.rodata 90372 90428 56 0.1
.text 689836 690040 204 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 799380 799628 248 0.0
(read/write) 179200 179200 0 0.0
.bss 101204 101204 0 0.0
.data 3560 3560 0 0.0
.rodata 84780 84836 56 0.1
.text 714332 714528 196 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 787956 788188 232 0.0
(read/write) 173648 173648 0 0.0
.bss 95652 95652 0 0.0
.data 3560 3560 0 0.0
.rodata 111516 111572 56 0.1
.text 676172 676352 180 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738268 738492 224 0.0
(read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
.data 3552 3552 0 0.0
.rodata 86092 86148 56 0.1
.text 651908 652080 172 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723884 724140 256 0.0
(read/write) 168096 168096 0 0.0
.bss 89880 89880 0 0.0
.data 3544 3544 0 0.0
.rodata 81932 81988 56 0.1
.text 641684 641888 204 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581242 581538 296 0.1
(read/write) 207976 207976 0 0.0
.bss 201212 201212 0 0.0
.data 1640 1640 0 0.0
.rodata 86538 86626 88 0.1
.text 492580 492792 212 0.0
lock CC3235SF_LAUNCHXL (read only) 628698 628994 296 0.0
(read/write) 208360 208360 0 0.0
.bss 201744 201744 0 0.0
.data 1496 1496 0 0.0
.rodata 107146 107234 88 0.1
.text 519428 519640 212 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564779 565011 232 0.0
.app_xip_area 454637 454869 232 0.1
.bss 64976 64976 0 0.0
.data 744 744 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 549883 550123 240 0.0
.app_xip_area 434941 435181 240 0.1
.bss 69768 69768 0 0.0
.data 752 752 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 566427 566659 232 0.0
.app_xip_area 457789 458021 232 0.1
.bss 63512 63512 0 0.0
.data 704 704 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 563243 563491 248 0.0
.app_xip_area 451285 451533 248 0.1
.bss 66752 66752 0 0.0
.data 784 784 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rs9116 (read/write) 928632 928912 280 0.0
.bss 197904 197904 0 0.0
.data 1388 1388 0 0.0
.text 729320 729600 280 0.0
BRD4187C (read/write) 1105424 1105672 248 0.0
.bss 195100 195100 0 0.0
.data 3404 3404 0 0.0
.text 906900 907148 248 0.0
lock-app BRD4161A+wf200 (read/write) 1123108 1123348 240 0.0
.bss 188288 188288 0 0.0
.data 2792 2792 0 0.0
.text 932008 932248 240 0.0
window-app BRD4187C (read/write) 1159528 1159808 280 0.0
.bss 168884 168884 0 0.0
.data 3316 3316 0 0.0
.text 987308 987588 280 0.0
esp32 all-clusters-app c3devkit (read only) 1203514 1203708 194 0.0
(read/write) 1747880 1747936 56 0.0
.dram0.bss 74200 74200 0 0.0
.dram0.data 13620 13620 0 0.0
.flash.rodata 250520 250576 56 0.0
.flash.text 1203514 1203708 194 0.0
.iram0.text 75530 75530 0 0.0
m5stack (read only) 1245027 1245371 344 0.0
(read/write) 532780 532836 56 0.0
.dram0.bss 81048 81048 0 0.0
.dram0.data 35164 35164 0 0.0
.flash.rodata 280648 280704 56 0.0
.flash.text 1238863 1239207 344 0.0
.iram0.text 125403 125403 0 0.0
k32w contact k32w0+release (read only) 611592 611840 248 0.0
(read/write) 81408 81408 0 0.0
.bss 69200 69200 0 0.0
.data 2224 2224 0 0.0
.text 611056 611304 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 750636 750884 248 0.0
.bss 80652 80652 0 0.0
.data 2816 2816 0 0.0
.text 627800 628048 248 0.0
light k32w0+release (read only) 599768 600016 248 0.0
(read/write) 79360 79360 0 0.0
.bss 67176 67176 0 0.0
.data 2200 2200 0 0.0
.text 599232 599480 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 786344 786592 248 0.0
.bss 80500 80500 0 0.0
.data 2032 2032 0 0.0
.text 664456 664704 248 0.0
lock k32w0+release (read only) 582256 582488 232 0.0
(read/write) 78852 78844 -8 -0.0
.bss 66720 66712 -8 -0.0
.data 2148 2148 0 0.0
.text 581720 581952 232 0.0
linux air-purifier-app debug (read only) 2629045 2630125 1080 0.0
(read/write) 129344 129536 192 0.1
.bss 46912 46912 0 0.0
.data 2240 2240 0 0.0
.data.rel.ro 74248 74440 192 0.3
.dynamic 608 608 0 0.0
.got 4568 4568 0 0.0
.init 27 27 0 0.0
.init_array 760 760 0 0.0
.rodata 185128 185128 0 0.0
.text 2266053 2266725 672 0.0
all-clusters-app debug (read only) 5881281 5882377 1096 0.0
(read/write) 479312 479504 192 0.0
.bss 134672 134672 0 0.0
.data 4432 4432 0 0.0
.data.rel.ro 332808 333000 192 0.1
.dynamic 624 624 0 0.0
.got 5384 5384 0 0.0
.init 27 27 0 0.0
.init_array 1368 1368 0 0.0
.rodata 347880 347880 0 0.0
.text 5101091 5101779 688 0.0
all-clusters-minimal-app debug (read only) 5193809 5194889 1080 0.0
(read/write) 236576 236768 192 0.1
.bss 128048 128048 0 0.0
.data 4336 4336 0 0.0
.data.rel.ro 97096 97288 192 0.2
.dynamic 624 624 0 0.0
.got 5304 5304 0 0.0
.init 27 27 0 0.0
.init_array 1128 1128 0 0.0
.rodata 288346 288346 0 0.0
.text 4670643 4671315 672 0.0
bridge-app debug (read only) 4602073 4603153 1080 0.0
(read/write) 217560 217784 224 0.1
.bss 118528 118560 32 0.0
.data 6144 6144 0 0.0
.data.rel.ro 86160 86336 176 0.2
.dynamic 624 624 0 0.0
.got 5272 5272 0 0.0
.init 27 27 0 0.0
.init_array 816 816 0 0.0
.rodata 229114 229114 0 0.0
.text 4152291 4152963 672 0.0
chip-tool debug (read only) 11977841 11983049 5208 0.0
(read/write) 520984 521176 192 0.0
.bss 94264 94264 0 0.0
.data 5090 5090 0 0.0
.data.rel.ro 414384 414568 184 0.0
.dynamic 624 624 0 0.0
.got 5776 5776 0 0.0
.init 27 27 0 0.0
.init_array 792 792 0 0.0
.rodata 447929 447929 0 0.0
.text 10824675 10829475 4800 0.0
chip-tool-ipv6only arm64 (read only) 11473440 11478720 5280 0.0
(read/write) 591120 589904 -1216 -0.2
.bss 103320 103320 0 0.0
.data 4480 4480 0 0.0
.data.rel.ro 454144 454328 184 0.0
.dynamic 512 512 0 0.0
.got 20344 20352 8 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 353148 353148 0 0.0
.text 10232956 10237756 4800 0.0
lighting-app debug+rpc+ui (read only) 5523577 5524609 1032 0.0
(read/write) 226344 226568 224 0.1
.bss 119480 119512 32 0.0
.data 4800 4800 0 0.0
.data.rel.ro 94560 94736 176 0.2
.dynamic 672 672 0 0.0
.got 5888 5888 0 0.0
.init 27 27 0 0.0
.init_array 936 936 0 0.0
.rodata 353844 353844 0 0.0
.text 4922963 4923587 624 0.0
lock-app debug (read only) 4680753 4681833 1080 0.0
(read/write) 205552 205744 192 0.1
.bss 114064 114064 0 0.0
.data 4096 4096 0 0.0
.data.rel.ro 80664 80856 192 0.2
.dynamic 624 624 0 0.0
.got 5224 5224 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 255610 255610 0 0.0
.text 4212467 4213139 672 0.0
ota-provider-app debug (read only) 4302593 4303657 1064 0.0
(read/write) 193808 194000 192 0.1
.bss 113824 113824 0 0.0
.data 4304 4304 0 0.0
.data.rel.ro 69760 69936 176 0.3
.dynamic 624 624 0 0.0
.got 4560 4560 0 0.0
.init 27 27 0 0.0
.init_array 712 712 0 0.0
.rodata 207770 207770 0 0.0
.text 3901507 3902163 656 0.0
ota-requestor-app debug (read only) 4418625 4419705 1080 0.0
(read/write) 198056 198216 160 0.1
.bss 114720 114720 0 0.0
.data 4704 4704 0 0.0
.data.rel.ro 72720 72896 176 0.2
.dynamic 624 624 0 0.0
.got 4496 4496 0 0.0
.init 27 27 0 0.0
.init_array 768 768 0 0.0
.rodata 213786 213786 0 0.0
.text 4007235 4007907 672 0.0
shell debug (read only) 2866985 2868065 1080 0.0
(read/write) 155752 155944 192 0.1
.bss 62544 62544 0 0.0
.data 1392 1392 0 0.0
.data.rel.ro 86040 86224 184 0.2
.dynamic 592 592 0 0.0
.got 4080 4080 0 0.0
.init 27 27 0 0.0
.init_array 1072 1072 0 0.0
.rodata 186240 186240 0 0.0
.text 2507938 2508610 672 0.0
thermostat-no-ble arm64 (read only) 4482456 4483608 1152 0.0
(read/write) 246520 249512 2992 1.2
.bss 122344 122360 16 0.0
.data 3352 3352 0 0.0
.data.rel.ro 103712 103896 184 0.2
.dynamic 512 512 0 0.0
.got 12216 12224 8 0.1
.init 24 24 0 0.0
.init_array 416 416 0 0.0
.rodata 159420 159420 0 0.0
.text 3977644 3978316 672 0.0
tv-app debug (read only) 5652809 5653889 1080 0.0
(read/write) 351944 352136 192 0.1
.bss 243872 243872 0 0.0
.data 6496 6496 0 0.0
.data.rel.ro 94264 94456 192 0.2
.dynamic 624 624 0 0.0
.got 5512 5512 0 0.0
.init 27 27 0 0.0
.init_array 1152 1152 0 0.0
.rodata 286906 286906 0 0.0
.text 5123955 5124627 672 0.0
tv-casting-app debug (read only) 9855985 9861209 5224 0.1
(read/write) 340464 340688 224 0.1
.bss 156592 156624 32 0.0
.data 2912 2912 0 0.0
.data.rel.ro 174040 174232 192 0.1
.dynamic 624 624 0 0.0
.got 5088 5088 0 0.0
.init 27 27 0 0.0
.init_array 1176 1176 0 0.0
.rodata 382704 382704 0 0.0
.text 9007555 9012371 4816 0.1
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2532008 2532192 184 0.0
.bss 220480 220480 0 0.0
.data 5200 5200 0 0.0
.text 1494692 1494876 184 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1096948 1097196 248 0.0
bss 130689 130689 0 0.0
rodata 111708 111764 56 0.1
text 806692 806880 188 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1217304 1217552 248 0.0
bss 122827 122827 0 0.0
rodata 141576 141632 56 0.0
text 802388 802572 184 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046744 1046960 216 0.0
bss 129633 129633 0 0.0
rodata 99384 99440 56 0.1
text 769960 770128 168 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 834568 834568 0 0.0
(read/write) 1791140 1791436 296 0.0
.bss 196116 196116 0 0.0
.data 2656 2656 0 0.0
.text 1583980 1584276 296 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 837624 837624 0 0.0
(read/write) 1715444 1715740 296 0.0
.bss 193084 193084 0 0.0
.data 2632 2632 0 0.0
.text 1511340 1511636 296 0.0
light cy8ckit_062s2_43012 (read only) 844352 844352 0 0.0
(read/write) 1634764 1635076 312 0.0
.bss 186548 186548 0 0.0
.data 2440 2440 0 0.0
.text 1437388 1437700 312 0.0
lock cy8ckit_062s2_43012 (read only) 817152 817152 0 0.0
(read/write) 1667076 1667380 304 0.0
.bss 213748 213748 0 0.0
.data 2440 2440 0 0.0
.text 1442500 1442804 304 0.0
qpg lighting-app qpg6105+debug (read/write) 1124832 1125080 248 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637216 637464 248 0.0
lock-app qpg6105+debug (read/write) 1089624 1089872 248 0.0
.bss 98672 98672 0 0.0
.data 840 840 0 0.0
.text 602004 602252 248 0.0
stm32 light STM32WB5MM-DK (read/write) 597197 597445 248 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78828 78884 56 0.1
.text 379688 379880 192 0.1
telink air-quality-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 825790 826022 232 0.0
bss 51116 51108 -8 -0.0
text 617518 617702 184 0.0
all-clusters-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 1085780 1086028 248 0.0
bss 101640 101640 0 0.0
text 788340 788530 190 0.0
all-clusters-minimal-app tlsr9528a (read only) 47960 47960 0 0.0
(read/write) 1045016 1045256 240 0.0
bss 110028 110028 0 0.0
text 761036 761222 186 0.0
bridge-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 907028 907276 248 0.0
bss 93060 93060 0 0.0
text 649692 649878 186 0.0
contact-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 827390 827622 232 0.0
bss 51164 51156 -8 -0.0
text 619180 619364 184 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read only) 51584 51584 0 0.0
(read/write) 933656 933888 232 0.0
bss 79204 79196 -8 -0.0
text 699864 700052 188 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read only) 29122 29122 0 0.0
(read/write) 1068512 1068752 240 0.0
bss 100140 100140 0 0.0
text 773490 773676 186 0.0
lock-app-dfu tlsr9528a (read only) 51584 51584 0 0.0
(read/write) 906684 906916 232 0.0
bss 70668 70660 -8 -0.0
text 655674 655858 184 0.0
ota-requestor-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 924808 925056 248 0.0
bss 92640 92640 0 0.0
text 667584 667770 186 0.0
pump-app tlsr9258a_retention (read only) 51774 51774 0 0.0
(read/write) 829998 830230 232 0.0
bss 51272 51264 -8 -0.0
text 622182 622366 184 0.0
pump-controller-app tlsr9518adk80d (read only) 31872 31872 0 0.0
(read/write) 793720 793952 232 0.0
bss 57472 57464 -8 -0.0
text 592948 593132 184 0.0
shell tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 676828 676828 0 0.0
bss 73640 73640 0 0.0
text 462228 462228 0 0.0
smoke_co_alarm-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 828654 828886 232 0.0
bss 51292 51284 -8 -0.0
text 621534 621718 184 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read only) 32220 32220 0 0.0
(read/write) 852333 852565 232 0.0
bss 60948 60940 -8 -0.0
text 636380 636564 184 0.0
thermostat tlsr9518adk80d (read only) 31872 31872 0 0.0
(read/write) 819308 819540 232 0.0
bss 57760 57752 -8 -0.0
text 612580 612764 184 0.0
window-covering tlsr9258a (read only) 51584 51584 0 0.0
(read/write) 838764 838996 232 0.0
bss 69576 69568 -8 -0.0
text 629088 629272 184 0.0

github-actions[bot] avatar Feb 13 '24 23:02 github-actions[bot]

PR #32081: Size comparison from 27b81430b8a82e36fded44ebe8bbc7bf1636aa71 to d4b3e55525fccbe06b71992727ebb08e7a651d78

Increases (15 builds for cc13x4_26x4, k32w, mbed, nrfconnect, stm32)
platform target config section 27b81430 d4b3e555 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780356 780604 248 0.0
.rodata 90252 90308 56 0.1
.text 689836 690032 196 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 797324 797572 248 0.0
.rodata 84564 84620 56 0.1
.text 712492 712688 196 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 785948 786204 256 0.0
.rodata 111300 111356 56 0.1
.text 674380 674584 204 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738124 738372 248 0.0
.rodata 85972 86028 56 0.1
.text 651884 652080 196 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723764 724012 248 0.0
.rodata 81812 81868 56 0.1
.text 641684 641880 196 0.0
k32w contact k32w0+release (read only) 607992 608240 248 0.0
.text 607456 607704 248 0.0
k32w1+release (read/write) 744252 744508 256 0.0
.text 622960 623216 256 0.0
light k32w0+release (read only) 599648 599880 232 0.0
.text 599112 599344 232 0.0
k32w1+release (read/write) 786208 786464 256 0.0
.text 664320 664576 256 0.0
lock k32w0+release (read only) 578816 579048 232 0.0
.text 578280 578512 232 0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2529944 2530192 248 0.0
.text 1492628 1492876 248 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1096812 1097060 248 0.0
rodata 111588 111644 56 0.1
text 806684 806876 192 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1217212 1217460 248 0.0
rodata 141516 141572 56 0.0
text 802372 802560 188 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1046608 1046840 232 0.0
rodata 99264 99320 56 0.1
text 769952 770124 172 0.0
stm32 light STM32WB5MM-DK (read/write) 597077 597325 248 0.0
.rodata 78708 78764 56 0.1
.text 379688 379880 192 0.1
Decreases (2 builds for cc13x4_26x4, k32w)
platform target config section 27b81430 d4b3e555 change % change
cc13x4_26x4 pump-app LP_EM_CC1354P10_6 (read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
k32w lock k32w0+release (read/write) 77356 77348 -8 -0.0
.bss 65224 65216 -8 -0.0
Full report (15 builds for cc13x4_26x4, k32w, mbed, nrfconnect, stm32)
platform target config section 27b81430 d4b3e555 change % change
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780356 780604 248 0.0
(read/write) 168920 168920 0 0.0
.bss 90924 90924 0 0.0
.data 3560 3560 0 0.0
.rodata 90252 90308 56 0.1
.text 689836 690032 196 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 797324 797572 248 0.0
(read/write) 179160 179160 0 0.0
.bss 101164 101164 0 0.0
.data 3560 3560 0 0.0
.rodata 84564 84620 56 0.1
.text 712492 712688 196 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 785948 786204 256 0.0
(read/write) 173608 173608 0 0.0
.bss 95612 95612 0 0.0
.data 3560 3560 0 0.0
.rodata 111300 111356 56 0.1
.text 674380 674584 204 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738124 738372 248 0.0
(read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
.data 3552 3552 0 0.0
.rodata 85972 86028 56 0.1
.text 651884 652080 196 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723764 724012 248 0.0
(read/write) 168096 168096 0 0.0
.bss 89880 89880 0 0.0
.data 3544 3544 0 0.0
.rodata 81812 81868 56 0.1
.text 641684 641880 196 0.0
k32w contact k32w0+release (read only) 607992 608240 248 0.0
(read/write) 79904 79904 0 0.0
.bss 67696 67696 0 0.0
.data 2224 2224 0 0.0
.text 607456 607704 248 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 744252 744508 256 0.0
.bss 79108 79108 0 0.0
.data 2816 2816 0 0.0
.text 622960 623216 256 0.0
light k32w0+release (read only) 599648 599880 232 0.0
(read/write) 79360 79360 0 0.0
.bss 67176 67176 0 0.0
.data 2200 2200 0 0.0
.text 599112 599344 232 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 786208 786464 256 0.0
.bss 80500 80500 0 0.0
.data 2032 2032 0 0.0
.text 664320 664576 256 0.0
lock k32w0+release (read only) 578816 579048 232 0.0
(read/write) 77356 77348 -8 -0.0
.bss 65224 65216 -8 -0.0
.data 2148 2148 0 0.0
.text 578280 578512 232 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2529944 2530192 248 0.0
.bss 220424 220424 0 0.0
.data 5200 5200 0 0.0
.text 1492628 1492876 248 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1096812 1097060 248 0.0
bss 130689 130689 0 0.0
rodata 111588 111644 56 0.1
text 806684 806876 192 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1217212 1217460 248 0.0
bss 122811 122811 0 0.0
rodata 141516 141572 56 0.0
text 802372 802560 188 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046608 1046840 232 0.0
bss 129633 129633 0 0.0
rodata 99264 99320 56 0.1
text 769952 770124 172 0.0
stm32 light STM32WB5MM-DK (read/write) 597077 597325 248 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78708 78764 56 0.1
.text 379688 379880 192 0.1

github-actions[bot] avatar Feb 14 '24 14:02 github-actions[bot]

PR #32081: Size comparison from 27b81430b8a82e36fded44ebe8bbc7bf1636aa71 to 4592317dc16ac3c72679e5565286e44be3d8185c

Increases above 0.2%:

platform target config section 27b81430 4592317d change % change
linux air-purifier-app debug .data.rel.ro 74248 74456 208 0.3
all-clusters-app debug .data 4432 4464 32 0.7
all-clusters-minimal-app debug .data 4336 4368 32 0.7
bridge-app debug .data 6144 6176 32 0.5
lighting-app debug+rpc+ui .data 4800 4832 32 0.7
lock-app debug .data 4096 4128 32 0.8
.data.rel.ro 80392 80600 208 0.3
ota-provider-app debug .data 4304 4336 32 0.7
.data.rel.ro 69760 69968 208 0.3
ota-requestor-app debug .data 4704 4736 32 0.7
.data.rel.ro 72720 72928 208 0.3
thermostat-no-ble arm64 (read/write) 246568 249352 2784 1.1
tv-casting-app debug .data 2912 2944 32 1.1
Increases (72 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
platform target config section 27b81430 4592317d change % change
bl602 lighting-app bl602 (read/write) 1430678 1431830 1152 0.1
.rodata 157376 157480 104 0.1
.text 1097862 1098908 1046 0.1
bl602+mfd (read/write) 1445086 1446246 1160 0.1
.rodata 156336 156440 104 0.1
.text 1113164 1114218 1054 0.1
bl602+rpc (read/write) 1478062 1479214 1152 0.1
.rodata 164944 165048 104 0.1
.text 1129248 1130290 1042 0.1
bl702 lighting-app bl702 (read/write) 1195279 1196427 1148 0.1
.rodata 106700 106804 104 0.1
.text 966944 967986 1042 0.1
bl702+mfd (read/write) 1206335 1207479 1144 0.1
.rodata 105640 105744 104 0.1
.text 978954 979996 1042 0.1
bl702+rpc (read/write) 1287003 1288151 1148 0.1
.rodata 122072 122176 104 0.1
.text 1041888 1042930 1042 0.1
bl706-eth (read/write) 1013889 1015033 1144 0.1
.rodata 100080 100184 104 0.1
.text 758942 759984 1042 0.1
bl706-wifi (read/write) 1247094 1248366 1272 0.1
.rodata 121060 121164 104 0.1
.text 989390 990558 1168 0.1
bl702l lighting-app bl702l (read/write) 1164860 1166004 1144 0.1
.rodata 100704 100808 104 0.1
.text 960046 961088 1042 0.1
bl702l+mfd (read/write) 1176776 1177412 636 0.1
.rodata 99644 99748 104 0.1
.text 972368 973410 1042 0.1
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780356 780628 272 0.0
.rodata 90252 90316 64 0.1
.text 689836 690048 212 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 797324 797596 272 0.0
.rodata 84564 84628 64 0.1
.text 712492 712704 212 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 785948 786228 280 0.0
.rodata 111300 111364 64 0.1
.text 674380 674600 220 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738124 738396 272 0.0
.rodata 85972 86036 64 0.1
.text 651884 652096 212 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723764 724036 272 0.0
.rodata 81812 81876 64 0.1
.text 641684 641896 212 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581170 581498 328 0.1
.rodata 86474 86578 104 0.1
.text 492576 492796 220 0.0
lock CC3235SF_LAUNCHXL (read only) 626458 626794 336 0.1
.rodata 106930 107034 104 0.1
.text 517408 517636 228 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564667 564923 256 0.0
.app_xip_area 454525 454781 256 0.1
lock cyw930739m2evb_01 (read/write) 547787 548051 264 0.0
.app_xip_area 432885 433149 264 0.1
ota-requestor cyw930739m2evb_01 (read/write) 566307 566571 264 0.0
.app_xip_area 457669 457933 264 0.1
switch cyw930739m2evb_01 (read/write) 561051 561323 272 0.0
.app_xip_area 449133 449405 272 0.1
efr32 lighting-app BRD4161A+rs9116 (read/write) 928528 928856 328 0.0
.text 729228 729556 328 0.0
BRD4187C (read/write) 1105308 1105596 288 0.0
.text 906784 907072 288 0.0
lock-app BRD4161A+wf200 (read/write) 1117256 1117512 256 0.0
.text 927716 927972 256 0.0
window-app BRD4187C (read/write) 1152164 1152484 320 0.0
.text 981488 981808 320 0.0
esp32 all-clusters-app c3devkit (read only) 1203500 1203710 210 0.0
(read/write) 1747808 1747872 64 0.0
.flash.rodata 250464 250528 64 0.0
.flash.text 1203500 1203710 210 0.0
m5stack (read only) 1244995 1245375 380 0.0
(read/write) 532708 532772 64 0.0
.flash.rodata 280592 280656 64 0.0
.flash.text 1238831 1239211 380 0.0
k32w contact k32w0+release (read only) 607992 608264 272 0.0
.text 607456 607728 272 0.0
k32w1+release (read/write) 744252 744532 280 0.0
.text 622960 623240 280 0.0
light k32w0+release (read only) 599648 599904 256 0.0
.text 599112 599368 256 0.0
k32w1+release (read/write) 786208 786488 280 0.0
.text 664320 664600 280 0.0
lock k32w0+release (read only) 578816 579072 256 0.0
.text 578280 578536 256 0.0
linux air-purifier-app debug (read only) 2629181 2630365 1184 0.0
(read/write) 129328 129552 224 0.2
.data.rel.ro 74248 74456 208 0.3
.text 2266309 2267013 704 0.0
all-clusters-app debug (read only) 5881337 5882537 1200 0.0
(read/write) 479296 479552 256 0.1
.data 4432 4464 32 0.7
.data.rel.ro 332808 333016 208 0.1
.text 5101267 5101987 720 0.0
all-clusters-minimal-app debug (read only) 5193881 5195081 1200 0.0
(read/write) 236560 236784 224 0.1
.data 4336 4368 32 0.7
.data.rel.ro 97096 97304 208 0.2
.text 4670835 4671555 720 0.0
bridge-app debug (read only) 4602193 4603393 1200 0.0
(read/write) 217560 217848 288 0.1
.bss 118528 118560 32 0.0
.data 6144 6176 32 0.5
.data.rel.ro 86160 86368 208 0.2
.text 4152531 4153251 720 0.0
chip-tool debug (read only) 11977985 11983313 5328 0.0
(read/write) 520984 521176 192 0.0
.data.rel.ro 414384 414592 208 0.1
.text 10824947 10829795 4848 0.0
chip-tool-ipv6only arm64 (read only) 11473248 11478736 5488 0.0
.data 4480 4488 8 0.2
.data.rel.ro 454144 454352 208 0.0
.got 20344 20360 16 0.1
.text 10232828 10237740 4912 0.0
lighting-app debug+rpc+ui (read only) 5523609 5524761 1152 0.0
(read/write) 226328 226616 288 0.1
.bss 119464 119496 32 0.0
.data 4800 4832 32 0.7
.data.rel.ro 94560 94768 208 0.2
.text 4923123 4923795 672 0.0
lock-app debug (read only) 4670249 4671449 1200 0.0
(read/write) 205184 205440 256 0.1
.data 4096 4128 32 0.8
.data.rel.ro 80392 80600 208 0.3
.text 4203187 4203907 720 0.0
ota-provider-app debug (read only) 4302713 4303913 1200 0.0
(read/write) 193776 194032 256 0.1
.data 4304 4336 32 0.7
.data.rel.ro 69760 69968 208 0.3
.text 3901747 3902467 720 0.0
ota-requestor-app debug (read only) 4418761 4419961 1200 0.0
(read/write) 198024 198248 224 0.1
.data 4704 4736 32 0.7
.data.rel.ro 72720 72928 208 0.3
.text 4007491 4008211 720 0.0
shell debug (read only) 2867033 2868233 1200 0.0
(read/write) 155752 155976 224 0.1
.data.rel.ro 86040 86248 208 0.2
.text 2508114 2508834 720 0.0
thermostat-no-ble arm64 (read only) 4482392 4483720 1328 0.0
(read/write) 246568 249352 2784 1.1
.bss 122328 122344 16 0.0
.data 3352 3360 8 0.2
.data.rel.ro 103712 103920 208 0.2
.got 12216 12232 16 0.1
.text 3977644 3978396 752 0.0
tv-app debug (read only) 5652977 5654177 1200 0.0
(read/write) 351864 352056 192 0.1
.data.rel.ro 94264 94456 192 0.2
.text 5124243 5124963 720 0.0
tv-casting-app debug (read only) 9856065 9861409 5344 0.1
(read/write) 340432 340720 288 0.1
.bss 156560 156592 32 0.0
.data 2912 2944 32 1.1
.data.rel.ro 174040 174264 224 0.1
.text 9007763 9012627 4864 0.1
mbed lock-app-release cy8cproto_062_4343w (read/write) 2529944 2530200 256 0.0
.text 1492628 1492884 256 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read/write) 1096812 1097084 272 0.0
rodata 111588 111652 64 0.1
text 806684 806888 204 0.0
nrf7002dk_nrf5340_cpuapp (read/write) 1217212 1217484 272 0.0
rodata 141516 141580 64 0.0
text 802372 802572 200 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read/write) 1046608 1046864 256 0.0
rodata 99264 99328 64 0.1
text 769952 770136 184 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read/write) 1791044 1791372 328 0.0
.text 1583900 1584228 328 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read/write) 1715348 1715676 328 0.0
.text 1511260 1511588 328 0.0
light cy8ckit_062s2_43012 (read/write) 1634684 1635012 328 0.0
.text 1437324 1437652 328 0.0
lock cy8ckit_062s2_43012 (read/write) 1664796 1665124 328 0.0
.text 1440276 1440604 328 0.0
qpg lighting-app qpg6105+debug (read/write) 1124704 1124984 280 0.0
.text 637088 637368 280 0.0
lock-app qpg6105+debug (read/write) 1084696 1084976 280 0.0
.text 597076 597356 280 0.0
stm32 light STM32WB5MM-DK (read/write) 597077 597341 264 0.0
.rodata 78708 78772 64 0.1
.text 379688 379888 200 0.1
telink air-quality-sensor-app tlsr9528a_retention (read/write) 819890 820146 256 0.0
text 613798 613998 200 0.0
all-clusters-app tlsr9518adk80d (read/write) 1085644 1085916 272 0.0
text 788328 788534 206 0.0
all-clusters-minimal-app tlsr9528a (read/write) 1044880 1045152 272 0.0
text 761024 761226 202 0.0
bridge-app tlsr9518adk80d (read/write) 906900 907164 264 0.0
text 649680 649882 202 0.0
contact-sensor-app tlsr9528a_retention (read/write) 821490 821746 256 0.0
text 615460 615660 200 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read/write) 926444 926700 256 0.0
text 694918 695122 204 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read/write) 1068376 1068640 264 0.0
text 773478 773680 202 0.0
lock-app-dfu tlsr9528a (read/write) 899600 899856 256 0.0
text 650866 651066 200 0.0
ota-requestor-app tlsr9518adk80d (read/write) 924680 924944 264 0.0
text 667572 667774 202 0.0
pump-app tlsr9258a_retention (read/write) 824098 824354 256 0.0
text 618462 618662 200 0.0
pump-controller-app tlsr9518adk80d (read/write) 787804 788060 256 0.0
text 589208 589408 200 0.0
smoke_co_alarm-app tlsr9528a_retention (read/write) 828526 828782 256 0.0
text 621522 621722 200 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read/write) 846409 846665 256 0.0
text 632640 632840 200 0.0
thermostat tlsr9518adk80d (read/write) 813392 813648 256 0.0
text 608840 609040 200 0.0
window-covering tlsr9258a (read/write) 831544 831800 256 0.0
text 624142 624342 200 0.0
Decreases (13 builds for cc13x4_26x4, k32w, linux, telink)
platform target config section 27b81430 4592317d change % change
cc13x4_26x4 pump-app LP_EM_CC1354P10_6 (read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
k32w lock k32w0+release (read/write) 77356 77348 -8 -0.0
.bss 65224 65216 -8 -0.0
linux chip-tool-ipv6only arm64 (read/write) 591296 589920 -1376 -0.2
telink air-quality-sensor-app tlsr9528a_retention bss 49612 49604 -8 -0.0
contact-sensor-app tlsr9528a_retention bss 49660 49652 -8 -0.0
light-switch-app-ota-shell-factory-data tlsr9528a bss 77660 77652 -8 -0.0
lock-app-dfu tlsr9528a bss 69124 69116 -8 -0.0
pump-app tlsr9258a_retention bss 49768 49760 -8 -0.0
pump-controller-app tlsr9518adk80d bss 55968 55960 -8 -0.0
smoke_co_alarm-app tlsr9528a_retention bss 51292 51284 -8 -0.0
temperature-measurement-app-mars-ota tlsr9518adk80d bss 59444 59436 -8 -0.0
thermostat tlsr9518adk80d bss 56256 56248 -8 -0.0
window-covering tlsr9258a bss 68032 68024 -8 -0.0
Full report (73 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, stm32, telink)
platform target config section 27b81430 4592317d change % change
bl602 lighting-app bl602 (read/write) 1430678 1431830 1152 0.1
.bss 85304 85304 0 0.0
.data 9496 9496 0 0.0
.rodata 157376 157480 104 0.1
.text 1097862 1098908 1046 0.1
bl602+mfd (read/write) 1445086 1446246 1160 0.1
.bss 85464 85464 0 0.0
.data 9472 9472 0 0.0
.rodata 156336 156440 104 0.1
.text 1113164 1114218 1054 0.1
bl602+rpc (read/write) 1478062 1479214 1152 0.1
.bss 93336 93336 0 0.0
.data 9872 9872 0 0.0
.rodata 164944 165048 104 0.1
.text 1129248 1130290 1042 0.1
bl702 lighting-app bl702 (read only) 3478 3478 0 0.0
(read/write) 1195279 1196427 1148 0.1
.bss 11121 11121 0 0.0
.data 3680 3680 0 0.0
.rodata 106700 106804 104 0.1
.text 966944 967986 1042 0.1
bl702+mfd (read only) 3478 3478 0 0.0
(read/write) 1206335 1207479 1144 0.1
.bss 11297 11297 0 0.0
.data 3656 3656 0 0.0
.rodata 105640 105744 104 0.1
.text 978954 979996 1042 0.1
bl702+rpc (read only) 3478 3478 0 0.0
(read/write) 1287003 1288151 1148 0.1
.bss 19589 19589 0 0.0
.data 4224 4224 0 0.0
.rodata 122072 122176 104 0.1
.text 1041888 1042930 1042 0.1
bl706-eth (read/write) 1013889 1015033 1144 0.1
.bss 23680 23680 0 0.0
.data 3248 3248 0 0.0
.rodata 100080 100184 104 0.1
.text 758942 759984 1042 0.1
bl706-wifi (read/write) 1247094 1248366 1272 0.1
.bss 10565 10565 0 0.0
.data 3688 3688 0 0.0
.rodata 121060 121164 104 0.1
.text 989390 990558 1168 0.1
bl702l lighting-app bl702l (read only) 512 512 0 0.0
(read/write) 1164860 1166004 1144 0.1
.bss 16316 16316 0 0.0
.data 5040 5040 0 0.0
.rodata 100704 100808 104 0.1
.text 960046 961088 1042 0.1
bl702l+mfd (read/write) 1176776 1177412 636 0.1
.bss 16492 16492 0 0.0
.data 5024 5024 0 0.0
.rodata 99644 99748 104 0.1
.text 972368 973410 1042 0.1
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 780356 780628 272 0.0
(read/write) 168920 168920 0 0.0
.bss 90924 90924 0 0.0
.data 3560 3560 0 0.0
.rodata 90252 90316 64 0.1
.text 689836 690048 212 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 797324 797596 272 0.0
(read/write) 179160 179160 0 0.0
.bss 101164 101164 0 0.0
.data 3560 3560 0 0.0
.rodata 84564 84628 64 0.1
.text 712492 712704 212 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 785948 786228 280 0.0
(read/write) 173608 173608 0 0.0
.bss 95612 95612 0 0.0
.data 3560 3560 0 0.0
.rodata 111300 111364 64 0.1
.text 674380 674600 220 0.0
pump-app LP_EM_CC1354P10_6 (read only) 738124 738396 272 0.0
(read/write) 167896 167888 -8 -0.0
.bss 89664 89656 -8 -0.0
.data 3552 3552 0 0.0
.rodata 85972 86036 64 0.1
.text 651884 652096 212 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 723764 724036 272 0.0
(read/write) 168096 168096 0 0.0
.bss 89880 89880 0 0.0
.data 3544 3544 0 0.0
.rodata 81812 81876 64 0.1
.text 641684 641896 212 0.0
cc32xx air-purifier CC3235SF_LAUNCHXL (read only) 581170 581498 328 0.1
(read/write) 207960 207960 0 0.0
.bss 201196 201196 0 0.0
.data 1640 1640 0 0.0
.rodata 86474 86578 104 0.1
.text 492576 492796 220 0.0
lock CC3235SF_LAUNCHXL (read only) 626458 626794 336 0.1
(read/write) 208304 208304 0 0.0
.bss 201688 201688 0 0.0
.data 1496 1496 0 0.0
.rodata 106930 107034 104 0.1
.text 517408 517636 228 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 564667 564923 256 0.0
.app_xip_area 454525 454781 256 0.1
.bss 64976 64976 0 0.0
.data 744 744 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 547787 548051 264 0.0
.app_xip_area 432885 433149 264 0.1
.bss 69728 69728 0 0.0
.data 752 752 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 566307 566571 264 0.0
.app_xip_area 457669 457933 264 0.1
.bss 63512 63512 0 0.0
.data 704 704 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 561051 561323 272 0.0
.app_xip_area 449133 449405 272 0.1
.bss 66712 66712 0 0.0
.data 784 784 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
efr32 lighting-app BRD4161A+rs9116 (read/write) 928528 928856 328 0.0
.bss 197888 197888 0 0.0
.data 1388 1388 0 0.0
.text 729228 729556 328 0.0
BRD4187C (read/write) 1105308 1105596 288 0.0
.bss 195100 195100 0 0.0
.data 3404 3404 0 0.0
.text 906784 907072 288 0.0
lock-app BRD4161A+wf200 (read/write) 1117256 1117512 256 0.0
.bss 186728 186728 0 0.0
.data 2792 2792 0 0.0
.text 927716 927972 256 0.0
window-app BRD4187C (read/write) 1152164 1152484 320 0.0
.bss 167340 167340 0 0.0
.data 3316 3316 0 0.0
.text 981488 981808 320 0.0
esp32 all-clusters-app c3devkit (read only) 1203500 1203710 210 0.0
(read/write) 1747808 1747872 64 0.0
.dram0.bss 74184 74184 0 0.0
.dram0.data 13620 13620 0 0.0
.flash.rodata 250464 250528 64 0.0
.flash.text 1203500 1203710 210 0.0
.iram0.text 75530 75530 0 0.0
m5stack (read only) 1244995 1245375 380 0.0
(read/write) 532708 532772 64 0.0
.dram0.bss 81032 81032 0 0.0
.dram0.data 35164 35164 0 0.0
.flash.rodata 280592 280656 64 0.0
.flash.text 1238831 1239211 380 0.0
.iram0.text 125403 125403 0 0.0
k32w contact k32w0+release (read only) 607992 608264 272 0.0
(read/write) 79904 79904 0 0.0
.bss 67696 67696 0 0.0
.data 2224 2224 0 0.0
.text 607456 607728 272 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 744252 744532 280 0.0
.bss 79108 79108 0 0.0
.data 2816 2816 0 0.0
.text 622960 623240 280 0.0
light k32w0+release (read only) 599648 599904 256 0.0
(read/write) 79360 79360 0 0.0
.bss 67176 67176 0 0.0
.data 2200 2200 0 0.0
.text 599112 599368 256 0.0
k32w1+release (read only) 1024 1024 0 0.0
(read/write) 786208 786488 280 0.0
.bss 80500 80500 0 0.0
.data 2032 2032 0 0.0
.text 664320 664600 280 0.0
lock k32w0+release (read only) 578816 579072 256 0.0
(read/write) 77356 77348 -8 -0.0
.bss 65224 65216 -8 -0.0
.data 2148 2148 0 0.0
.text 578280 578536 256 0.0
linux air-purifier-app debug (read only) 2629181 2630365 1184 0.0
(read/write) 129328 129552 224 0.2
.bss 46896 46896 0 0.0
.data 2240 2240 0 0.0
.data.rel.ro 74248 74456 208 0.3
.dynamic 608 608 0 0.0
.got 4568 4568 0 0.0
.init 27 27 0 0.0
.init_array 760 760 0 0.0
.rodata 185008 185008 0 0.0
.text 2266309 2267013 704 0.0
all-clusters-app debug (read only) 5881337 5882537 1200 0.0
(read/write) 479296 479552 256 0.1
.bss 134656 134656 0 0.0
.data 4432 4464 32 0.7
.data.rel.ro 332808 333016 208 0.1
.dynamic 624 624 0 0.0
.got 5384 5384 0 0.0
.init 27 27 0 0.0
.init_array 1368 1368 0 0.0
.rodata 347760 347760 0 0.0
.text 5101267 5101987 720 0.0
all-clusters-minimal-app debug (read only) 5193881 5195081 1200 0.0
(read/write) 236560 236784 224 0.1
.bss 128032 128032 0 0.0
.data 4336 4368 32 0.7
.data.rel.ro 97096 97304 208 0.2
.dynamic 624 624 0 0.0
.got 5304 5304 0 0.0
.init 27 27 0 0.0
.init_array 1128 1128 0 0.0
.rodata 288226 288226 0 0.0
.text 4670835 4671555 720 0.0
bridge-app debug (read only) 4602193 4603393 1200 0.0
(read/write) 217560 217848 288 0.1
.bss 118528 118560 32 0.0
.data 6144 6176 32 0.5
.data.rel.ro 86160 86368 208 0.2
.dynamic 624 624 0 0.0
.got 5272 5272 0 0.0
.init 27 27 0 0.0
.init_array 816 816 0 0.0
.rodata 228994 228994 0 0.0
.text 4152531 4153251 720 0.0
chip-tool debug (read only) 11977985 11983313 5328 0.0
(read/write) 520984 521176 192 0.0
.bss 94264 94264 0 0.0
.data 5090 5090 0 0.0
.data.rel.ro 414384 414592 208 0.1
.dynamic 624 624 0 0.0
.got 5776 5776 0 0.0
.init 27 27 0 0.0
.init_array 792 792 0 0.0
.rodata 447801 447801 0 0.0
.text 10824947 10829795 4848 0.0
chip-tool-ipv6only arm64 (read only) 11473248 11478736 5488 0.0
(read/write) 591296 589920 -1376 -0.2
.bss 103304 103304 0 0.0
.data 4480 4488 8 0.2
.data.rel.ro 454144 454352 208 0.0
.dynamic 512 512 0 0.0
.got 20344 20360 16 0.1
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 353084 353084 0 0.0
.text 10232828 10237740 4912 0.0
lighting-app debug+rpc+ui (read only) 5523609 5524761 1152 0.0
(read/write) 226328 226616 288 0.1
.bss 119464 119496 32 0.0
.data 4800 4832 32 0.7
.data.rel.ro 94560 94768 208 0.2
.dynamic 672 672 0 0.0
.got 5888 5888 0 0.0
.init 27 27 0 0.0
.init_array 936 936 0 0.0
.rodata 353716 353716 0 0.0
.text 4923123 4923795 672 0.0
lock-app debug (read only) 4670249 4671449 1200 0.0
(read/write) 205184 205440 256 0.1
.bss 113984 113984 0 0.0
.data 4096 4128 32 0.8
.data.rel.ro 80392 80600 208 0.3
.dynamic 624 624 0 0.0
.got 5224 5224 0 0.0
.init 27 27 0 0.0
.init_array 856 856 0 0.0
.rodata 255010 255010 0 0.0
.text 4203187 4203907 720 0.0
ota-provider-app debug (read only) 4302713 4303913 1200 0.0
(read/write) 193776 194032 256 0.1
.bss 113792 113792 0 0.0
.data 4304 4336 32 0.7
.data.rel.ro 69760 69968 208 0.3
.dynamic 624 624 0 0.0
.got 4560 4560 0 0.0
.init 27 27 0 0.0
.init_array 712 712 0 0.0
.rodata 207650 207650 0 0.0
.text 3901747 3902467 720 0.0
ota-requestor-app debug (read only) 4418761 4419961 1200 0.0
(read/write) 198024 198248 224 0.1
.bss 114688 114688 0 0.0
.data 4704 4736 32 0.7
.data.rel.ro 72720 72928 208 0.3
.dynamic 624 624 0 0.0
.got 4496 4496 0 0.0
.init 27 27 0 0.0
.init_array 768 768 0 0.0
.rodata 213666 213666 0 0.0
.text 4007491 4008211 720 0.0
shell debug (read only) 2867033 2868233 1200 0.0
(read/write) 155752 155976 224 0.1
.bss 62544 62544 0 0.0
.data 1392 1392 0 0.0
.data.rel.ro 86040 86248 208 0.2
.dynamic 592 592 0 0.0
.got 4080 4080 0 0.0
.init 27 27 0 0.0
.init_array 1072 1072 0 0.0
.rodata 186112 186112 0 0.0
.text 2508114 2508834 720 0.0
thermostat-no-ble arm64 (read only) 4482392 4483720 1328 0.0
(read/write) 246568 249352 2784 1.1
.bss 122328 122344 16 0.0
.data 3352 3360 8 0.2
.data.rel.ro 103712 103920 208 0.2
.dynamic 512 512 0 0.0
.got 12216 12232 16 0.1
.init 24 24 0 0.0
.init_array 416 416 0 0.0
.rodata 159356 159356 0 0.0
.text 3977644 3978396 752 0.0
tv-app debug (read only) 5652977 5654177 1200 0.0
(read/write) 351864 352056 192 0.1
.bss 243792 243792 0 0.0
.data 6496 6496 0 0.0
.data.rel.ro 94264 94456 192 0.2
.dynamic 624 624 0 0.0
.got 5512 5512 0 0.0
.init 27 27 0 0.0
.init_array 1152 1152 0 0.0
.rodata 286786 286786 0 0.0
.text 5124243 5124963 720 0.0
tv-casting-app debug (read only) 9856065 9861409 5344 0.1
(read/write) 340432 340720 288 0.1
.bss 156560 156592 32 0.0
.data 2912 2944 32 1.1
.data.rel.ro 174040 174264 224 0.1
.dynamic 624 624 0 0.0
.got 5088 5088 0 0.0
.init 27 27 0 0.0
.init_array 1176 1176 0 0.0
.rodata 382576 382576 0 0.0
.text 9007763 9012627 4864 0.1
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2529944 2530200 256 0.0
.bss 220424 220424 0 0.0
.data 5200 5200 0 0.0
.text 1492628 1492884 256 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1096812 1097084 272 0.0
bss 130689 130689 0 0.0
rodata 111588 111652 64 0.1
text 806684 806888 204 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1217212 1217484 272 0.0
bss 122811 122811 0 0.0
rodata 141516 141580 64 0.0
text 802372 802572 200 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1046608 1046864 256 0.0
bss 129633 129633 0 0.0
rodata 99264 99328 64 0.1
text 769952 770136 184 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 834584 834584 0 0.0
(read/write) 1791044 1791372 328 0.0
.bss 196100 196100 0 0.0
.data 2656 2656 0 0.0
.text 1583900 1584228 328 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 837640 837640 0 0.0
(read/write) 1715348 1715676 328 0.0
.bss 193068 193068 0 0.0
.data 2632 2632 0 0.0
.text 1511260 1511588 328 0.0
light cy8ckit_062s2_43012 (read only) 844368 844368 0 0.0
(read/write) 1634684 1635012 328 0.0
.bss 186532 186532 0 0.0
.data 2440 2440 0 0.0
.text 1437324 1437652 328 0.0
lock cy8ckit_062s2_43012 (read only) 817208 817208 0 0.0
(read/write) 1664796 1665124 328 0.0
.bss 213692 213692 0 0.0
.data 2440 2440 0 0.0
.text 1440276 1440604 328 0.0
qpg lighting-app qpg6105+debug (read/write) 1124704 1124984 280 0.0
.bss 102376 102376 0 0.0
.data 820 820 0 0.0
.text 637088 637368 280 0.0
lock-app qpg6105+debug (read/write) 1084696 1084976 280 0.0
.bss 97128 97128 0 0.0
.data 840 840 0 0.0
.text 597076 597356 280 0.0
stm32 light STM32WB5MM-DK (read/write) 597077 597341 264 0.0
.bss 128288 128288 0 0.0
.data 668 668 0 0.0
.rodata 78708 78772 64 0.1
.text 379688 379888 200 0.1
telink air-quality-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 819890 820146 256 0.0
bss 49612 49604 -8 -0.0
text 613798 613998 200 0.0
all-clusters-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 1085644 1085916 272 0.0
bss 101640 101640 0 0.0
text 788328 788534 206 0.0
all-clusters-minimal-app tlsr9528a (read only) 47960 47960 0 0.0
(read/write) 1044880 1045152 272 0.0
bss 110028 110028 0 0.0
text 761024 761226 202 0.0
bridge-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 906900 907164 264 0.0
bss 93060 93060 0 0.0
text 649680 649882 202 0.0
contact-sensor-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 821490 821746 256 0.0
bss 49660 49652 -8 -0.0
text 615460 615660 200 0.0
light-switch-app-ota-shell-factory-data tlsr9528a (read only) 51584 51584 0 0.0
(read/write) 926444 926700 256 0.0
bss 77660 77652 -8 -0.0
text 694918 695122 204 0.0
lighting-app-ota-rpc-factory-data-4mb tlsr9518adk80d (read only) 29122 29122 0 0.0
(read/write) 1068376 1068640 264 0.0
bss 100140 100140 0 0.0
text 773478 773680 202 0.0
lock-app-dfu tlsr9528a (read only) 51584 51584 0 0.0
(read/write) 899600 899856 256 0.0
bss 69124 69116 -8 -0.0
text 650866 651066 200 0.0
ota-requestor-app tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 924680 924944 264 0.0
bss 92640 92640 0 0.0
text 667572 667774 202 0.0
pump-app tlsr9258a_retention (read only) 51774 51774 0 0.0
(read/write) 824098 824354 256 0.0
bss 49768 49760 -8 -0.0
text 618462 618662 200 0.0
pump-controller-app tlsr9518adk80d (read only) 31872 31872 0 0.0
(read/write) 787804 788060 256 0.0
bss 55968 55960 -8 -0.0
text 589208 589408 200 0.0
shell tlsr9518adk80d (read only) 29042 29042 0 0.0
(read/write) 676716 676716 0 0.0
bss 73640 73640 0 0.0
text 462234 462234 0 0.0
smoke_co_alarm-app tlsr9528a_retention (read only) 51774 51774 0 0.0
(read/write) 828526 828782 256 0.0
bss 51292 51284 -8 -0.0
text 621522 621722 200 0.0
temperature-measurement-app-mars-ota tlsr9518adk80d (read only) 32220 32220 0 0.0
(read/write) 846409 846665 256 0.0
bss 59444 59436 -8 -0.0
text 632640 632840 200 0.0
thermostat tlsr9518adk80d (read only) 31872 31872 0 0.0
(read/write) 813392 813648 256 0.0
bss 56256 56248 -8 -0.0
text 608840 609040 200 0.0
window-covering tlsr9258a (read only) 51584 51584 0 0.0
(read/write) 831544 831800 256 0.0
bss 68032 68024 -8 -0.0
text 624142 624342 200 0.0

github-actions[bot] avatar Feb 14 '24 14:02 github-actions[bot]

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.

stale[bot] avatar Apr 22 '24 05:04 stale[bot]

Tons of conflicts and changes. I will re-work this one if we get to more decoupling.

andy31415 avatar Jun 13 '24 19:06 andy31415