Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing using pw_unit_test #29342

Closed
wants to merge 1 commit into from
Closed

Conversation

mbknust
Copy link
Contributor

@mbknust mbknust commented Sep 20, 2023

Problem

Matter currently uses nlunit-test as a testing framework, which isn't maintained anymore. Moreover, the output it gives when some assertion fails is not very informative, eg. when asserting the value of some expression, it doesn't print what the expected and actual values were.

Changes

All unit tests have been rewritten to use the pw_unit_test framework instead. Since pigweed is already a dependency of Matter, and was developed with embedded devices in mind, it seemed a good choice. It also aims to be source-compatible with googletest, so most developers will feel right at home using it.

Build system

  • support for pw_unit_test added to ./.gn
  • the GN template in ./build/chip/chip_test_suite.gni changed, so it invokes pw_test
  • minor changes in build/chip/chip_test.gni and build/chip/chip_test_group.gni, to keep target naming consistent
  • small adjustments in **/BUILD.gn

Unit test files

The overwhelming majority of changes were made semi-automatically using a simple regex-based rewriting script. This crude method worked quite well, though most files needed some small manual intervention afterwards. The actual testing logic was unchanged - the rewritten files ought to behave in exactly the same way as before. These are the kinds of changes made:

  1. including <gtest/gtest.h> instead of <nlunit-test.h>
  2. replacing NL_TEST_ASSERT(suite, condition) with EXPECT_TRUE(condition)
  3. removing the redundant nlTestSuite * apSuite parameter from functions
  4. creating test fixture classes (for test suites requiring setup/teardown)
  5. turning individual unit test functions into TEST, TEST_F, or STATIC_TEST
  6. moving TestContexts into test fixture classes as static members
  7. deleting CHIP_REGISTER_TEST_SUITE, nlTest[], nlTestSuite, etc.

Unlike nlunit-test, testcases are run by pw_unit_test in the order in which they were declared in the source code. To keep the run-time order of testcases unchanged, sometimes their source-code declaration order had to be reshuffled (causing thousand-line-long diffs, even though nothing substantial changed!).

Testing

Running ./scripts/tests/all_tests.sh shows that all test suites compile and run successfully.

Followups

The following problems were encountered, but couldn't be fixed "properly", because that would require changing the testing code (and risk breaking it). Instead, provisional workarounds were applied:

  • Problem: Some new compiler warnings are enabled by pw_unit_test. However, we also have the -Werror flag, which causes warnings to get treated as errors. As a result existing code no longer compiles.
    • Workaround: added -Wno-error= flags to BUILD.gn files
  • Problem: Unit tests in src/app/tests depend on symbols defined in other test files, causing linker errors unless we were to build them as a single static library. But in pw_unit_test, testcases register themselves automatically via static initialization, so we can't link test suites together, unless we want all of them to run.
    • Workaround: added required functions as weak symbols (see src/app/tests/AppTestContext.cpp)

These tasks were left to be dealt with in the future, in order not to introduce too many changes at once:

  • replacing all occurrences of ASSERT_TRUE(abc == xyz); with ASSERT_EQ(abc, xyz), etc.
  • completely removing nlunit-test from the source tree
  • implementing CSV output, if it's needed (is it?)

@CLAassistant
Copy link

CLAassistant commented Sep 20, 2023

CLA assistant check
All committers have signed the CLA.

@github-actions
Copy link

github-actions bot commented Sep 21, 2023

PR #29342: Size comparison from b516ff4 to 120cfb1

