avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-gcc-list] Home of avr-mem.sh?


From: Eric Weddington
Subject: Re: [avr-gcc-list] Home of avr-mem.sh?
Date: Fri, 30 Dec 2005 15:59:10 -0700
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

Eric Weddington wrote:
Joerg Wunsch wrote:

Even for the AVR, I think you should not change default formats.
Other people's scripts could easily stumble across it, as they might
assume the 20+ years historical BSD output format to be the default.


Sure, good point. I'll change that back then.

Thanks for the input.

Ok, attached is the latest avr-size patch for binutils.
- Changed default format back to berkeley
- Added --mcu= option to specify the AVR device. This will allow reporting of percentage of memory used.

This patch now recreates what the avr-mem.sh script does, only now it does it in the toolchain itself using the avr-size program.

I hope that this is useful.

And, oh yes, I will include it in WinAVR, which means a slight change to the WinAVR Makefile Template.

If I've missed anything in the patch, corrections are welcome.

--
Eric Weddington
--- binutils-2.16.1/binutils/size.c     Thu Mar  3 04:46:12 2005
+++ binutils-2.16.1-new/binutils/size.c Fri Dec 30 15:37:13 2005
@@ -33,10 +33,31 @@
 #include "libiberty.h"
 #include "getopt.h"
 
-#ifndef BSD_DEFAULT
-#define BSD_DEFAULT 1
+typedef enum
+{
+    format_sysv = 0,
+    format_bsd = 1,
+    format_avr = 2,
+} format_type_t;
+
+
+/* Set the default format. */
+#define FORMAT_DEFAULT_SYSV 0
+#define FORMAT_DEFAULT_BSD 1
+#define FORMAT_DEFAULT_AVR 0
+
+#if FORMAT_DEFAULT_SYSV
+    #define FORMAT_DEFAULT format_sysv
+    #define FORMAT_NAME "sysv"
+#elif FORMAT_DEFAULT_BSD
+    #define FORMAT_DEFAULT format_bsd
+    #define FORMAT_NAME "berkeley"
+#elif FORMAT_DEFAULT_AVR
+    #define FORMAT_DEFAULT format_avr
+    #define FORMAT_NAME "avr"
 #endif
 
+
 /* Program options.  */
 
 enum
@@ -45,7 +66,8 @@ enum
   }
 radix = decimal;
 
-int berkeley_format = BSD_DEFAULT;     /* 0 means use AT&T-style output.  */
+
+format_type_t format = FORMAT_DEFAULT;
 int show_version = 0;
 int show_help = 0;
 int show_totals = 0;
@@ -57,6 +79,121 @@ static bfd_size_type total_textsize;
 /* Program exit status.  */
 int return_code = 0;
 
