blob: c08ef1c9025c64b545f82d51a98753ee1fbf7f2d [file] [log] [blame]
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +02001#!/bin/sh
SimonBba9dd1e2016-04-03 15:06:52 +01002#
3# This file is part of mbed TLS (https://tls.mbed.org)
4#
5# Copyright (c) 2015-2016, ARM Limited, All Rights Reserved
6#
7# Purpose
8#
9# This script determines ROM size (or code size) for the standard mbed TLS
10# configurations, when built for a Cortex M3/M4 target.
11#
12# Configurations included:
13# default include/mbedtls/config.h
SimonBba9dd1e2016-04-03 15:06:52 +010014# thread configs/config-thread.h
15# suite-b configs/config-suite-b.h
16# psk configs/config-ccm-psk-tls1_2.h
17#
18# Usage: footprint.sh
19#
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020020set -eu
21
22CONFIG_H='include/mbedtls/config.h'
23
24if [ -r $CONFIG_H ]; then :; else
25 echo "$CONFIG_H not found" >&2
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000026 echo "This script needs to be run from the root of" >&2
27 echo "a git checkout or uncompressed tarball" >&2
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020028 exit 1
29fi
30
31if grep -i cmake Makefile >/dev/null; then
32 echo "Not compatible with CMake" >&2
33 exit 1
34fi
35
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000036if which arm-none-eabi-gcc >/dev/null 2>&1; then :; else
37 echo "You need the ARM-GCC toolchain in your path" >&2
38 echo "See https://launchpad.net/gcc-arm-embedded/" >&2
39 exit 1
40fi
41
42ARMGCC_FLAGS='-Os -march=armv7-m -mthumb'
43OUTFILE='00-footprint-summary.txt'
44
45log()
46{
47 echo "$@"
48 echo "$@" >> "$OUTFILE"
49}
50
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020051doit()
52{
53 NAME="$1"
54 FILE="$2"
55
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000056 log ""
57 log "$NAME ($FILE):"
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020058
59 cp $CONFIG_H ${CONFIG_H}.bak
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000060 if [ "$FILE" != $CONFIG_H ]; then
61 cp "$FILE" $CONFIG_H
62 fi
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020063
64 {
65 scripts/config.pl unset MBEDTLS_NET_C || true
66 scripts/config.pl unset MBEDTLS_TIMING_C || true
67 scripts/config.pl unset MBEDTLS_FS_IO || true
SimonBba9dd1e2016-04-03 15:06:52 +010068 scripts/config.pl --force set MBEDTLS_NO_PLATFORM_ENTROPY || true
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020069 } >/dev/null 2>&1
70
Andres Amaya Garcia9a5398f2016-09-06 17:15:54 +010071 make clean >/dev/null
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020072 CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld \
Andres Amaya Garcia9a5398f2016-09-06 17:15:54 +010073 CFLAGS="$ARMGCC_FLAGS" make lib >/dev/null
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020074
75 OUT="size-${NAME}.txt"
76 arm-none-eabi-size -t library/libmbed*.a > "$OUT"
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000077 log "$( head -n1 "$OUT" )"
78 log "$( tail -n1 "$OUT" )"
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020079
80 cp ${CONFIG_H}.bak $CONFIG_H
81}
82
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000083# truncate the file just this time
84echo "(generated by $0)" > "$OUTFILE"
85echo "" >> "$OUTFILE"
86
Andres AG788aa4a2016-09-14 14:32:09 +010087log "Footprint of standard configurations (minus net_sockets.c, timing.c, fs_io)"
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000088log "for bare-metal ARM Cortex-M3/M4 microcontrollers."
89
90VERSION_H="include/mbedtls/version.h"
91MBEDTLS_VERSION=$( sed -n 's/.*VERSION_STRING *"\(.*\)"/\1/p' $VERSION_H )
92if git rev-parse HEAD >/dev/null; then
93 GIT_HEAD=$( git rev-parse HEAD | head -c 10 )
Manuel Pégourié-Gonnard3134ef02015-11-25 10:50:27 +000094 GIT_VERSION=" (git head: $GIT_HEAD)"
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000095else
96 GIT_VERSION=""
97fi
98
99log ""
100log "mbed TLS $MBEDTLS_VERSION$GIT_VERSION"
101log "$( arm-none-eabi-gcc --version | head -n1 )"
102log "CFLAGS=$ARMGCC_FLAGS"
103
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +0000104doit default include/mbedtls/config.h
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +0200105doit thread configs/config-thread.h
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +0000106doit suite-b configs/config-suite-b.h
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +0200107doit psk configs/config-ccm-psk-tls1_2.h
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +0000108
109zip mbedtls-footprint.zip "$OUTFILE" size-*.txt >/dev/null