Increases (30 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, k32w, psoc6, telink)
platform target config section b516ff4 120cfb1 change % change
bl602 lighting-app bl602 .text 1062150 1062218 68 0.0
bl602+rpc .text 1093652 1093718 66 0.0
bl702 lighting-app bl702 .debug_str 3962792 3962800 8 0.0
bl702+rpc .debug_str 4390861 4390869 8 0.0
bl706-eth .debug_loc 3023649 3023804 155 0.0
.text 780692 780760 68 0.0
bl706-wifi .debug_loc 3124491 3124666 175 0.0
.text 947300 947312 12 0.0
bl702l lighting-app bl702l .debug_str 3987502 3987510 8 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 .text 652540 652556 16 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 757355 757419 64 0.0
.text 676952 677016 64 0.0
lock-mtd LP_EM_CC1354P10_6 .text 638560 638568 8 0.0
pump-app LP_EM_CC1354P10_6 .text 614820 614828 8 0.0
pump-controller-app LP_EM_CC1354P10_6 .text 604596 604604 8 0.0
cc32xx lock CC3235SF_LAUNCHXL .debug_loclists 1577723 1577780 57 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 554543 554615 72 0.0
.app_xip_area 445737 445809 72 0.0
lock cyw930739m2evb_01 (read/write) 539343 539415 72 0.0
.app_xip_area 425745 425817 72 0.0
switch cyw930739m2evb_01 (read/write) 558319 558383 64 0.0
.app_xip_area 447753 447817 64 0.0
k32w contact k32w0+release (read only) 589724 589764 40 0.0
.text 589188 589228 40 0.0
light k32w0+release (read only) 589548 589572 24 0.0
.text 589012 589036 24 0.0
lock k32w0+release (read only) 560892 560932 40 0.0
.text 560356 560396 40 0.0
psoc6 all-clusters cy8ckit_062s2_43012 .debug_loclists 2318888 2318993 105 0.0
all-clusters-minimal cy8ckit_062s2_43012 .debug_loclists 2134141 2134247 106 0.0
light cy8ckit_062s2_43012 .debug_loclists 1970900 1971006 106 0.0
lock cy8ckit_062s2_43012 .debug_loclists 1946187 1946293 106 0.0
telink all-clusters-app tlsr9518adk80d text 754880 754888 8 0.0
all-clusters-minimal-app tlsr9528a text 708864 708872 8 0.0
bridge-app tlsr9518adk80d text 648148 648156 8 0.0
lighting-app-rpc-shell-factory-data tlsr9518adk80d text 697038 697046 8 0.0
tlsr9528a text 727032 727040 8 0.0
ota-requestor-app tlsr9518adk80d text 613498 613506 8 0.0
shell tlsr9518adk80d text 482108 482114 6 0.0
Decreases (50 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, linux, mbed, psoc6, qpg, telink)
platform target config section b516ff4 120cfb1 change % change
bl602 lighting-app bl602 (read/write) 1367934 1367870 -64 -0.0
bl602+rpc (read/write) 1414874 1414802 -72 -0.0
bl702 lighting-app bl702 (read/write) 1171595 1171359 -236 -0.0
.debug_frame 507740 507736 -4 -0.0
.debug_info 41879323 41878820 -503 -0.0
.debug_line 5419747 5419364 -383 -0.0
.debug_loc 3515069 3514824 -245 -0.0
.debug_ranges 369496 369464 -32 -0.0
.rodata 106764 106628 -136 -0.1
.text 959372 959270 -102 -0.0
bl702+rpc (read/write) 1269891 1269655 -236 -0.0
.debug_frame 537072 537068 -4 -0.0
.debug_info 47028410 47027907 -503 -0.0
.debug_line 5836970 5836587 -383 -0.0
.debug_loc 3720634 3720389 -245 -0.0
.debug_ranges 396208 396176 -32 -0.0
.rodata 121836 121700 -136 -0.1
.text 1033104 1033002 -102 -0.0
bl706-eth (read/write) 1020648 1020580 -68 -0.0
.debug_frame 426716 426712 -4 -0.0
.debug_info 22627669 22627464 -205 -0.0
.debug_line 4346035 4345941 -94 -0.0
.rodata 96412 96276 -136 -0.1
bl706-wifi (read/write) 1183731 1183607 -124 -0.0
.debug_frame 619020 619016 -4 -0.0
.debug_info 23800143 23799933 -210 -0.0
.debug_line 4591851 4591757 -94 -0.0
.rodata 109592 109456 -136 -0.1
bl702l lighting-app bl702l (read/write) 1151196 1150956 -240 -0.0
.debug_frame 488368 488364 -4 -0.0
.debug_info 41346675 41346172 -503 -0.0
.debug_line 5323201 5322818 -383 -0.0
.debug_loc 3459269 3458967 -302 -0.0
.debug_ranges 375968 375936 -32 -0.0
.rodata 100752 100616 -136 -0.1
.text 942214 942112 -102 -0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 737427 737315 -112 -0.0
.rodata 84495 84367 -128 -0.2
lock-mtd LP_EM_CC1354P10_6 (read only) 745123 744995 -128 -0.0
.rodata 106175 106039 -136 -0.1
pump-app LP_EM_CC1354P10_6 (read only) 695547 695419 -128 -0.0
.rodata 80335 80199 -136 -0.2
pump-controller-app LP_EM_CC1354P10_6 (read only) 681155 681035 -120 -0.0
.rodata 76167 76039 -128 -0.2
cc32xx lock CC3235SF_LAUNCHXL (read only) 618906 618738 -168 -0.0
.debug_info 2085690 20856597 -311 -0.0
.debug_line 2771401 2771245 -156 -0.0
.debug_rnglists 99381 99366 -15 -0.0
.rodata 106338 106202 -136 -0.1
.text 510448 510416 -32 -0.0
cyw30739 ota-requestor cyw930739m2evb_01 (read/write) 574743 574583 -160 -0.0
.app_xip_area 467273 467113 -160 -0.0
linux all-clusters-app debug (read only) 5650025 5649785 -240 -0.0
.rodata 332164 332036 -128 -0.0
.text 4935795 4935683 -112 -0.0
all-clusters-minimal-app debug (read only) 4924209 4923969 -240 -0.0
.rodata 266520 266392 -128 -0.0
.text 4426627 4426515 -112 -0.0
bridge-app debug (read only) 2769009 2768753 -256 -0.0
.rodata 209976 209816 -160 -0.1
.text 2381315 2381219 -96 -0.0
chip-tool debug (read only) 10344537 10344297 -240 -0.0
.rodata 384169 384041 -128 -0.0
.text 9363395 9363283 -112 -0.0
chip-tool-ipv6only arm64 (read only) 10207156 10206836 -320 -0.0
.rodata 316064 315936 -128 -0.0
.text 9124888 9124696 -192 -0.0
lighting-app debug+rpc+ui (read only) 5250481 5250225 -256 -0.0
.rodata 332692 332532 -160 -0.0
.text 4675043 4674947 -96 -0.0
lock-app debug (read only) 4475129 4474889 -240 -0.0
.rodata 243640 243512 -128 -0.1
.text 4021923 4021811 -112 -0.0
ota-provider-app debug (read only) 4127097 4126825 -272 -0.0
.rodata 196824 196664 -160 -0.1
.text 3739763 3739651 -112 -0.0
ota-requestor-app debug (read only) 4220097 4219857 -240 -0.0
.rodata 199864 199736 -128 -0.1
.text 3825395 3825283 -112 -0.0
shell debug (read only) 3051337 3051113 -224 -0.0
.rodata 208768 208640 -128 -0.1
.text 2667954 2667858 -96 -0.0
thermostat-no-ble arm64 (read only) 4365604 4365284 -320 -0.0
.rodata 161044 160916 -128 -0.1
.text 3869816 3869624 -192 -0.0
tv-app debug (read only) 5315561 5315321 -240 -0.0
.rodata 266088 265960 -128 -0.0
.text 4805443 4805331 -112 -0.0
tv-casting-app debug (read only) 8290825 8290585 -240 -0.0
.rodata 333356 333228 -128 -0.0
.text 7556051 7555939 -112 -0.0
mbed lock-app-release cy8cproto_062_4343w (read/write) 2523208 2523072 -136 -0.0
.text 1485892 1485756 -136 -0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read/write) 1797500 1797364 -136 -0.0
.debug_info 33084876 33084623 -253 -0.0
.debug_line 4204893 4204793 -100 -0.0
.text 1593284 1593148 -136 -0.0
all-clusters-minimal cy8ckit_062s2_43012 (read/write) 1684772 1684652 -120 -0.0
.debug_info 28778452 28778199 -253 -0.0
.debug_line 3912132 3912032 -100 -0.0
.text 1483212 1483092 -120 -0.0
light cy8ckit_062s2_43012 (read/write) 1610484 1610348 -136 -0.0
.debug_info 23904011 23903758 -253 -0.0
.debug_line 3487290 3487190 -100 -0.0
.text 1415252 1415116 -136 -0.0
lock cy8ckit_062s2_43012 (read/write) 1641868 1641732 -136 -0.0
.debug_info 23707138 23706885 -253 -0.0
.debug_line 3437975 3437875 -100 -0.0
.text 1419372 1419236 -136 -0.0
qpg lighting-app qpg6105+debug (read/write) 1177720 1177616 -104 -0.0
.text 624560 624456 -104 -0.0
lock-app qpg6105+debug (read/write) 1133960 1133848 -112 -0.0
.text 580804 580692 -112 -0.0
telink all-clusters-app tlsr9518adk80d (read/write) 1101692 1101564 -128 -0.0
all-clusters-minimal-app tlsr9528a (read/write) 1042324 1042196 -128 -0.0
bridge-app tlsr9518adk80d (read/write) 948280 948152 -128 -0.0
contact-sensor-app tlsr9528a (read/write) 933708 933384 -324 -0.0
text 622382 622228 -154 -0.0
light-switch-app tlsr9518adk80d (read/write) 927456 927132 -324 -0.0
text 633946 633792 -154 -0.0
lighting-app-rpc-shell-factory-data tlsr9518adk80d (read/write) 1000764 1000636 -128 -0.0
tlsr9528a (read/write) 1053104 1052976 -128 -0.0
lock-app tlsr9528a (read/write) 991756 991440 -316 -0.0
text 653528 653374 -154 -0.0
ota-requestor-app tlsr9518adk80d (read/write) 902848 902720 -128 -0.0
pump-app tlsr9528a (read/write) 939148 938816 -332 -0.0
text 628026 627872 -154 -0.0
pump-controller-app tlsr9518adk80d (read/write) 873836 873504 -332 -0.0
text 588332 588178 -154 -0.0
resource-monitoring-app tlsr9518adk80d (read/write) 888064 887740 -324 -0.0
text 597596 597442 -154 -0.0
shell tlsr9518adk80d (read/write) 752432 752304 -128 -0.0
smoke_co_alarm-app tlsr9528a (read/write) 937408 937092 -316 -0.0
text 626904 626750 -154 -0.0
temperature-measurement-app tlsr9528a (read/write) 922492 922160 -332 -0.0
text 614130 613974 -156 -0.0
thermostat tlsr9518adk80d (read/write) 895268 894944 -324 -0.0
text 604042 603888 -154 -0.0
window-covering tlsr9518adk80d (read/write) 890900 890568 -332 -0.0
text 599370 599216 -154 -0.0
Full report (57 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, k32w, linux, mbed, psoc6, qpg, telink)
platform target config section b516ff4 120cfb1 change % change
bl602 lighting-app bl602 (read/write) 1367934 1367870 -64 -0.0
.bss 73070 73070 0 0.0
.data 9360 9360 0 0.0
.text 1062150 1062218 68 0.0
bl602+rpc (read/write) 1414874 1414802 -72 -0.0
.bss 81094 81094 0 0.0
.data 9720 9720 0 0.0
.text 1093652 1093718 66 0.0
bl702 lighting-app bl702 (read only) 3358 3358 0 0.0
(read/write) 1171595 1171359 -236 -0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 26633 26633 0 0.0
.bss_psram 57552 57552 0 0.0
.comment 48 48 0 0.0
.data 3568 3568 0 0.0
.debug_abbrev 1542027 1542027 0 0.0
.debug_aranges 138304 138304 0 0.0
.debug_frame 507740 507736 -4 -0.0
.debug_info 41879323 41878820 -503 -0.0
.debug_line 5419747 5419364 -383 -0.0
.debug_loc 3515069 3514824 -245 -0.0
.debug_ranges 369496 369464 -32 -0.0
.debug_str 3962792 3962800 8 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 106764 106628 -136 -0.1
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 596313 596313 0 0.0
.symtab 177024 177024 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
959372 959270 -102 -0.0
bl702+rpc (read only) 3358 3358 0 0.0
(read/write) 1269891 1269655 -236 -0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 35101 35101 0 0.0
.bss_psram 57536 57536 0 0.0
.comment 48 48 0 0.0
.data 4080 4080 0 0.0
.debug_abbrev 1722941 1722941 0 0.0
.debug_aranges 147016 147016 0 0.0
.debug_frame 537072 537068 -4 -0.0
.debug_info 47028410 47027907 -503 -0.0
.debug_line 5836970 5836587 -383 -0.0
.debug_loc 3720634 3720389 -245 -0.0
.debug_ranges 396208 396176 -32 -0.0
.debug_str 4390861 4390869 8 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 121836 121700 -136 -0.1
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 661054 661054 0 0.0
.symtab 196352 196352 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
1033104 1033002 -102 -0.0
bl706-eth (read/write) 1020648 1020580 -68 -0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 25554 25554 0 0.0
.bss_psram 94423 94423 0 0.0
.comment 48 48 0 0.0
.data 3232 3232 0 0.0
.debug_abbrev 1075535 1075535 0 0.0
.debug_aranges 115192 115192 0 0.0
.debug_frame 426716 426712 -4 -0.0
.debug_info 22627669 22627464 -205 -0.0
.debug_line 4346035 4345941 -94 -0.0
.debug_loc 3023649 3023804 155 0.0
.debug_ranges 305352 305352 0 0.0
.debug_str 3542204 3542204 0 0.0
.hbn 184 184 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 152 152 0 0.0
.psram 9 9 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 96412 96276 -136 -0.1
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 465080 465080 0 0.0
.symtab 139696 139696 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3338 3338 0 0.0
.text 0 0 0 0.0
780692 780760 68 0.0
bl706-wifi (read only) 3870 3870 0 0.0
(read/write) 1183731 1183607 -124 -0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 9949 9949 0 0.0
.bss_psram 95191 95191 0 0.0
.comment 48 48 0 0.0
.data 3552 3552 0 0.0
.debug_abbrev 1168980 1168980 0 0.0
.debug_aranges 119392 119392 0 0.0
.debug_frame 619020 619016 -4 -0.0
.debug_info 23800143 23799933 -210 -0.0
.debug_line 4591851 4591757 -94 -0.0
.debug_loc 3124491 3124666 175 0.0
.debug_ranges 315248 315248 0 0.0
.debug_str 3614615 3614615 0 0.0
.hbn 468 468 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 156 156 0 0.0
.psram 9 9 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 109592 109456 -136 -0.1
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 505891 505891 0 0.0
.symtab 152608 152608 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3870 3870 0 0.0
.text 0 0 0 0.0
947300 947312 12 0.0
bl702l lighting-app bl702l (read only) 278 278 0 0.0
(read/write) 1151196 1150956 -240 -0.0
.boot2 292 292 0 0.0
.bss 15956 15956 0 0.0
.bss_psram 77216 77216 0 0.0
.comment 48 48 0 0.0
.data 4512 4512 0 0.0
.debug_abbrev 1536571 1536571 0 0.0
.debug_aranges 133160 133160 0 0.0
.debug_frame 488368 488364 -4 -0.0
.debug_info 41346675 41346172 -503 -0.0
.debug_line 5323201 5322818 -383 -0.0
.debug_loc 3459269 3458967 -302 -0.0
.debug_ranges 375968 375936 -32 -0.0
.debug_str 3987502 3987510 8 0.0
.hbn 3244 3244 0 0.0
.hbn_noinit 308 308 0 0.0
.init 408 408 0 0.0
.init_array 144 144 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 100752 100616 -136 -0.1
.romdata 3224 3224 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 286 286 0 0.0
.stack 2048 2048 0 0.0
.strtab 597990 597990 0 0.0
.symtab 176496 176496 0 0.0
.tcm_data 692 692 0 0.0
.tcmcode 278 278 0 0.0
.text 0 0 0 0.0
942214 942112 -102 -0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 737427 737315 -112 -0.0
(read/write) 166444 166444 0 0.0
.bss 88860 88860 0 0.0
.data 3420 3420 0 0.0
.rodata 84495 84367 -128 -0.2
.text 652540 652556 16 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 757355 757419 64 0.0
(read/write) 176700 176700 0 0.0
.bss 99084 99084 0 0.0
.data 3436 3436 0 0.0
.rodata 80015 80015 0 0.0
.text 676952 677016 64 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 745123 744995 -128 -0.0
(read/write) 171172 171172 0 0.0
.bss 93556 93556 0 0.0
.data 3436 3436 0 0.0
.rodata 106175 106039 -136 -0.1
.text 638560 638568 8 0.0
pump-app LP_EM_CC1354P10_6 (read only) 695547 695419 -128 -0.0
(read/write) 165536 165536 0 0.0
.bss 87728 87728 0 0.0
.data 3408 3408 0 0.0
.rodata 80335 80199 -136 -0.2
.text 614820 614828 8 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 681155 681035 -120 -0.0
(read/write) 165676 165676 0 0.0
.bss 87872 87872 0 0.0
.data 3404 3404 0 0.0
.rodata 76167 76039 -128 -0.2
.text 604596 604604 8 0.0
cc32xx lock CC3235SF_LAUNCHXL (blank) 0 0 0 0.0
(read only) 618906 618738 -168 -0.0
(read/write) 206900 206900 0 0.0
.ARM.attributes 44 44 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 200344 200344 0 0.0
.comment 206 206 0 0.0
.data 1436 1436 0 0.0
.debug_abbrev 929144 929144 0 0.0
.debug_aranges 107376 107376 0 0.0
.debug_frame 362984 362984 0 0.0
.debug_info 2085690 20856597 -311 -0.0
.debug_line 2771401 2771245 -156 -0.0
.debug_line_str 513 513 0 0.0
.debug_loc 33340 33340 0 0.0
.debug_loclists 1577723 1577780 57 0.0
.debug_ranges 4984 4984 0 0.0
.debug_rnglists 99381 99366 -15 -0.0
.debug_str 3384239 3384239 0 0.0
.ramVecs 780 780 0 0.0
.resetVecs 64 64 0 0.0
.rodata 106338 106202 -136 -0.1
.shstrtab 265 265 0 0.0
.stack 2048 2048 0 0.0
.strtab 510907 510907 0 0.0
.symtab 296768 296768 0 0.0
.text 510448 510416 -32 -0.0
cyw30739 light cyw930739m2evb_01 (read/write) 554543 554615 72 0.0
.app_xip_area 445737 445809 72 0.0
.bss 63776 63776 0 0.0
.data 660 660 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 539343 539415 72 0.0
.app_xip_area 425745 425817 72 0.0
.bss 68544 68544 0 0.0
.data 688 688 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 574743 574583 -160 -0.0
.app_xip_area 467273 467113 -160 -0.0
.bss 62512 62512 0 0.0
.data 588 588 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 558319 558383 64 0.0
.app_xip_area 447753 447817 64 0.0
.bss 65512 65512 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
k32w contact k32w0+release (read only) 589724 589764 40 0.0
(read/write) 87508 87508 0 0.0
.bss 70760 70760 0 0.0
.data 2124 2124 0 0.0
.text 589188 589228 40 0.0
light k32w0+release (read only) 589548 589572 24 0.0
(read/write) 87184 87184 0 0.0
.bss 70448 70448 0 0.0
.data 2112 2112 0 0.0
.text 589012 589036 24 0.0
lock k32w0+release (read only) 560892 560932 40 0.0
(read/write) 85016 85016 0 0.0
.bss 68336 68336 0 0.0
.data 2056 2056 0 0.0
.text 560356 560396 40 0.0
linux all-clusters-app debug (read only) 5650025 5649785 -240 -0.0
(read/write) 420984 420984 0 0.0
.bss 130416 130416 0 0.0
.data 3904 3904 0 0.0
.data.rel.ro 279280 279280 0 0.0
.dynamic 624 624 0 0.0
.got 5384 5384 0 0.0
.init 27 27 0 0.0
.init_array 1344 1344 0 0.0
.rodata 332164 332036 -128 -0.0
.text 4935795 4935683 -112 -0.0
all-clusters-minimal-app debug (read only) 4924209 4923969 -240 -0.0
(read/write) 232624 232624 0 0.0
.bss 126480 126480 0 0.0
.data 3744 3744 0 0.0
.data.rel.ro 95280 95280 0 0.0
.dynamic 624 624 0 0.0
.got 5344 5344 0 0.0
.init 27 27 0 0.0
.init_array 1144 1144 0 0.0
.rodata 266520 266392 -128 -0.0
.text 4426627 4426515 -112 -0.0
bridge-app debug (read only) 2769009 2768753 -256 -0.0
(read/write) 133168 133168 0 0.0
.bss 51736 51736 0 0.0
.data 3696 3696 0 0.0
.data.rel.ro 71632 71632 0 0.0
.dynamic 624 624 0 0.0
.got 4640 4640 0 0.0
.init 27 27 0 0.0
.init_array 816 816 0 0.0
.rodata 209976 209816 -160 -0.1
.text 2381315 2381219 -96 -0.0
chip-tool debug (read only) 10344537 10344297 -240 -0.0
(read/write) 442968 442968 0 0.0
.bss 93688 93688 0 0.0
.data 4962 4962 0 0.0
.data.rel.ro 337080 337080 0 0.0
.dynamic 624 624 0 0.0
.got 5808 5808 0 0.0
.init 27 27 0 0.0
.init_array 760 760 0 0.0
.rodata 384169 384041 -128 -0.0
.text 9363395 9363283 -112 -0.0
chip-tool-ipv6only arm64 (read only) 10207156 10206836 -320 -0.0
(read/write) 505496 505496 0 0.0
.bss 103048 103048 0 0.0
.data 4288 4288 0 0.0
.data.rel.ro 374336 374336 0 0.0
.dynamic 512 512 0 0.0
.got 18368 18368 0 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 316064 315936 -128 -0.0
.text 9124888 9124696 -192 -0.0
lighting-app debug+rpc+ui (read only) 5250481 5250225 -256 -0.0
(read/write) 222760 222760 0 0.0
.bss 118160 118160 0 0.0
.data 4400 4400 0 0.0
.data.rel.ro 92624 92624 0 0.0
.dynamic 672 672 0 0.0
.got 5928 5928 0 0.0
.init 27 27 0 0.0
.init_array 944 944 0 0.0
.rodata 332692 332532 -160 -0.0
.text 4675043 4674947 -96 -0.0
lock-app debug (read only) 4475129 4474889 -240 -0.0
(read/write) 203128 203128 0 0.0
.bss 113424 113424 0 0.0
.data 3632 3632 0 0.0
.data.rel.ro 79288 79288 0 0.0
.dynamic 624 624 0 0.0
.got 5264 5264 0 0.0
.init 27 27 0 0.0
.init_array 864 864 0 0.0
.rodata 243640 243512 -128 -0.1
.text 4021923 4021811 -112 -0.0
ota-provider-app debug (read only) 4127097 4126825 -272 -0.0
(read/write) 192032 192032 0 0.0
.bss 113568 113568 0 0.0
.data 3904 3904 0 0.0
.data.rel.ro 68640 68640 0 0.0
.dynamic 624 624 0 0.0
.got 4544 4544 0 0.0
.init 27 27 0 0.0
.init_array 728 728 0 0.0
.rodata 196824 196664 -160 -0.1
.text 3739763 3739651 -112 -0.0
ota-requestor-app debug (read only) 4220097 4219857 -240 -0.0
(read/write) 196280 196280 0 0.0
.bss 114592 114592 0 0.0
.data 4144 4144 0 0.0
.data.rel.ro 71616 71616 0 0.0
.dynamic 624 624 0 0.0
.got 4480 4480 0 0.0
.init 27 27 0 0.0
.init_array 784 784 0 0.0
.rodata 199864 199736 -128 -0.1
.text 3825395 3825283 -112 -0.0
shell debug (read only) 3051337 3051113 -224 -0.0
(read/write) 153680 153680 0 0.0
.bss 61000 61000 0 0.0
.data 784 784 0 0.0
.data.rel.ro 85960 85960 0 0.0
.dynamic 592 592 0 0.0
.got 4112 4112 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 208768 208640 -128 -0.1
.text 2667954 2667858 -96 -0.0
thermostat-no-ble arm64 (read only) 4365604 4365284 -320 -0.0
(read/write) 241992 241992 0 0.0
.bss 122184 122184 0 0.0
.data 2792 2792 0 0.0
.data.rel.ro 100664 100664 0 0.0
.dynamic 512 512 0 0.0
.got 11896 11896 0 0.0
.init 24 24 0 0.0
.init_array 424 424 0 0.0
.rodata 161044 160916 -128 -0.1
.text 3869816 3869624 -192 -0.0
tv-app debug (read only) 5315561 5315321 -240 -0.0
(read/write) 350664 350664 0 0.0
.bss 241888 241888 0 0.0
.data 5008 5008 0 0.0
.data.rel.ro 96352 96352 0 0.0
.dynamic 624 624 0 0.0
.got 5608 5608 0 0.0
.init 27 27 0 0.0
.init_array 1152 1152 0 0.0
.rodata 266088 265960 -128 -0.0
.text 4805443 4805331 -112 -0.0
tv-casting-app debug (read only) 8290825 8290585 -240 -0.0
(read/write) 211744 211744 0 0.0
.bss 54784 54784 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 147696 147696 0 0.0
.dynamic 624 624 0 0.0
.got 5080 5080 0 0.0
.init 27 27 0 0.0
.init_array 1080 1080 0 0.0
.rodata 333356 333228 -128 -0.0
.text 7556051 7555939 -112 -0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2523208 2523072 -136 -0.0
.bss 219064 219064 0 0.0
.data 5128 5128 0 0.0
.text 1485892 1485756 -136 -0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 837512 837512 0 0.0
(read/write) 1797500 1797364 -136 -0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 193276 193276 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2552 2552 0 0.0
.debug_abbrev 1384930 1384930 0 0.0
.debug_aranges 146088 146088 0 0.0
.debug_frame 485864 485864 0 0.0
.debug_info 33084876 33084623 -253 -0.0
.debug_line 4204893 4204793 -100 -0.0
.debug_line_str 957 957 0 0.0
.debug_loclists 2318888 2318993 105 0.0
.debug_rnglists 145107 145107 0 0.0
.debug_str 4554294 4554294 0 0.0
.heap 837512 837512 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 864037 864037 0 0.0
.symtab 519056 519056 0 0.0
.text 0 0 0 0.0
1593284 1593148 -136 -0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 840168 840168 0 0.0
(read/write) 1684772 1684652 -120 -0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 190708 190708 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2464 2464 0 0.0
.debug_abbrev 1253743 1253743 0 0.0
.debug_aranges 135808 135808 0 0.0
.debug_frame 456948 456948 0 0.0
.debug_info 28778452 28778199 -253 -0.0
.debug_line 3912132 3912032 -100 -0.0
.debug_line_str 981 981 0 0.0
.debug_loclists 2134141 2134247 106 0.0
.debug_rnglists 134564 134564 0 0.0
.debug_str 3939609 3939609 0 0.0
.heap 840168 840168 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 734127 734127 0 0.0
.symtab 472352 472352 0 0.0
.text 1483212 1483092 -120 -0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 846496 846496 0 0.0
(read/write) 1610484 1610348 -136 -0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184492 184492 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2352 2352 0 0.0
.debug_abbrev 1094952 1094952 0 0.0
.debug_aranges 125904 125904 0 0.0
.debug_frame 419988 419988 0 0.0
.debug_info 23904011 23903758 -253 -0.0
.debug_line 3487290 3487190 -100 -0.0
.debug_line_str 942 942 0 0.0
.debug_loclists 1970900 1971006 106 0.0
.debug_rnglists 124260 124260 0 0.0
.debug_str 3746620 3746620 0 0.0
.heap 846496 846496 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 649477 649477 0 0.0
.symtab 434640 434640 0 0.0
.text 1415252 1415116 -136 -0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 819232 819232 0 0.0
(read/write) 1641868 1641732 -136 -0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 211740 211740 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2368 2368 0 0.0
.debug_abbrev 1087092 1087092 0 0.0
.debug_aranges 124560 124560 0 0.0
.debug_frame 415084 415084 0 0.0
.debug_info 23707138 23706885 -253 -0.0
.debug_line 3437975 3437875 -100 -0.0
.debug_line_str 933 933 0 0.0
.debug_loclists 1946187 1946293 106 0.0
.debug_rnglists 122216 122216 0 0.0
.debug_str 3708698 3708698 0 0.0
.heap 819232 819232 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 622602 622602 0 0.0
.symtab 425856 425856 0 0.0
.text 1419372 1419236 -136 -0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1177720 1177616 -104 -0.0
.bss 100616 100616 0 0.0
.data 740 740 0 0.0
.text 624560 624456 -104 -0.0
lock-app qpg6105+debug (read/write) 1133960 1133848 -112 -0.0
.bss 95320 95320 0 0.0
.data 744 744 0 0.0
.text 580804 580692 -112 -0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1101692 1101564 -128 -0.0
bss 111920 111920 0 0.0
text 754880 754888 8 0.0
all-clusters-minimal-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 1042324 1042196 -128 -0.0
bss 109812 109812 0 0.0
text 708864 708872 8 0.0
bridge-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 948280 948152 -128 -0.0
bss 113396 113396 0 0.0
text 648148 648156 8 0.0
contact-sensor-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 933708 933384 -324 -0.0
bss 103052 103052 0 0.0
text 622382 622228 -154 -0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 927456 927132 -324 -0.0
bss 103176 103176 0 0.0
text 633946 633792 -154 -0.0
lighting-app-rpc-shell-factory-data tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1000764 1000636 -128 -0.0
bss 115636 115636 0 0.0
text 697038 697046 8 0.0
tlsr9528a (read only) 4 4 0 0.0
(read/write) 1053104 1052976 -128 -0.0
bss 116232 116232 0 0.0
text 727032 727040 8 0.0
lock-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 991756 991440 -316 -0.0
bss 103772 103772 0 0.0
text 653528 653374 -154 -0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 902848 902720 -128 -0.0
bss 103708 103708 0 0.0
text 613498 613506 8 0.0
pump-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 939148 938816 -332 -0.0
bss 103184 103184 0 0.0
text 628026 627872 -154 -0.0
pump-controller-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 873836 873504 -332 -0.0
bss 102380 102380 0 0.0
text 588332 588178 -154 -0.0
resource-monitoring-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 888064 887740 -324 -0.0
bss 102768 102768 0 0.0
text 597596 597442 -154 -0.0
shell tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 752432 752304 -128 -0.0
bss 101724 101724 0 0.0
text 482108 482114 6 0.0
smoke_co_alarm-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 937408 937092 -316 -0.0
bss 103164 103164 0 0.0
text 626904 626750 -154 -0.0
temperature-measurement-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 922492 922160 -332 -0.0
bss 102884 102884 0 0.0
text 614130 613974 -156 -0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 895268 894944 -324 -0.0
bss 102680 102680 0 0.0
text 604042 603888 -154 -0.0
window-covering tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 890900 890568 -332 -0.0
bss 103004 103004 0 0.0
text 599370 599216 -154 -0.0

