blob: 026e7a84123e13142ebc67b31e9ebc00e540eb0a [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
14# yotta yotta/module/mbedtls/config.h
15# thread configs/config-thread.h
16# suite-b configs/config-suite-b.h
17# psk configs/config-ccm-psk-tls1_2.h
18#
19# Usage: footprint.sh
20#
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020021set -eu
22
23CONFIG_H='include/mbedtls/config.h'
24
25if [ -r $CONFIG_H ]; then :; else
26 echo "$CONFIG_H not found" >&2
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000027 echo "This script needs to be run from the root of" >&2
28 echo "a git checkout or uncompressed tarball" >&2
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020029 exit 1
30fi
31
32if grep -i cmake Makefile >/dev/null; then
33 echo "Not compatible with CMake" >&2
34 exit 1
35fi
36
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000037if which arm-none-eabi-gcc >/dev/null 2>&1; then :; else
38 echo "You need the ARM-GCC toolchain in your path" >&2
39 echo "See https://launchpad.net/gcc-arm-embedded/" >&2
40 exit 1
41fi
42
43ARMGCC_FLAGS='-Os -march=armv7-m -mthumb'
44OUTFILE='00-footprint-summary.txt'
45
46log()
47{
48 echo "$@"
49 echo "$@" >> "$OUTFILE"
50}
51
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020052doit()
53{
54 NAME="$1"
55 FILE="$2"
56
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000057 log ""
58 log "$NAME ($FILE):"
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020059
60 cp $CONFIG_H ${CONFIG_H}.bak
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000061 if [ "$FILE" != $CONFIG_H ]; then
62 cp "$FILE" $CONFIG_H
63 fi
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020064
65 {
66 scripts/config.pl unset MBEDTLS_NET_C || true
67 scripts/config.pl unset MBEDTLS_TIMING_C || true
68 scripts/config.pl unset MBEDTLS_FS_IO || true
SimonBba9dd1e2016-04-03 15:06:52 +010069 scripts/config.pl --force set MBEDTLS_NO_PLATFORM_ENTROPY || true
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +020070 } >/dev/null 2>&1
71
72 CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld \
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +000073 CFLAGS="$ARMGCC_FLAGS" make clean 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
Manuel Pégourié-Gonnard3134ef02015-11-25 10:50:27 +000087log "Footprint of standard configurations (minus net.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é-Gonnardac8673c2015-10-16 13:03:04 +0200104# creates the yotta config
105yotta/create-module.sh >/dev/null
106
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +0000107doit default include/mbedtls/config.h
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +0200108doit yotta yotta/module/mbedtls/config.h
109doit thread configs/config-thread.h
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +0000110doit suite-b configs/config-suite-b.h
Manuel Pégourié-Gonnardac8673c2015-10-16 13:03:04 +0200111doit psk configs/config-ccm-psk-tls1_2.h
Manuel Pégourié-Gonnard4553a6c2015-11-25 10:39:00 +0000112
113zip mbedtls-footprint.zip "$OUTFILE" size-*.txt >/dev/null