+
+/* AVR Size specific stuff */
+
+#define AVR64 64UL
+#define AVR128 128UL
+#define AVR256 256UL
+#define AVR512 512UL
+#define AVR1K 1024UL
+#define AVR2K 2048UL
+#define AVR4K 4096UL
+#define AVR8K 8192UL
+#define AVR16K 16384UL
+#define AVR24K 24576UL
+#define AVR32K 32768UL
+#define AVR64K 65536UL
+#define AVR128K 131072UL
+#define AVR256K 262144UL
+
+typedef struct
+{
+    char *name;
+       long flash;
+       long ram;
+       long eeprom;
+} avr_device_t;
+
+#define AVR_MAX 72
+avr_device_t avr[AVR_MAX] =
+{
+       {"atmega2560", AVR256K, AVR8K,  AVR4K},
+       {"atmega2561", AVR256K, AVR8K,  AVR4K},
+       
+       {"at43usb320", AVR128K, 608,    0},
+       {"at90can128", AVR128K, AVR4K,  AVR4K},
+       {"atmega128",  AVR128K, AVR4K,  AVR4K},
+       {"atmega1280", AVR128K, AVR8K,  AVR4K},
+       {"atmega1281", AVR128K, AVR8K,  AVR4K},
+       {"atmega103",  AVR128K, 4000,   AVR4K},
+       
+       {"at90can64",  AVR64K,  AVR4K,  AVR2K},
+       {"atmega603",  AVR64K,  AVR4K,  AVR2K},
+       {"atmega64",   AVR64K,  AVR4K,  AVR2K},
+       {"atmega640",  AVR64K,  AVR8K,  AVR4K},
+       {"atmega644",  AVR64K,  AVR4K,  AVR2K},
+       {"atmega645",  AVR64K,  AVR4K,  AVR2K},
+       {"atmega6450", AVR64K,  AVR4K,  AVR2K},
+       {"atmega649",  AVR64K,  AVR4K,  AVR2K},
+       {"atmega6490", AVR64K,  AVR4K,  AVR2K},
+       
+       {"at90can32",  AVR32K,  AVR2K,  AVR1K},
+       {"at94k",      AVR32K,  AVR4K,  0},
+       {"atmega32",   AVR32K,  AVR2K,  AVR1K},
+       {"atmega323",  AVR32K,  AVR2K,  AVR1K},
+       {"atmega324",  AVR32K,  AVR2K,  AVR1K},
+       {"atmega325",  AVR32K,  AVR2K,  AVR1K},
+       {"atmega3250", AVR32K,  AVR2K,  AVR1K},
+       {"atmega329",  AVR32K,  AVR2K,  AVR1K},
+       {"atmega3290", AVR32K,  AVR2K,  AVR1K},
+       
+       {"at43usb355", AVR24K,  1120,   0},
+       
+       {"at76c711",   AVR16K,  AVR2K,  0},
+       {"atmega16",   AVR16K,  AVR1K,  AVR512},
+       {"atmega161",  AVR16K,  AVR1K,  AVR512},
+       {"atmega162",  AVR16K,  AVR1K,  AVR512},
+       {"atmega163",  AVR16K,  AVR1K,  AVR512},
+       {"atmega164",  AVR16K,  AVR1K,  AVR512},
+       {"atmega165",  AVR16K,  AVR1K,  AVR512},
+       {"atmega168",  AVR16K,  AVR1K,  AVR512},
+       {"atmega169",  AVR16K,  AVR1K,  AVR512},
+       
+       {"at90c8534",  AVR8K,   352,    AVR512},
+       {"at90pwm2",   AVR8K,   AVR512, AVR512},
+       {"at90pwm3",   AVR8K,   AVR512, AVR512},
+       {"at90s8515",  AVR8K,   AVR512, AVR512},
+       {"at90s8535",  AVR8K,   AVR512, AVR512},
+       {"atmega8",    AVR8K,   AVR1K,  AVR512},
+       {"atmega83",   AVR8K,   AVR1K,  AVR512},
+       {"atmega85",   AVR8K,   AVR1K,  AVR512},
+       {"attiny84",   AVR8K,   AVR512, AVR512},
+       {"attiny85",   AVR8K,   AVR512, AVR512},
+       {"atmega8515", AVR8K,   AVR512, AVR512},
+       {"atmega8535", AVR8K,   AVR512, AVR512},
+       {"atmega88",   AVR8K,   AVR1K,  AVR512},
+       
+       {"at90s4414",  AVR4K,   352,    AVR256},
+       {"at90s4433",  AVR4K,   AVR128, AVR256},
+       {"at90s4434",  AVR4K,   352,    AVR256},
+       {"attiny44",   AVR4K,   AVR256, AVR256},
+       {"attiny45",   AVR4K,   AVR256, AVR256},
+       {"atmega48",   AVR4K,   AVR512, AVR256},
+       
+       {"at86rf401",  AVR2K,   224,    AVR128},
+       {"at90s2313",  AVR2K,   AVR128, AVR128},
+       {"at90s2323",  AVR2K,   AVR128, AVR128},
+       {"at90s2333",  AVR2K,   224,    AVR128},
+       {"at90s2343",  AVR2K,   AVR128, AVR128},
+       {"attiny22",   AVR2K,   224,    AVR128},
+       {"attiny2313", AVR2K,   AVR128, AVR128},
+       {"attiny24",   AVR2K,   AVR128, AVR128},
+       {"attiny25",   AVR2K,   AVR128, AVR128},
+       {"attiny26",   AVR2K,   AVR128, AVR128},
+       {"attiny28",   AVR2K,   0,      0},
+       
+       {"at90s1200",  AVR1K,   0,      AVR64},
+       {"attiny10",   AVR1K,   0,      AVR64},
+       {"attiny11",   AVR1K,   0,      AVR64},
+       {"attiny12",   AVR1K,   0,      AVR64},
+       {"attiny13",   AVR1K,   AVR64,  AVR64},
+       {"attiny15",   AVR1K,   0,      AVR64},
+};
+
+static char *avrmcu = NULL;
+
+
 static char *target = NULL;
 
 /* Static declarations.  */