@github-actions
Copy link

github-actions bot commented Sep 21, 2023

PR #29342: Size comparison from 82a3e3d to 4cf84bc

Increases (7 builds for bl702, cc32xx, psoc6)
platform target config section 82a3e3d 4cf84bc change % change
bl702 lighting-app bl706-eth .text 780758 780760 2 0.0
bl706-wifi .debug_loc 3124651 3124666 15 0.0
cc32xx lock CC3235SF_LAUNCHXL .debug_line 2771243 2771245 2 0.0
psoc6 all-clusters cy8ckit_062s2_43012 .debug_loclists 2318979 2318993 14 0.0
all-clusters-minimal cy8ckit_062s2_43012 .debug_loclists 2134232 2134247 15 0.0
light cy8ckit_062s2_43012 .debug_loclists 1970991 1971006 15 0.0
lock cy8ckit_062s2_43012 .debug_loclists 1946278 1946293 15 0.0
Decreases (6 builds for bl702, bl702l, cc32xx)
platform target config section 82a3e3d 4cf84bc change % change
bl702 lighting-app bl702 .debug_line 5419365 5419364 -1 -0.0
bl702+rpc .debug_line 5836588 5836587 -1 -0.0
bl706-eth .debug_line 4345942 4345941 -1 -0.0
bl706-wifi .debug_line 4591758 4591757 -1 -0.0
bl702l lighting-app bl702l .debug_line 5322819 5322818 -1 -0.0
.debug_loc 3459024 3458967 -57 -0.0
cc32xx lock CC3235SF_LAUNCHXL .debug_loclists 1577788 1577780 -8 -0.0
Full report (57 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, k32w, linux, mbed, psoc6, qpg, telink)
platform target config section 82a3e3d 4cf84bc change % change
bl602 lighting-app bl602 (read/write) 1367870 1367870 0 0.0
.bss 73070 73070 0 0.0
.data 9360 9360 0 0.0
.text 1062218 1062218 0 0.0
bl602+rpc (read/write) 1414802 1414802 0 0.0
.bss 81094 81094 0 0.0
.data 9720 9720 0 0.0
.text 1093720 1093720 0 0.0
bl702 lighting-app bl702 (read only) 3358 3358 0 0.0
(read/write) 1171359 1171359 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 26633 26633 0 0.0
.bss_psram 57552 57552 0 0.0
.comment 48 48 0 0.0
.data 3568 3568 0 0.0
.debug_abbrev 1542027 1542027 0 0.0
.debug_aranges 138304 138304 0 0.0
.debug_frame 507736 507736 0 0.0
.debug_info 41878820 41878820 0 0.0
.debug_line 5419365 5419364 -1 -0.0
.debug_loc 3514824 3514824 0 0.0
.debug_ranges 369464 369464 0 0.0
.debug_str 3962800 3962800 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 106628 106628 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 596313 596313 0 0.0
.symtab 177024 177024 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
959270 959270 0 0.0
bl702+rpc (read only) 3358 3358 0 0.0
(read/write) 1269655 1269655 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 35101 35101 0 0.0
.bss_psram 57536 57536 0 0.0
.comment 48 48 0 0.0
.data 4080 4080 0 0.0
.debug_abbrev 1722941 1722941 0 0.0
.debug_aranges 147016 147016 0 0.0
.debug_frame 537068 537068 0 0.0
.debug_info 47027907 47027907 0 0.0
.debug_line 5836588 5836587 -1 -0.0
.debug_loc 3720389 3720389 0 0.0
.debug_ranges 396176 396176 0 0.0
.debug_str 4390869 4390869 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.psram 0 0 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 121700 121700 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 661054 661054 0 0.0
.symtab 196352 196352 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
1033002 1033002 0 0.0
bl706-eth (read/write) 1020580 1020580 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 25554 25554 0 0.0
.bss_psram 94423 94423 0 0.0
.comment 48 48 0 0.0
.data 3232 3232 0 0.0
.debug_abbrev 1075535 1075535 0 0.0
.debug_aranges 115192 115192 0 0.0
.debug_frame 426712 426712 0 0.0
.debug_info 22627464 22627464 0 0.0
.debug_line 4345942 4345941 -1 -0.0
.debug_loc 3023804 3023804 0 0.0
.debug_ranges 305352 305352 0 0.0
.debug_str 3542204 3542204 0 0.0
.hbn 184 184 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 152 152 0 0.0
.psram 9 9 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 96276 96276 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 465080 465080 0 0.0
.symtab 139696 139696 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3338 3338 0 0.0
.text 0 0 0 0.0
780758 780760 2 0.0
bl706-wifi (read only) 3870 3870 0 0.0
(read/write) 1183607 1183607 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 9949 9949 0 0.0
.bss_psram 95191 95191 0 0.0
.comment 48 48 0 0.0
.data 3552 3552 0 0.0
.debug_abbrev 1168980 1168980 0 0.0
.debug_aranges 119392 119392 0 0.0
.debug_frame 619016 619016 0 0.0
.debug_info 23799933 23799933 0 0.0
.debug_line 4591758 4591757 -1 -0.0
.debug_loc 3124651 3124666 15 0.0
.debug_ranges 315248 315248 0 0.0
.debug_str 3614615 3614615 0 0.0
.hbn 468 468 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 156 156 0 0.0
.psram 9 9 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 109456 109456 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 304 304 0 0.0
.stack 2048 2048 0 0.0
.strtab 505891 505891 0 0.0
.symtab 152608 152608 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3870 3870 0 0.0
.text 0 0 0 0.0
947312 947312 0 0.0
bl702l lighting-app bl702l (read only) 278 278 0 0.0
(read/write) 1150956 1150956 0 0.0
.boot2 292 292 0 0.0
.bss 15956 15956 0 0.0
.bss_psram 77216 77216 0 0.0
.comment 48 48 0 0.0
.data 4512 4512 0 0.0
.debug_abbrev 1536571 1536571 0 0.0
.debug_aranges 133160 133160 0 0.0
.debug_frame 488364 488364 0 0.0
.debug_info 41346172 41346172 0 0.0
.debug_line 5322819 5322818 -1 -0.0
.debug_loc 3459024 3458967 -57 -0.0
.debug_ranges 375936 375936 0 0.0
.debug_str 3987510 3987510 0 0.0
.hbn 3244 3244 0 0.0
.hbn_noinit 308 308 0 0.0
.init 408 408 0 0.0
.init_array 144 144 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 100616 100616 0 0.0
.romdata 3224 3224 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 286 286 0 0.0
.stack 2048 2048 0 0.0
.strtab 597990 597990 0 0.0
.symtab 176496 176496 0 0.0
.tcm_data 692 692 0 0.0
.tcmcode 278 278 0 0.0
.text 0 0 0 0.0
942112 942112 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 737315 737315 0 0.0
(read/write) 166444 166444 0 0.0
.bss 88860 88860 0 0.0
.data 3420 3420 0 0.0
.rodata 84367 84367 0 0.0
.text 652556 652556 0 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 757419 757419 0 0.0
(read/write) 176700 176700 0 0.0
.bss 99084 99084 0 0.0
.data 3436 3436 0 0.0
.rodata 80015 80015 0 0.0
.text 677016 677016 0 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 744995 744995 0 0.0
(read/write) 171172 171172 0 0.0
.bss 93556 93556 0 0.0
.data 3436 3436 0 0.0
.rodata 106039 106039 0 0.0
.text 638568 638568 0 0.0
pump-app LP_EM_CC1354P10_6 (read only) 695419 695419 0 0.0
(read/write) 165536 165536 0 0.0
.bss 87728 87728 0 0.0
.data 3408 3408 0 0.0
.rodata 80199 80199 0 0.0
.text 614828 614828 0 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 681035 681035 0 0.0
(read/write) 165676 165676 0 0.0
.bss 87872 87872 0 0.0
.data 3404 3404 0 0.0
.rodata 76039 76039 0 0.0
.text 604604 604604 0 0.0
cc32xx lock CC3235SF_LAUNCHXL (blank) 0 0 0 0.0
(read only) 618738 618738 0 0.0
(read/write) 206900 206900 0 0.0
.ARM.attributes 44 44 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 200344 200344 0 0.0
.comment 206 206 0 0.0
.data 1436 1436 0 0.0
.debug_abbrev 929144 929144 0 0.0
.debug_aranges 107376 107376 0 0.0
.debug_frame 362984 362984 0 0.0
.debug_info 20856597 20856597 0 0.0
.debug_line 2771243 2771245 2 0.0
.debug_line_str 513 513 0 0.0
.debug_loc 33340 33340 0 0.0
.debug_loclists 1577788 1577780 -8 -0.0
.debug_ranges 4984 4984 0 0.0
.debug_rnglists 99366 99366 0 0.0
.debug_str 3384239 3384239 0 0.0
.ramVecs 780 780 0 0.0
.resetVecs 64 64 0 0.0
.rodata 106202 106202 0 0.0
.shstrtab 265 265 0 0.0
.stack 2048 2048 0 0.0
.strtab 510907 510907 0 0.0
.symtab 296768 296768 0 0.0
.text 510416 510416 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 554615 554615 0 0.0
.app_xip_area 445809 445809 0 0.0
.bss 63776 63776 0 0.0
.data 660 660 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 539415 539415 0 0.0
.app_xip_area 425817 425817 0 0.0
.bss 68544 68544 0 0.0
.data 688 688 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 574583 574583 0 0.0
.app_xip_area 467113 467113 0 0.0
.bss 62512 62512 0 0.0
.data 588 588 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 558383 558383 0 0.0
.app_xip_area 447817 447817 0 0.0
.bss 65512 65512 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
k32w contact k32w0+release (read only) 589764 589764 0 0.0
(read/write) 87508 87508 0 0.0
.bss 70760 70760 0 0.0
.data 2124 2124 0 0.0
.text 589228 589228 0 0.0
light k32w0+release (read only) 589572 589572 0 0.0
(read/write) 87184 87184 0 0.0
.bss 70448 70448 0 0.0
.data 2112 2112 0 0.0
.text 589036 589036 0 0.0
lock k32w0+release (read only) 560932 560932 0 0.0
(read/write) 85016 85016 0 0.0
.bss 68336 68336 0 0.0
.data 2056 2056 0 0.0
.text 560396 560396 0 0.0
linux all-clusters-app debug (read only) 5649785 5649785 0 0.0
(read/write) 420984 420984 0 0.0
.bss 130416 130416 0 0.0
.data 3904 3904 0 0.0
.data.rel.ro 279280 279280 0 0.0
.dynamic 624 624 0 0.0
.got 5384 5384 0 0.0
.init 27 27 0 0.0
.init_array 1344 1344 0 0.0
.rodata 332036 332036 0 0.0
.text 4935683 4935683 0 0.0
all-clusters-minimal-app debug (read only) 4923969 4923969 0 0.0
(read/write) 232624 232624 0 0.0
.bss 126480 126480 0 0.0
.data 3744 3744 0 0.0
.data.rel.ro 95280 95280 0 0.0
.dynamic 624 624 0 0.0
.got 5344 5344 0 0.0
.init 27 27 0 0.0
.init_array 1144 1144 0 0.0
.rodata 266392 266392 0 0.0
.text 4426515 4426515 0 0.0
bridge-app debug (read only) 2768753 2768753 0 0.0
(read/write) 133168 133168 0 0.0
.bss 51736 51736 0 0.0
.data 3696 3696 0 0.0
.data.rel.ro 71632 71632 0 0.0
.dynamic 624 624 0 0.0
.got 4640 4640 0 0.0
.init 27 27 0 0.0
.init_array 816 816 0 0.0
.rodata 209816 209816 0 0.0
.text 2381219 2381219 0 0.0
chip-tool debug (read only) 10344297 10344297 0 0.0
(read/write) 442968 442968 0 0.0
.bss 93688 93688 0 0.0
.data 4962 4962 0 0.0
.data.rel.ro 337080 337080 0 0.0
.dynamic 624 624 0 0.0
.got 5808 5808 0 0.0
.init 27 27 0 0.0
.init_array 760 760 0 0.0
.rodata 384041 384041 0 0.0
.text 9363283 9363283 0 0.0
chip-tool-ipv6only arm64 (read only) 10206836 10206836 0 0.0
(read/write) 505496 505496 0 0.0
.bss 103048 103048 0 0.0
.data 4288 4288 0 0.0
.data.rel.ro 374336 374336 0 0.0
.dynamic 512 512 0 0.0
.got 18368 18368 0 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 315936 315936 0 0.0
.text 9124696 9124696 0 0.0
lighting-app debug+rpc+ui (read only) 5250225 5250225 0 0.0
(read/write) 222760 222760 0 0.0
.bss 118160 118160 0 0.0
.data 4400 4400 0 0.0
.data.rel.ro 92624 92624 0 0.0
.dynamic 672 672 0 0.0
.got 5928 5928 0 0.0
.init 27 27 0 0.0
.init_array 944 944 0 0.0
.rodata 332532 332532 0 0.0
.text 4674947 4674947 0 0.0
lock-app debug (read only) 4474889 4474889 0 0.0
(read/write) 203128 203128 0 0.0
.bss 113424 113424 0 0.0
.data 3632 3632 0 0.0
.data.rel.ro 79288 79288 0 0.0
.dynamic 624 624 0 0.0
.got 5264 5264 0 0.0
.init 27 27 0 0.0
.init_array 864 864 0 0.0
.rodata 243512 243512 0 0.0
.text 4021811 4021811 0 0.0
ota-provider-app debug (read only) 4126825 4126825 0 0.0
(read/write) 192032 192032 0 0.0
.bss 113568 113568 0 0.0
.data 3904 3904 0 0.0
.data.rel.ro 68640 68640 0 0.0
.dynamic 624 624 0 0.0
.got 4544 4544 0 0.0
.init 27 27 0 0.0
.init_array 728 728 0 0.0
.rodata 196664 196664 0 0.0
.text 3739651 3739651 0 0.0
ota-requestor-app debug (read only) 4219857 4219857 0 0.0
(read/write) 196280 196280 0 0.0
.bss 114592 114592 0 0.0
.data 4144 4144 0 0.0
.data.rel.ro 71616 71616 0 0.0
.dynamic 624 624 0 0.0
.got 4480 4480 0 0.0
.init 27 27 0 0.0
.init_array 784 784 0 0.0
.rodata 199736 199736 0 0.0
.text 3825283 3825283 0 0.0
shell debug (read only) 3051113 3051113 0 0.0
(read/write) 153680 153680 0 0.0
.bss 61000 61000 0 0.0
.data 784 784 0 0.0
.data.rel.ro 85960 85960 0 0.0
.dynamic 592 592 0 0.0
.got 4112 4112 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 208640 208640 0 0.0
.text 2667858 2667858 0 0.0
thermostat-no-ble arm64 (read only) 4365284 4365284 0 0.0
(read/write) 241992 241992 0 0.0
.bss 122184 122184 0 0.0
.data 2792 2792 0 0.0
.data.rel.ro 100664 100664 0 0.0
.dynamic 512 512 0 0.0
.got 11896 11896 0 0.0
.init 24 24 0 0.0
.init_array 424 424 0 0.0
.rodata 160916 160916 0 0.0
.text 3869624 3869624 0 0.0
tv-app debug (read only) 5315321 5315321 0 0.0
(read/write) 350664 350664 0 0.0
.bss 241888 241888 0 0.0
.data 5008 5008 0 0.0
.data.rel.ro 96352 96352 0 0.0
.dynamic 624 624 0 0.0
.got 5608 5608 0 0.0
.init 27 27 0 0.0
.init_array 1152 1152 0 0.0
.rodata 265960 265960 0 0.0
.text 4805331 4805331 0 0.0
tv-casting-app debug (read only) 8290585 8290585 0 0.0
(read/write) 211744 211744 0 0.0
.bss 54784 54784 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 147696 147696 0 0.0
.dynamic 624 624 0 0.0
.got 5080 5080 0 0.0
.init 27 27 0 0.0
.init_array 1080 1080 0 0.0
.rodata 333228 333228 0 0.0
.text 7555939 7555939 0 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2523072 2523072 0 0.0
.bss 219064 219064 0 0.0
.data 5128 5128 0 0.0
.text 1485756 1485756 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 837512 837512 0 0.0
(read/write) 1797364 1797364 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 193276 193276 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2552 2552 0 0.0
.debug_abbrev 1384930 1384930 0 0.0
.debug_aranges 146088 146088 0 0.0
.debug_frame 485864 485864 0 0.0
.debug_info 33084623 33084623 0 0.0
.debug_line 4204793 4204793 0 0.0
.debug_line_str 957 957 0 0.0
.debug_loclists 2318979 2318993 14 0.0
.debug_rnglists 145107 145107 0 0.0
.debug_str 4554294 4554294 0 0.0
.heap 837512 837512 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 864037 864037 0 0.0
.symtab 519056 519056 0 0.0
.text 0 0 0 0.0
1593148 1593148 0 0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 840168 840168 0 0.0
(read/write) 1684652 1684652 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 190708 190708 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2464 2464 0 0.0
.debug_abbrev 1253743 1253743 0 0.0
.debug_aranges 135808 135808 0 0.0
.debug_frame 456948 456948 0 0.0
.debug_info 28778199 28778199 0 0.0
.debug_line 3912032 3912032 0 0.0
.debug_line_str 981 981 0 0.0
.debug_loclists 2134232 2134247 15 0.0
.debug_rnglists 134564 134564 0 0.0
.debug_str 3939609 3939609 0 0.0
.heap 840168 840168 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 734127 734127 0 0.0
.symtab 472352 472352 0 0.0
.text 1483092 1483092 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 846496 846496 0 0.0
(read/write) 1610348 1610348 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184492 184492 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2352 2352 0 0.0
.debug_abbrev 1094952 1094952 0 0.0
.debug_aranges 125904 125904 0 0.0
.debug_frame 419988 419988 0 0.0
.debug_info 23903758 23903758 0 0.0
.debug_line 3487190 3487190 0 0.0
.debug_line_str 942 942 0 0.0
.debug_loclists 1970991 1971006 15 0.0
.debug_rnglists 124260 124260 0 0.0
.debug_str 3746620 3746620 0 0.0
.heap 846496 846496 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 649477 649477 0 0.0
.symtab 434640 434640 0 0.0
.text 1415116 1415116 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 819232 819232 0 0.0
(read/write) 1641732 1641732 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 211740 211740 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2368 2368 0 0.0
.debug_abbrev 1087092 1087092 0 0.0
.debug_aranges 124560 124560 0 0.0
.debug_frame 415084 415084 0 0.0
.debug_info 23706885 23706885 0 0.0
.debug_line 3437875 3437875 0 0.0
.debug_line_str 933 933 0 0.0
.debug_loclists 1946278 1946293 15 0.0
.debug_rnglists 122216 122216 0 0.0
.debug_str 3708698 3708698 0 0.0
.heap 819232 819232 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 622602 622602 0 0.0
.symtab 425856 425856 0 0.0
.text 1419236 1419236 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1177616 1177616 0 0.0
.bss 100616 100616 0 0.0
.data 740 740 0 0.0
.text 624456 624456 0 0.0
lock-app qpg6105+debug (read/write) 1133848 1133848 0 0.0
.bss 95320 95320 0 0.0
.data 744 744 0 0.0
.text 580692 580692 0 0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1101564 1101564 0 0.0
bss 111920 111920 0 0.0
text 754888 754888 0 0.0
all-clusters-minimal-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 1042196 1042196 0 0.0
bss 109812 109812 0 0.0
text 708872 708872 0 0.0
bridge-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 948152 948152 0 0.0
bss 113396 113396 0 0.0
text 648156 648156 0 0.0
contact-sensor-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 933384 933384 0 0.0
bss 103052 103052 0 0.0
text 622228 622228 0 0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 927132 927132 0 0.0
bss 103176 103176 0 0.0
text 633792 633792 0 0.0
lighting-app-rpc-shell-factory-data tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1000636 1000636 0 0.0
bss 115636 115636 0 0.0
text 697046 697046 0 0.0
tlsr9528a (read only) 4 4 0 0.0
(read/write) 1052976 1052976 0 0.0
bss 116232 116232 0 0.0
text 727040 727040 0 0.0
lock-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 991440 991440 0 0.0
bss 103772 103772 0 0.0
text 653374 653374 0 0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 902720 902720 0 0.0
bss 103708 103708 0 0.0
text 613506 613506 0 0.0
pump-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 938816 938816 0 0.0
bss 103184 103184 0 0.0
text 627872 627872 0 0.0
pump-controller-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 873504 873504 0 0.0
bss 102380 102380 0 0.0
text 588178 588178 0 0.0
resource-monitoring-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 887740 887740 0 0.0
bss 102768 102768 0 0.0
text 597442 597442 0 0.0
shell tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 752304 752304 0 0.0
bss 101724 101724 0 0.0
text 482116 482116 0 0.0
smoke_co_alarm-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 937092 937092 0 0.0
bss 103164 103164 0 0.0
text 626750 626750 0 0.0
temperature-measurement-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 922160 922160 0 0.0
bss 102884 102884 0 0.0
text 613974 613974 0 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 894944 894944 0 0.0
bss 102680 102680 0 0.0
text 603888 603888 0 0.0
window-covering tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 890568 890568 0 0.0
bss 103004 103004 0 0.0
text 599216 599216 0 0.0

