Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Paul Bakker | 6152b02 | 2015-04-14 15:00:09 +0200 | [diff] [blame] | 3 | # Measure heap usage (and performance) of ECC operations with various values of |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 4 | # the relevant tunable compile-time parameters. |
Manuel Pégourié-Gonnard | 8b7d7d6 | 2015-02-05 10:00:30 +0000 | [diff] [blame] | 5 | # |
| 6 | # Usage (preferably on a 32-bit platform): |
| 7 | # cmake -D CMAKE_BUILD_TYPE=Release . |
| 8 | # scripts/ecc-heap.sh | tee ecc-heap.log |
Bence Szépkúti | 700ee44 | 2020-05-26 00:33:31 +0200 | [diff] [blame^] | 9 | # |
| 10 | # Copyright (C) 2014-2015, Arm Limited, All Rights Reserved |
| 11 | # |
| 12 | # This file is part of Mbed TLS (https://tls.mbed.org) |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 13 | |
| 14 | set -eu |
| 15 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 16 | CONFIG_H='include/mbedtls/config.h' |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 17 | |
| 18 | if [ -r $CONFIG_H ]; then :; else |
| 19 | echo "$CONFIG_H not found" >&2 |
| 20 | exit 1 |
| 21 | fi |
| 22 | |
| 23 | if grep -i cmake Makefile >/dev/null; then :; else |
| 24 | echo "Needs Cmake" >&2 |
| 25 | exit 1 |
| 26 | fi |
| 27 | |
| 28 | if git status | grep -F $CONFIG_H >/dev/null 2>&1; then |
| 29 | echo "config.h not clean" >&2 |
| 30 | exit 1 |
| 31 | fi |
| 32 | |
| 33 | CONFIG_BAK=${CONFIG_H}.bak |
| 34 | cp $CONFIG_H $CONFIG_BAK |
| 35 | |
| 36 | cat << EOF >$CONFIG_H |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 37 | #define MBEDTLS_PLATFORM_C |
| 38 | #define MBEDTLS_PLATFORM_MEMORY |
| 39 | #define MBEDTLS_MEMORY_BUFFER_ALLOC_C |
| 40 | #define MBEDTLS_MEMORY_DEBUG |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 41 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 42 | #define MBEDTLS_TIMING_C |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 43 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 44 | #define MBEDTLS_BIGNUM_C |
| 45 | #define MBEDTLS_ECP_C |
| 46 | #define MBEDTLS_ASN1_PARSE_C |
| 47 | #define MBEDTLS_ASN1_WRITE_C |
| 48 | #define MBEDTLS_ECDSA_C |
| 49 | #define MBEDTLS_ECDH_C |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 50 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 51 | #define MBEDTLS_ECP_DP_SECP192R1_ENABLED |
| 52 | #define MBEDTLS_ECP_DP_SECP224R1_ENABLED |
| 53 | #define MBEDTLS_ECP_DP_SECP256R1_ENABLED |
| 54 | #define MBEDTLS_ECP_DP_SECP384R1_ENABLED |
| 55 | #define MBEDTLS_ECP_DP_SECP521R1_ENABLED |
Manuel Pégourié-Gonnard | 0789433 | 2015-06-23 00:18:41 +0200 | [diff] [blame] | 56 | #define MBEDTLS_ECP_DP_CURVE25519_ENABLED |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 57 | |
| 58 | #include "check_config.h" |
| 59 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 60 | //#define MBEDTLS_ECP_WINDOW_SIZE 6 |
| 61 | //#define MBEDTLS_ECP_FIXED_POINT_OPTIM 1 |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 62 | EOF |
| 63 | |
| 64 | for F in 0 1; do |
| 65 | for W in 2 3 4 5 6; do |
Gilles Peskine | 5d46f6a | 2019-07-27 23:52:53 +0200 | [diff] [blame] | 66 | scripts/config.py set MBEDTLS_ECP_WINDOW_SIZE $W |
| 67 | scripts/config.py set MBEDTLS_ECP_FIXED_POINT_OPTIM $F |
Manuel Pégourié-Gonnard | 500de6e | 2014-12-19 18:06:47 +0100 | [diff] [blame] | 68 | make benchmark >/dev/null 2>&1 |
| 69 | echo "fixed point optim = $F, max window size = $W" |
| 70 | echo "--------------------------------------------" |
| 71 | programs/test/benchmark |
| 72 | done |
| 73 | done |
| 74 | |
| 75 | # cleanup |
| 76 | |
| 77 | mv $CONFIG_BAK $CONFIG_H |
| 78 | make clean |