@@ -81,18 +218,15 @@ usage (FILE *stream, int status)
   fprintf (stream, _(" Displays the sizes of sections inside binary files\n"));
   fprintf (stream, _(" If no input file(s) are specified, a.out is 
assumed\n"));
   fprintf (stream, _(" The options are:\n\
-  -A|-B     --format={sysv|berkeley}  Select output style (default is %s)\n\
+  -A|-B|-C  --format={sysv|berkeley|avr}  Select output style (default is 
%s)\n\
+            --mcu=<avrmcu>            MCU name for AVR format only\n\
   -o|-d|-x  --radix={8|10|16}         Display numbers in octal, decimal or 
hex\n\
   -t        --totals                  Display the total sizes (Berkeley 
only)\n\
             --target=<bfdname>        Set the binary file format\n\
   -h        --help                    Display this information\n\
   -v        --version                 Display the program's version\n\
 \n"),
-#if BSD_DEFAULT
-  "berkeley"
-#else
-  "sysv"
-#endif
+FORMAT_NAME
 );
   list_supported_targets (program_name, stream);
   if (status == 0)
@@ -105,6 +239,7 @@ struct option long_options[] =
   {"format", required_argument, 0, 200},
   {"radix", required_argument, 0, 201},
   {"target", required_argument, 0, 202},
+  {"mcu", required_argument, 0, 203},
   {"totals", no_argument, &show_totals, 1},
   {"version", no_argument, &show_version, 1},
   {"help", no_argument, &show_help, 1},
@@ -134,7 +269,7 @@ main (int argc, char **argv)
   bfd_init ();
   set_default_bfd_target ();
 
-  while ((c = getopt_long (argc, argv, "ABHhVvdfotx", long_options,
+  while ((c = getopt_long (argc, argv, "ABCHhVvdfotx", long_options,
                           (int *) 0)) != EOF)
     switch (c)
       {
@@ -143,11 +278,15 @@ main (int argc, char **argv)
          {
          case 'B':
          case 'b':
-           berkeley_format = 1;
+           format = format_bsd;
            break;
          case 'S':
          case 's':
-           berkeley_format = 0;
+           format = format_sysv;
+           break;
+         case 'A':
+         case 'a':
+           format = format_avr;
            break;
          default:
            non_fatal (_("invalid argument to --format: %s"), optarg);
@@ -155,6 +294,10 @@ main (int argc, char **argv)
          }
        break;
 
+      case 203:                /* --mcu */
+       avrmcu = optarg;
+       break;
+
       case 202:                /* --target */
        target = optarg;
        break;
@@ -183,11 +326,14 @@ main (int argc, char **argv)
        break;
 
       case 'A':
-       berkeley_format = 0;
+       format = format_sysv;
        break;
       case 'B':
-       berkeley_format = 1;
+       format = format_bsd;
        break;
+      case 'C':
+    format = format_avr;
+    break;
       case 'v':
       case 'V':
        show_version = 1;
@@ -233,7 +379,7 @@ main (int argc, char **argv)
     for (; optind < argc;)
       display_file (argv[optind++]);
 
-  if (show_totals && berkeley_format)
+  if (show_totals && format == format_bsd)
     {
       bfd_size_type total = total_textsize + total_datasize + total_bsssize;
 
@@ -537,11 +683,115 @@ print_sysv_format (bfd *file)
   printf ("\n\n");
 }
 
+
+static avr_device_t *
+avr_find_device (void)
+{
+  int i;
+  if (avrmcu != NULL)
+  {
+    for (i = 0; i < AVR_MAX; i++)
+    {
+      if (strcmp(avr[i].name, avrmcu) == 0)
+      {
+        /* Match found */
+        return (&avr[i]);
+      }
+    }
+  }
+  return (NULL);
+}
+
+
+
+static void
+print_avr_format (bfd *file)
+{
+  char *avr_name = "Unknown";
+  int flashmax = 0;
+  int rammax = 0;
+  int eeprommax = 0;
+  asection *section; 
+  bfd_size_type datasize = 0;
+  bfd_size_type textsize = 0;
+  bfd_size_type bsssize = 0;
+  bfd_size_type bootloadersize = 0;
+  bfd_size_type noinitsize = 0;
+  bfd_size_type eepromsize = 0;
+
+  avr_device_t *avrdevice = avr_find_device();
+  if (avrdevice != NULL)
+  {
+    avr_name = avrdevice->name;
+    flashmax = avrdevice->flash;
+    rammax = avrdevice->ram;
+    eeprommax = avrdevice->eeprom;
+  }
+
+  if ((section = bfd_get_section_by_name (file, ".data")) != NULL)
+    datasize = bfd_section_size (file, section);
+  if ((section = bfd_get_section_by_name (file, ".text")) != NULL)
+    textsize = bfd_section_size (file, section);
+  if ((section = bfd_get_section_by_name (file, ".bss")) != NULL)
+    bsssize = bfd_section_size (file, section);
+  if ((section = bfd_get_section_by_name (file, ".bootloader")) != NULL)
+    bootloadersize = bfd_section_size (file, section);
+  if ((section = bfd_get_section_by_name (file, ".noinit")) != NULL)
+    noinitsize = bfd_section_size (file, section);
+  if ((section = bfd_get_section_by_name (file, ".eeprom")) != NULL)
+    eepromsize = bfd_section_size (file, section);
+  
+  bfd_size_type text = textsize + datasize + bootloadersize;
+  bfd_size_type data = datasize + bsssize + noinitsize;
+  bfd_size_type eeprom = eepromsize;
+  
+  printf ("AVR Memory Usage\n"
+          "----------------\n"
+          "Device: %s\n\n", avr_name);
+  
+  /* Text size */
+  printf ("Program:%8ld bytes", text);
+  if (flashmax > 0)
+  {
+    printf (" (%2.1f%% Full)", ((float)text / flashmax) * 100);
+  }
+  printf ("\n(.text + .data + .bootloader)\n\n");
+  
+  /* Data size */
+  printf ("Data:   %8ld bytes", data);
+  if (rammax > 0)
+  {
+    printf (" (%2.1f%% Full)", ((float)data / rammax) * 100);
+  }
+  printf ("\n(.data + .bss + .noinit)\n\n");
+  
+  /* EEPROM size */
+  if (eeprom > 0) 
+  { 
+    printf ("EEPROM: %8ld bytes", eeprom);
+    if (eeprommax > 0)
+    {
+      printf (" (%2.1f%% Full)", ((float)eeprom / eeprommax) * 100);
+    }
+    printf ("\n(.eeprom)\n\n");
+  }
+}
+
+
 static void
 print_sizes (bfd *file)
 {
-  if (berkeley_format)
-    print_berkeley_format (file);
-  else
-    print_sysv_format (file);
+  switch (format)
+  {
+    case format_sysv:
+      print_sysv_format (file);
+      break;
+    case format_bsd:
+      print_berkeley_format (file);
+      break;
+    case format_avr:
+    default:
+      print_avr_format (file);
+      break;
+  }
 }

reply via email to

[Prev in Thread] Current Thread [Next in Thread]