@github-actions
Copy link

github-actions bot commented Sep 26, 2023

PR #29342: Size comparison from fdb296e to f034fb1

Full report (35 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, k32w, linux, mbed, nrfconnect, psoc6, qpg)
platform target config section fdb296e f034fb1 change % change
bl602 lighting-app bl602 (read/write) 1390858 1390858 0 0.0
.bss 88176 88176 0 0.0
.data 9368 9368 0 0.0
.text 1067060 1067060 0 0.0
bl602+mfd (read/write) 1404746 1404746 0 0.0
.bss 88344 88344 0 0.0
.data 9344 9344 0 0.0
.text 1081846 1081846 0 0.0
bl602+rpc (read/write) 1438030 1438030 0 0.0
.bss 96200 96200 0 0.0
.data 9728 9728 0 0.0
.text 1098796 1098796 0 0.0
bl702 lighting-app bl702 (read only) 3358 3358 0 0.0
(read/write) 1194419 1194419 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 30865 30865 0 0.0
.bss_psram 65776 65776 0 0.0
.comment 48 48 0 0.0
.data 3568 3568 0 0.0
.debug_abbrev 1544413 1544413 0 0.0
.debug_aranges 138400 138400 0 0.0
.debug_frame 508104 508104 0 0.0
.debug_info 41914538 41914538 0 0.0
.debug_line 5428241 5428241 0 0.0
.debug_loc 3523714 3523714 0 0.0
.debug_ranges 376904 376904 0 0.0
.debug_str 3965963 3965963 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 106804 106804 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 596765 596765 0 0.0
.symtab 177248 177248 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
961356 961356 0 0.0
bl702+mfd (read only) 3358 3358 0 0.0
(read/write) 1204979 1204979 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 31041 31041 0 0.0
.bss_psram 65776 65776 0 0.0
.comment 48 48 0 0.0
.data 3544 3544 0 0.0
.debug_abbrev 1546486 1546486 0 0.0
.debug_aranges 139568 139568 0 0.0
.debug_frame 513176 513176 0 0.0
.debug_info 41955137 41955137 0 0.0
.debug_line 5467628 5467628 0 0.0
.debug_loc 3562145 3562145 0 0.0
.debug_ranges 378904 378904 0 0.0
.debug_str 3971494 3971494 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 105744 105744 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 600525 600525 0 0.0
.symtab 179008 179008 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
972854 972854 0 0.0
bl702+rpc (read only) 3358 3358 0 0.0
(read/write) 1292975 1292975 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 39333 39333 0 0.0
.bss_psram 65760 65760 0 0.0
.comment 48 48 0 0.0
.data 4088 4088 0 0.0
.debug_abbrev 1725307 1725307 0 0.0
.debug_aranges 147120 147120 0 0.0
.debug_frame 537448 537448 0 0.0
.debug_info 47064790 47064790 0 0.0
.debug_line 5846325 5846325 0 0.0
.debug_loc 3730699 3730699 0 0.0
.debug_ranges 404456 404456 0 0.0
.debug_str 4394032 4394032 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 121868 121868 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 661506 661506 0 0.0
.symtab 196576 196576 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
1035346 1035346 0 0.0
bl706-eth (read/write) 1043499 1043499 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 29978 29978 0 0.0
.bss_psram 97719 97719 0 0.0
.comment 48 48 0 0.0
.data 3248 3248 0 0.0
.debug_abbrev 1079641 1079641 0 0.0
.debug_aranges 115408 115408 0 0.0
.debug_frame 427504 427504 0 0.0
.debug_info 22664278 22664278 0 0.0
.debug_line 4360080 4360080 0 0.0
.debug_loc 3032658 3032658 0 0.0
.debug_ranges 312712 312712 0 0.0
.debug_str 3545182 3545182 0 0.0
.hbn 184 184 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 152 152 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 96504 96504 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 465060 465060 0 0.0
.symtab 139936 139936 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3338 3338 0 0.0
.text 0 0 0 0.0
787362 787362 0 0.0
bl706-wifi (read only) 3870 3870 0 0.0
(read/write) 1207142 1207142 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 14569 14569 0 0.0
.bss_psram 98487 98487 0 0.0
.comment 48 48 0 0.0
.data 3560 3560 0 0.0
.debug_abbrev 1173210 1173210 0 0.0
.debug_aranges 119584 119584 0 0.0
.debug_frame 620056 620056 0 0.0
.debug_info 23836797 23836797 0 0.0
.debug_line 4604877 4604877 0 0.0
.debug_loc 3132513 3132513 0 0.0
.debug_ranges 322528 322528 0 0.0
.debug_str 3617473 3617473 0 0.0
.hbn 468 468 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 156 156 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 109632 109632 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 505787 505787 0 0.0
.symtab 152800 152800 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3870 3870 0 0.0
.text 0 0 0 0.0
954410 954410 0 0.0
bl702l lighting-app bl702l (read only) 278 278 0 0.0
(read/write) 1157540 1157540 0 0.0
.boot2 292 292 0 0.0
.bss 20324 20324 0 0.0
.bss_psram 77216 77216 0 0.0
.comment 48 48 0 0.0
.data 4512 4512 0 0.0
.debug_abbrev 1538701 1538701 0 0.0
.debug_aranges 133264 133264 0 0.0
.debug_frame 488744 488744 0 0.0
.debug_info 41372535 41372535 0 0.0
.debug_line 5331373 5331373 0 0.0
.debug_loc 3467970 3467970 0 0.0
.debug_ranges 383440 383440 0 0.0
.debug_str 3990558 3990558 0 0.0
.hbn 3244 3244 0 0.0
.hbn_noinit 308 308 0 0.0
.init 408 408 0 0.0
.init_array 144 144 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 100784 100784 0 0.0
.romdata 3224 3224 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 286 286 0 0.0
.stack 2048 2048 0 0.0
.strtab 598391 598391 0 0.0
.symtab 176688 176688 0 0.0
.tcm_data 692 692 0 0.0
.tcmcode 278 278 0 0.0
.text 0 0 0 0.0
944158 944158 0 0.0
bl702l+mfd (read only) 278 278 0 0.0
(read/write) 1168396 1168396 0 0.0
.boot2 292 292 0 0.0
.bss 20500 20500 0 0.0
.bss_psram 77216 77216 0 0.0
.comment 48 48 0 0.0
.data 4488 4488 0 0.0
.debug_abbrev 1540789 1540789 0 0.0
.debug_aranges 134432 134432 0 0.0
.debug_frame 493812 493812 0 0.0
.debug_info 41415177 41415177 0 0.0
.debug_line 5370637 5370637 0 0.0
.debug_loc 3506401 3506401 0 0.0
.debug_ranges 385440 385440 0 0.0
.debug_str 3996079 3996079 0 0.0
.hbn 3244 3244 0 0.0
.hbn_noinit 308 308 0 0.0
.init 408 408 0 0.0
.init_array 144 144 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 99724 99724 0 0.0
.romdata 3224 3224 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 286 286 0 0.0
.stack 2048 2048 0 0.0
.strtab 602219 602219 0 0.0
.symtab 178480 178480 0 0.0
.tcm_data 692 692 0 0.0
.tcmcode 278 278 0 0.0
.text 0 0 0 0.0
955922 955922 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 738075 738075 0 0.0
(read/write) 166444 166444 0 0.0
.bss 88860 88860 0 0.0
.data 3420 3420 0 0.0
.rodata 84383 84383 0 0.0
.text 653300 653300 0 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 758379 758379 0 0.0
(read/write) 176700 176700 0 0.0
.bss 99084 99084 0 0.0
.data 3436 3436 0 0.0
.rodata 80087 80087 0 0.0
.text 677904 677904 0 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 745867 745867 0 0.0
(read/write) 171172 171172 0 0.0
.bss 93556 93556 0 0.0
.data 3436 3436 0 0.0
.rodata 106111 106111 0 0.0
.text 639368 639368 0 0.0
pump-app LP_EM_CC1354P10_6 (read only) 696259 696259 0 0.0
(read/write) 165536 165536 0 0.0
.bss 87728 87728 0 0.0
.data 3408 3408 0 0.0
.rodata 80271 80271 0 0.0
.text 615596 615596 0 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 681843 681843 0 0.0
(read/write) 165676 165676 0 0.0
.bss 87872 87872 0 0.0
.data 3404 3404 0 0.0
.rodata 76103 76103 0 0.0
.text 605348 605348 0 0.0
cc32xx lock CC3235SF_LAUNCHXL (blank) 0 0 0 0.0
(read only) 619522 619522 0 0.0
(read/write) 206900 206900 0 0.0
.ARM.attributes 44 44 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 200344 200344 0 0.0
.comment 206 206 0 0.0
.data 1436 1436 0 0.0
.debug_abbrev 931803 931803 0 0.0
.debug_aranges 107496 107496 0 0.0
.debug_frame 363368 363368 0 0.0
.debug_info 20866486 20866486 0 0.0
.debug_line 2773001 2773001 0 0.0
.debug_line_str 513 513 0 0.0
.debug_loc 33340 33340 0 0.0
.debug_loclists 1573529 1573529 0 0.0
.debug_ranges 4984 4984 0 0.0
.debug_rnglists 101428 101428 0 0.0
.debug_str 3386959 3386959 0 0.0
.ramVecs 780 780 0 0.0
.resetVecs 64 64 0 0.0
.rodata 106290 106290 0 0.0
.shstrtab 265 265 0 0.0
.stack 2048 2048 0 0.0
.strtab 511040 511040 0 0.0
.symtab 296912 296912 0 0.0
.text 511112 511112 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 555295 555295 0 0.0
.app_xip_area 446489 446489 0 0.0
.bss 63776 63776 0 0.0
.data 660 660 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 540191 540191 0 0.0
.app_xip_area 426593 426593 0 0.0
.bss 68544 68544 0 0.0
.data 688 688 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 575327 575327 0 0.0
.app_xip_area 467857 467857 0 0.0
.bss 62512 62512 0 0.0
.data 588 588 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 559207 559207 0 0.0
.app_xip_area 448641 448641 0 0.0
.bss 65512 65512 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
k32w contact k32w0+release (read only) 590556 590556 0 0.0
(read/write) 87508 87508 0 0.0
.bss 70760 70760 0 0.0
.data 2124 2124 0 0.0
.text 590020 590020 0 0.0
light k32w0+release (read only) 590348 590348 0 0.0
(read/write) 87184 87184 0 0.0
.bss 70448 70448 0 0.0
.data 2112 2112 0 0.0
.text 589812 589812 0 0.0
lock k32w0+release (read only) 561628 561628 0 0.0
(read/write) 85016 85016 0 0.0
.bss 68336 68336 0 0.0
.data 2056 2056 0 0.0
.text 561092 561092 0 0.0
linux chip-tool-ipv6only arm64 (read only) 10217028 10217028 0 0.0
(read/write) 505544 505544 0 0.0
.bss 103048 103048 0 0.0
.data 4288 4288 0 0.0
.data.rel.ro 374376 374376 0 0.0
.dynamic 512 512 0 0.0
.got 18376 18376 0 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 316048 316048 0 0.0
.text 9134712 9134712 0 0.0
thermostat-no-ble arm64 (read only) 4366428 4366428 0 0.0
(read/write) 242008 242008 0 0.0
.bss 122184 122184 0 0.0
.data 2792 2792 0 0.0
.data.rel.ro 100672 100672 0 0.0
.dynamic 512 512 0 0.0
.got 11904 11904 0 0.0
.init 24 24 0 0.0
.init_array 424 424 0 0.0
.rodata 161052 161052 0 0.0
.text 3870584 3870584 0 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2523592 2523592 0 0.0
.bss 219064 219064 0 0.0
.data 5128 5128 0 0.0
.text 1486276 1486276 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1242876 1242876 0 0.0
bss 155134 155134 0 0.0
rodata 143040 143040 0 0.0
text 865768 865768 0 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1361456 1361456 0 0.0
bss 140544 140544 0 0.0
rodata 137020 137020 0 0.0
text 793216 793216 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1165236 1165236 0 0.0
bss 154564 154564 0 0.0
rodata 113768 113768 0 0.0
text 817940 817940 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 837512 837512 0 0.0
(read/write) 1798516 1798516 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 193300 193300 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2528 2528 0 0.0
.debug_abbrev 1388115 1388115 0 0.0
.debug_aranges 146344 146344 0 0.0
.debug_frame 486696 486696 0 0.0
.debug_info 33101606 33101606 0 0.0
.debug_line 4207637 4207637 0 0.0
.debug_line_str 957 957 0 0.0
.debug_loclists 2314536 2314536 0 0.0
.debug_rnglists 147750 147750 0 0.0
.debug_str 4557229 4557229 0 0.0
.heap 837512 837512 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 864731 864731 0 0.0
.symtab 519440 519440 0 0.0
.text 0 0 0 0.0
1594300 1594300 0 0.0
.zero.table 8 8 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 840168 840168 0 0.0
(read/write) 1685628 1685628 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 190708 190708 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2464 2464 0 0.0
.debug_abbrev 1256792 1256792 0 0.0
.debug_aranges 136000 136000 0 0.0
.debug_frame 457584 457584 0 0.0
.debug_info 28792655 28792655 0 0.0
.debug_line 3914330 3914330 0 0.0
.debug_line_str 981 981 0 0.0
.debug_loclists 2129629 2129629 0 0.0
.debug_rnglists 136895 136895 0 0.0
.debug_str 3942412 3942412 0 0.0
.heap 840168 840168 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 734658 734658 0 0.0
.symtab 472672 472672 0 0.0
.text 1484068 1484068 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 846496 846496 0 0.0
(read/write) 1611268 1611268 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184492 184492 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2352 2352 0 0.0
.debug_abbrev 1097743 1097743 0 0.0
.debug_aranges 126064 126064 0 0.0
.debug_frame 420516 420516 0 0.0
.debug_info 23914633 23914633 0 0.0
.debug_line 3489136 3489136 0 0.0
.debug_line_str 942 942 0 0.0
.debug_loclists 1966354 1966354 0 0.0
.debug_rnglists 126447 126447 0 0.0
.debug_str 3749506 3749506 0 0.0
.heap 846496 846496 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 649850 649850 0 0.0
.symtab 434912 434912 0 0.0
.text 1416036 1416036 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 819232 819232 0 0.0
(read/write) 1642644 1642644 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 211740 211740 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2368 2368 0 0.0
.debug_abbrev 1089933 1089933 0 0.0
.debug_aranges 124696 124696 0 0.0
.debug_frame 415540 415540 0 0.0
.debug_info 23718035 23718035 0 0.0
.debug_line 3439762 3439762 0 0.0
.debug_line_str 933 933 0 0.0
.debug_loclists 1941919 1941919 0 0.0
.debug_rnglists 124388 124388 0 0.0
.debug_str 3711500 3711500 0 0.0
.heap 819232 819232 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 622780 622780 0 0.0
.symtab 426080 426080 0 0.0
.text 1420148 1420148 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1178424 1178424 0 0.0
.bss 100616 100616 0 0.0
.data 740 740 0 0.0
.text 625264 625264 0 0.0
lock-app qpg6105+debug (read/write) 1134656 1134656 0 0.0
.bss 95320 95320 0 0.0
.data 744 744 0 0.0
.text 581500 581500 0 0.0

* Rename old chip_test_suite template to chip_test_suite_using_nltest

It will be removed in the future, when it's no longer needed.

* Make new chip_test_suite template, using pw_test instead of chip_test

* Rename a few GN targets to be consistent with pigweed

Make them end with `.lib` or `.run` instead of `_lib` or `_run`.
@github-actions
Copy link

github-actions bot commented Sep 26, 2023

PR #29342: Size comparison from fdb296e to afd6371

Full report (65 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
platform target config section fdb296e afd6371 change % change
bl602 lighting-app bl602 (read/write) 1390858 1390858 0 0.0
.bss 88176 88176 0 0.0
.data 9368 9368 0 0.0
.text 1067060 1067060 0 0.0
bl602+mfd (read/write) 1404746 1404746 0 0.0
.bss 88344 88344 0 0.0
.data 9344 9344 0 0.0
.text 1081846 1081846 0 0.0
bl602+rpc (read/write) 1438030 1438030 0 0.0
.bss 96200 96200 0 0.0
.data 9728 9728 0 0.0
.text 1098796 1098796 0 0.0
bl702 lighting-app bl702 (read only) 3358 3358 0 0.0
(read/write) 1194419 1194419 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 30865 30865 0 0.0
.bss_psram 65776 65776 0 0.0
.comment 48 48 0 0.0
.data 3568 3568 0 0.0
.debug_abbrev 1544413 1544413 0 0.0
.debug_aranges 138400 138400 0 0.0
.debug_frame 508104 508104 0 0.0
.debug_info 41914538 41914538 0 0.0
.debug_line 5428241 5428241 0 0.0
.debug_loc 3523714 3523714 0 0.0
.debug_ranges 376904 376904 0 0.0
.debug_str 3965963 3965963 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 106804 106804 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 596765 596765 0 0.0
.symtab 177248 177248 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
961356 961356 0 0.0
bl702+mfd (read only) 3358 3358 0 0.0
(read/write) 1204979 1204979 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 31041 31041 0 0.0
.bss_psram 65776 65776 0 0.0
.comment 48 48 0 0.0
.data 3544 3544 0 0.0
.debug_abbrev 1546486 1546486 0 0.0
.debug_aranges 139568 139568 0 0.0
.debug_frame 513176 513176 0 0.0
.debug_info 41955137 41955137 0 0.0
.debug_line 5467628 5467628 0 0.0
.debug_loc 3562145 3562145 0 0.0
.debug_ranges 378904 378904 0 0.0
.debug_str 3971494 3971494 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 144 144 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 105744 105744 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 600525 600525 0 0.0
.symtab 179008 179008 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
972854 972854 0 0.0
bl702+rpc (read only) 3358 3358 0 0.0
(read/write) 1292975 1292975 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 39333 39333 0 0.0
.bss_psram 65760 65760 0 0.0
.comment 48 48 0 0.0
.data 4088 4088 0 0.0
.debug_abbrev 1725307 1725307 0 0.0
.debug_aranges 147120 147120 0 0.0
.debug_frame 537448 537448 0 0.0
.debug_info 47064790 47064790 0 0.0
.debug_line 5846325 5846325 0 0.0
.debug_loc 3730699 3730699 0 0.0
.debug_ranges 404456 404456 0 0.0
.debug_str 4394032 4394032 0 0.0
.hbn 544 544 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 160 160 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 121868 121868 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 661506 661506 0 0.0
.symtab 196576 196576 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3358 3358 0 0.0
.text 0 0 0 0.0
1035346 1035346 0 0.0
bl706-eth (read/write) 1043499 1043499 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 29978 29978 0 0.0
.bss_psram 97719 97719 0 0.0
.comment 48 48 0 0.0
.data 3248 3248 0 0.0
.debug_abbrev 1079641 1079641 0 0.0
.debug_aranges 115408 115408 0 0.0
.debug_frame 427504 427504 0 0.0
.debug_info 22664278 22664278 0 0.0
.debug_line 4360080 4360080 0 0.0
.debug_loc 3032658 3032658 0 0.0
.debug_ranges 312712 312712 0 0.0
.debug_str 3545182 3545182 0 0.0
.hbn 184 184 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 152 152 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 96504 96504 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 465060 465060 0 0.0
.symtab 139936 139936 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3338 3338 0 0.0
.text 0 0 0 0.0
787362 787362 0 0.0
bl706-wifi (read only) 3870 3870 0 0.0
(read/write) 1207142 1207142 0 0.0
.bleromro 6342 6342 0 0.0
.bleromrw 124 124 0 0.0
.boot2 328 328 0 0.0
.bss 14569 14569 0 0.0
.bss_psram 98487 98487 0 0.0
.comment 48 48 0 0.0
.data 3560 3560 0 0.0
.debug_abbrev 1173210 1173210 0 0.0
.debug_aranges 119584 119584 0 0.0
.debug_frame 620056 620056 0 0.0
.debug_info 23836797 23836797 0 0.0
.debug_line 4604877 4604877 0 0.0
.debug_loc 3132513 3132513 0 0.0
.debug_ranges 322528 322528 0 0.0
.debug_str 3617473 3617473 0 0.0
.hbn 468 468 0 0.0
.hbn_noinit 260 260 0 0.0
.init 342 342 0 0.0
.init_array 156 156 0 0.0
.ocram_bss 8416 8416 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 109632 109632 0 0.0
.rsvd 4 4 0 0.0
.shstrtab 297 297 0 0.0
.stack 2048 2048 0 0.0
.strtab 505787 505787 0 0.0
.symtab 152800 152800 0 0.0
.tcm_data 28 28 0 0.0
.tcmcode 3870 3870 0 0.0
.text 0 0 0 0.0
954410 954410 0 0.0
bl702l lighting-app bl702l (read only) 278 278 0 0.0
(read/write) 1157540 1157540 0 0.0
.boot2 292 292 0 0.0
.bss 20324 20324 0 0.0
.bss_psram 77216 77216 0 0.0
.comment 48 48 0 0.0
.data 4512 4512 0 0.0
.debug_abbrev 1538701 1538701 0 0.0
.debug_aranges 133264 133264 0 0.0
.debug_frame 488744 488744 0 0.0
.debug_info 41372535 41372535 0 0.0
.debug_line 5331373 5331373 0 0.0
.debug_loc 3467970 3467970 0 0.0
.debug_ranges 383440 383440 0 0.0
.debug_str 3990558 3990558 0 0.0
.hbn 3244 3244 0 0.0
.hbn_noinit 308 308 0 0.0
.init 408 408 0 0.0
.init_array 144 144 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 100784 100784 0 0.0
.romdata 3224 3224 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 286 286 0 0.0
.stack 2048 2048 0 0.0
.strtab 598391 598391 0 0.0
.symtab 176688 176688 0 0.0
.tcm_data 692 692 0 0.0
.tcmcode 278 278 0 0.0
.text 0 0 0 0.0
944158 944158 0 0.0
bl702l+mfd (read only) 278 278 0 0.0
(read/write) 1168396 1168396 0 0.0
.boot2 292 292 0 0.0
.bss 20500 20500 0 0.0
.bss_psram 77216 77216 0 0.0
.comment 48 48 0 0.0
.data 4488 4488 0 0.0
.debug_abbrev 1540789 1540789 0 0.0
.debug_aranges 134432 134432 0 0.0
.debug_frame 493812 493812 0 0.0
.debug_info 41415177 41415177 0 0.0
.debug_line 5370637 5370637 0 0.0
.debug_loc 3506401 3506401 0 0.0
.debug_ranges 385440 385440 0 0.0
.debug_str 3996079 3996079 0 0.0
.hbn 3244 3244 0 0.0
.hbn_noinit 308 308 0 0.0
.init 408 408 0 0.0
.init_array 144 144 0 0.0
.riscv.attributes 47 47 0 0.0
.rodata 99724 99724 0 0.0
.romdata 3224 3224 0 0.0
.rsvd 4 4 0 0.0
.sha_ocram 72 72 0 0.0
.shstrtab 286 286 0 0.0
.stack 2048 2048 0 0.0
.strtab 602219 602219 0 0.0
.symtab 178480 178480 0 0.0
.tcm_data 692 692 0 0.0
.tcmcode 278 278 0 0.0
.text 0 0 0 0.0
955922 955922 0 0.0
cc13x4_26x4 lighting-app LP_EM_CC1354P10_6 (read only) 738075 738075 0 0.0
(read/write) 166444 166444 0 0.0
.bss 88860 88860 0 0.0
.data 3420 3420 0 0.0
.rodata 84383 84383 0 0.0
.text 653300 653300 0 0.0
lock-ftd LP_EM_CC1354P10_6 (read only) 758379 758379 0 0.0
(read/write) 176700 176700 0 0.0
.bss 99084 99084 0 0.0
.data 3436 3436 0 0.0
.rodata 80087 80087 0 0.0
.text 677904 677904 0 0.0
lock-mtd LP_EM_CC1354P10_6 (read only) 745867 745867 0 0.0
(read/write) 171172 171172 0 0.0
.bss 93556 93556 0 0.0
.data 3436 3436 0 0.0
.rodata 106111 106111 0 0.0
.text 639368 639368 0 0.0
pump-app LP_EM_CC1354P10_6 (read only) 696259 696259 0 0.0
(read/write) 165536 165536 0 0.0
.bss 87728 87728 0 0.0
.data 3408 3408 0 0.0
.rodata 80271 80271 0 0.0
.text 615596 615596 0 0.0
pump-controller-app LP_EM_CC1354P10_6 (read only) 681843 681843 0 0.0
(read/write) 165676 165676 0 0.0
.bss 87872 87872 0 0.0
.data 3404 3404 0 0.0
.rodata 76103 76103 0 0.0
.text 605348 605348 0 0.0
cc32xx lock CC3235SF_LAUNCHXL (blank) 0 0 0 0.0
(read only) 619522 619522 0 0.0
(read/write) 206900 206900 0 0.0
.ARM.attributes 44 44 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 200344 200344 0 0.0
.comment 206 206 0 0.0
.data 1436 1436 0 0.0
.debug_abbrev 931803 931803 0 0.0
.debug_aranges 107496 107496 0 0.0
.debug_frame 363368 363368 0 0.0
.debug_info 20866486 20866486 0 0.0
.debug_line 2773001 2773001 0 0.0
.debug_line_str 513 513 0 0.0
.debug_loc 33340 33340 0 0.0
.debug_loclists 1573529 1573529 0 0.0
.debug_ranges 4984 4984 0 0.0
.debug_rnglists 101428 101428 0 0.0
.debug_str 3386959 3386959 0 0.0
.ramVecs 780 780 0 0.0
.resetVecs 64 64 0 0.0
.rodata 106290 106290 0 0.0
.shstrtab 265 265 0 0.0
.stack 2048 2048 0 0.0
.strtab 511040 511040 0 0.0
.symtab 296912 296912 0 0.0
.text 511112 511112 0 0.0
cyw30739 light cyw930739m2evb_01 (read/write) 555295 555295 0 0.0
.app_xip_area 446489 446489 0 0.0
.bss 63776 63776 0 0.0
.data 660 660 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
lock cyw930739m2evb_01 (read/write) 540191 540191 0 0.0
.app_xip_area 426593 426593 0 0.0
.bss 68544 68544 0 0.0
.data 688 688 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
ota-requestor cyw930739m2evb_01 (read/write) 575327 575327 0 0.0
.app_xip_area 467857 467857 0 0.0
.bss 62512 62512 0 0.0
.data 588 588 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
switch cyw930739m2evb_01 (read/write) 559207 559207 0 0.0
.app_xip_area 448641 448641 0 0.0
.bss 65512 65512 0 0.0
.data 684 684 0 0.0
.rodata 0 0 0 0.0
.text 112 112 0 0.0
esp32 all-clusters-app c3devkit (read only) 1177400 1177400 0 0.0
(read/write) 1702372 1702372 0 0.0
.dram0.bss 77640 77640 0 0.0
.dram0.data 13060 13060 0 0.0
.flash.rodata 268744 268744 0 0.0
.flash.text 1177400 1177400 0 0.0
.iram0.text 75244 75244 0 0.0
m5stack (read only) 1218815 1218815 0 0.0
(read/write) 552066 552066 0 0.0
.dram0.bss 84288 84288 0 0.0
.dram0.data 34020 34020 0 0.0
.flash.rodata 300140 300140 0 0.0
.flash.text 1213431 1213431 0 0.0
.iram0.text 123287 123287 0 0.0
k32w contact k32w0+release (read only) 590556 590556 0 0.0
(read/write) 87508 87508 0 0.0
.bss 70760 70760 0 0.0
.data 2124 2124 0 0.0
.text 590020 590020 0 0.0
light k32w0+release (read only) 590348 590348 0 0.0
(read/write) 87184 87184 0 0.0
.bss 70448 70448 0 0.0
.data 2112 2112 0 0.0
.text 589812 589812 0 0.0
lock k32w0+release (read only) 561628 561628 0 0.0
(read/write) 85016 85016 0 0.0
.bss 68336 68336 0 0.0
.data 2056 2056 0 0.0
.text 561092 561092 0 0.0
linux all-clusters-app debug (read only) 5655361 5655361 0 0.0
(read/write) 420984 420984 0 0.0
.bss 130448 130448 0 0.0
.data 3840 3840 0 0.0
.data.rel.ro 279328 279328 0 0.0
.dynamic 624 624 0 0.0
.got 5384 5384 0 0.0
.init 27 27 0 0.0
.init_array 1344 1344 0 0.0
.rodata 336876 336876 0 0.0
.text 4936419 4936419 0 0.0
all-clusters-minimal-app debug (read only) 4928841 4928841 0 0.0
(read/write) 232624 232624 0 0.0
.bss 126480 126480 0 0.0
.data 3744 3744 0 0.0
.data.rel.ro 95280 95280 0 0.0
.dynamic 624 624 0 0.0
.got 5344 5344 0 0.0
.init 27 27 0 0.0
.init_array 1144 1144 0 0.0
.rodata 270621 270621 0 0.0
.text 4427107 4427107 0 0.0
bridge-app debug (read only) 2772553 2772553 0 0.0
(read/write) 133200 133200 0 0.0
.bss 51736 51736 0 0.0
.data 3696 3696 0 0.0
.data.rel.ro 71648 71648 0 0.0
.dynamic 624 624 0 0.0
.got 4640 4640 0 0.0
.init 27 27 0 0.0
.init_array 816 816 0 0.0
.rodata 213280 213280 0 0.0
.text 2381507 2381507 0 0.0
chip-tool debug (read only) 10353257 10353257 0 0.0
(read/write) 443032 443032 0 0.0
.bss 93688 93688 0 0.0
.data 4962 4962 0 0.0
.data.rel.ro 337136 337136 0 0.0
.dynamic 624 624 0 0.0
.got 5808 5808 0 0.0
.init 27 27 0 0.0
.init_array 760 760 0 0.0
.rodata 387249 387249 0 0.0
.text 9368963 9368963 0 0.0
chip-tool-ipv6only arm64 (read only) 10217028 10217028 0 0.0
(read/write) 505544 505544 0 0.0
.bss 103048 103048 0 0.0
.data 4288 4288 0 0.0
.data.rel.ro 374376 374376 0 0.0
.dynamic 512 512 0 0.0
.got 18376 18376 0 0.0
.init 24 24 0 0.0
.init_array 248 248 0 0.0
.rodata 316048 316048 0 0.0
.text 9134712 9134712 0 0.0
lighting-app debug+rpc+ui (read only) 5254833 5254833 0 0.0
(read/write) 222792 222792 0 0.0
.bss 118160 118160 0 0.0
.data 4400 4400 0 0.0
.data.rel.ro 92640 92640 0 0.0
.dynamic 672 672 0 0.0
.got 5928 5928 0 0.0
.init 27 27 0 0.0
.init_array 944 944 0 0.0
.rodata 336468 336468 0 0.0
.text 4675571 4675571 0 0.0
lock-app debug (read only) 4478641 4478641 0 0.0
(read/write) 203128 203128 0 0.0
.bss 113424 113424 0 0.0
.data 3632 3632 0 0.0
.data.rel.ro 79288 79288 0 0.0
.dynamic 624 624 0 0.0
.got 5264 5264 0 0.0
.init 27 27 0 0.0
.init_array 864 864 0 0.0
.rodata 246973 246973 0 0.0
.text 4022051 4022051 0 0.0
ota-provider-app debug (read only) 4130529 4130529 0 0.0
(read/write) 192032 192032 0 0.0
.bss 113568 113568 0 0.0
.data 3904 3904 0 0.0
.data.rel.ro 68656 68656 0 0.0
.dynamic 624 624 0 0.0
.got 4544 4544 0 0.0
.init 27 27 0 0.0
.init_array 728 728 0 0.0
.rodata 200093 200093 0 0.0
.text 3739875 3739875 0 0.0
ota-requestor-app debug (read only) 4223721 4223721 0 0.0
(read/write) 196280 196280 0 0.0
.bss 114592 114592 0 0.0
.data 4144 4144 0 0.0
.data.rel.ro 71632 71632 0 0.0
.dynamic 624 624 0 0.0
.got 4480 4480 0 0.0
.init 27 27 0 0.0
.init_array 784 784 0 0.0
.rodata 203389 203389 0 0.0
.text 3825443 3825443 0 0.0
shell debug (read only) 3055577 3055577 0 0.0
(read/write) 153712 153712 0 0.0
.bss 61000 61000 0 0.0
.data 784 784 0 0.0
.data.rel.ro 86008 86008 0 0.0
.dynamic 592 592 0 0.0
.got 4112 4112 0 0.0
.init 27 27 0 0.0
.init_array 1184 1184 0 0.0
.rodata 212576 212576 0 0.0
.text 2668338 2668338 0 0.0
thermostat-no-ble arm64 (read only) 4366428 4366428 0 0.0
(read/write) 242008 242008 0 0.0
.bss 122184 122184 0 0.0
.data 2792 2792 0 0.0
.data.rel.ro 100672 100672 0 0.0
.dynamic 512 512 0 0.0
.got 11904 11904 0 0.0
.init 24 24 0 0.0
.init_array 424 424 0 0.0
.rodata 161052 161052 0 0.0
.text 3870584 3870584 0 0.0
tv-app debug (read only) 5322001 5322001 0 0.0
(read/write) 350696 350696 0 0.0
.bss 241888 241888 0 0.0
.data 5008 5008 0 0.0
.data.rel.ro 96384 96384 0 0.0
.dynamic 624 624 0 0.0
.got 5608 5608 0 0.0
.init 27 27 0 0.0
.init_array 1152 1152 0 0.0
.rodata 271213 271213 0 0.0
.text 4806707 4806707 0 0.0
tv-casting-app debug (read only) 8300185 8300185 0 0.0
(read/write) 211744 211744 0 0.0
.bss 54784 54784 0 0.0
.data 2448 2448 0 0.0
.data.rel.ro 147696 147696 0 0.0
.dynamic 624 624 0 0.0
.got 5080 5080 0 0.0
.init 27 27 0 0.0
.init_array 1080 1080 0 0.0
.rodata 337208 337208 0 0.0
.text 7561507 7561507 0 0.0
mbed lock-app-release cy8cproto_062_4343w (read only) 6224 6224 0 0.0
(read/write) 2523592 2523592 0 0.0
.bss 219064 219064 0 0.0
.data 5128 5128 0 0.0
.text 1486276 1486276 0 0.0
nrfconnect all-clusters-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1242876 1242876 0 0.0
bss 155134 155134 0 0.0
rodata 143040 143040 0 0.0
text 865768 865768 0 0.0
nrf7002dk_nrf5340_cpuapp (read only) 4 4 0 0.0
(read/write) 1361456 1361456 0 0.0
bss 140544 140544 0 0.0
rodata 137020 137020 0 0.0
text 793216 793216 0 0.0
all-clusters-minimal-app nrf52840dk_nrf52840 (read only) 4 4 0 0.0
(read/write) 1165236 1165236 0 0.0
bss 154564 154564 0 0.0
rodata 113768 113768 0 0.0
text 817940 817940 0 0.0
psoc6 all-clusters cy8ckit_062s2_43012 (read only) 837512 837512 0 0.0
(read/write) 1798516 1798516 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 193300 193300 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2528 2528 0 0.0
.debug_abbrev 1388115 1388115 0 0.0
.debug_aranges 146344 146344 0 0.0
.debug_frame 486696 486696 0 0.0
.debug_info 33101606 33101606 0 0.0
.debug_line 4207637 4207637 0 0.0
.debug_line_str 957 957 0 0.0
.debug_loclists 2314536 2314536 0 0.0
.debug_rnglists 147750 147750 0 0.0
.debug_str 4557229 4557229 0 0.0
.heap 837512 837512 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 864731 864731 0 0.0
.symtab 519440 519440 0 0.0
.text 1594300 1594300 0 0.0
.zero.table 8 8 0 0.0
text 0 0 0 0.0
all-clusters-minimal cy8ckit_062s2_43012 (read only) 840168 840168 0 0.0
(read/write) 1685628 1685628 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 190708 190708 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2464 2464 0 0.0
.debug_abbrev 1256792 1256792 0 0.0
.debug_aranges 136000 136000 0 0.0
.debug_frame 457584 457584 0 0.0
.debug_info 28792655 28792655 0 0.0
.debug_line 3914330 3914330 0 0.0
.debug_line_str 981 981 0 0.0
.debug_loclists 2129629 2129629 0 0.0
.debug_rnglists 136895 136895 0 0.0
.debug_str 3942412 3942412 0 0.0
.heap 840168 840168 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 734658 734658 0 0.0
.symtab 472672 472672 0 0.0
.text 1484068 1484068 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
light cy8ckit_062s2_43012 (read only) 846496 846496 0 0.0
(read/write) 1611268 1611268 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 184492 184492 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2352 2352 0 0.0
.debug_abbrev 1097743 1097743 0 0.0
.debug_aranges 126064 126064 0 0.0
.debug_frame 420516 420516 0 0.0
.debug_info 23914633 23914633 0 0.0
.debug_line 3489136 3489136 0 0.0
.debug_line_str 942 942 0 0.0
.debug_loclists 1966354 1966354 0 0.0
.debug_rnglists 126447 126447 0 0.0
.debug_str 3749506 3749506 0 0.0
.heap 846496 846496 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 649850 649850 0 0.0
.symtab 434912 434912 0 0.0
.text 1416036 1416036 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
lock cy8ckit_062s2_43012 (read only) 819232 819232 0 0.0
(read/write) 1642644 1642644 0 0.0
.ARM.attributes 46 46 0 0.0
.ARM.exidx 8 8 0 0.0
.bss 211740 211740 0 0.0
.comment 212 212 0 0.0
.copy.table 24 24 0 0.0
.cy_m0p_image 6216 6216 0 0.0
.cy_sharedmem 8 8 0 0.0
.data 2368 2368 0 0.0
.debug_abbrev 1089933 1089933 0 0.0
.debug_aranges 124696 124696 0 0.0
.debug_frame 415540 415540 0 0.0
.debug_info 23718035 23718035 0 0.0
.debug_line 3439762 3439762 0 0.0
.debug_line_str 933 933 0 0.0
.debug_loclists 1941919 1941919 0 0.0
.debug_rnglists 124388 124388 0 0.0
.debug_str 3711500 3711500 0 0.0
.heap 819232 819232 0 0.0
.noinit 148 148 0 0.0
.ramVectors 736 736 0 0.0
.shstrtab 296 296 0 0.0
.stack_dummy 4096 4096 0 0.0
.strtab 622780 622780 0 0.0
.symtab 426080 426080 0 0.0
.text 1420148 1420148 0 0.0
.zero.table 0 0 0 0.0
8 8 0 0.0
qpg lighting-app qpg6105+debug (read/write) 1178424 1178424 0 0.0
.bss 100616 100616 0 0.0
.data 740 740 0 0.0
.text 625264 625264 0 0.0
lock-app qpg6105+debug (read/write) 1134656 1134656 0 0.0
.bss 95320 95320 0 0.0
.data 744 744 0 0.0
.text 581500 581500 0 0.0
telink all-clusters-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 1157296 1157296 0 0.0
bss 113244 113244 0 0.0
text 814458 814458 0 0.0
all-clusters-minimal-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 1089176 1089176 0 0.0
bss 122264 122264 0 0.0
text 762282 762282 0 0.0
bridge-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 942836 942836 0 0.0
bss 106908 106908 0 0.0
text 655912 655912 0 0.0
contact-sensor-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 871160 871160 0 0.0
bss 78144 78144 0 0.0
text 623520 623520 0 0.0
light-switch-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 871608 871608 0 0.0
bss 67056 67056 0 0.0
text 639942 639942 0 0.0
lighting-app-rpc-shell-factory-data tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 995704 995704 0 0.0
bss 109168 109168 0 0.0
text 705074 705074 0 0.0
tlsr9528a (read only) 4 4 0 0.0
(read/write) 1040132 1040132 0 0.0
bss 120916 120916 0 0.0
text 729586 729586 0 0.0
lock-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 927484 927484 0 0.0
bss 78836 78836 0 0.0
text 653050 653050 0 0.0
ota-requestor-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 956452 956452 0 0.0
bss 105008 105008 0 0.0
text 671960 671960 0 0.0
pump-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 874892 874892 0 0.0
bss 78248 78248 0 0.0
text 627562 627562 0 0.0
pump-controller-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 816908 816908 0 0.0
bss 66260 66260 0 0.0
text 593380 593380 0 0.0
resource-monitoring-app tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 832848 832848 0 0.0
bss 66676 66676 0 0.0
text 604232 604232 0 0.0
shell tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 737688 737688 0 0.0
bss 95176 95176 0 0.0
text 483358 483358 0 0.0
smoke_co_alarm-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 873136 873136 0 0.0
bss 78228 78228 0 0.0
text 626428 626428 0 0.0
temperature-measurement-app tlsr9528a (read only) 4 4 0 0.0
(read/write) 858244 858244 0 0.0
bss 77948 77948 0 0.0
text 613686 613686 0 0.0
thermostat tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 838420 838420 0 0.0
bss 66560 66560 0 0.0
text 609160 609160 0 0.0
window-covering tlsr9518adk80d (read only) 4 4 0 0.0
(read/write) 835568 835568 0 0.0
bss 66912 66912 0 0.0
text 605886 605886 0 0.0

@mbknust mbknust marked this pull request as ready for review September 27, 2023 20:33
@mergify
Copy link

mergify bot commented Sep 27, 2023

⚠️ The sha of the head commit of this PR conflicts with #29479. Mergify cannot evaluate rules on this PR. ⚠️

@bzbarsky-apple
Copy link
Contributor

Apparently automatically assigned labels caused everyone to be added as reviewer?

Actually, that just happens for all PRs in this repo. Once a PR is non-draft and passes restyled, pullapprove requests review from various groups, some of them largish,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants