source: rtems/testsuites/sptests/spsize/size.c @ bb9c80df

4.104.115
Last change on this file since bb9c80df was bb9c80df, checked in by Joel Sherrill <joel.sherrill@…>, on 12/15/08 at 19:21:10

2008-12-15 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, spfatal06/testcase.h, spfatal07/testcase.h, spfatal08/testcase.h, spfatal09/testcase.h, spsize/size.c: Eliminate pointers to API configuration tables in the main configuration table. Reference the main configuration table and the API configuration tables directly using the confdefs.h version rather than obtaining a pointer to it. This eliminated some variables, a potential fatal error, some unnecessary default configuration structures. Overall, about a 4.5% reduction in the code size for minimum and hello on the SPARC.
  • spfatal10/.cvsignore, spfatal10/Makefile.am, spfatal10/spfatal10.scn, spfatal10/testcase.h: Removed.
  • Property mode set to 100644
File size: 20.6 KB
RevLine 
[ac7d5ef0]1/*  main
2 *
3 *  This program is run to determine the data space and work space
4 *  requirements of the current version of RTEMS.
5 *
[bb9c80df]6 *  COPYRIGHT (c) 1989-2008.
[ac7d5ef0]7 *  On-Line Applications Research Corporation (OAR).
8 *
[98e4ebf5]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[d2b93bfd]11 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]12 *
[3235ad9]13 *  $Id$
[ac7d5ef0]14 */
15
16#include <rtems/system.h>
17#include <rtems/config.h>
[5e9b32b]18#include <rtems/score/apiext.h>
19#include <rtems/score/copyrt.h>
[3a4ae6c]20#include <rtems/rtems/clock.h>
21#include <rtems/rtems/tasks.h>
22#include <rtems/rtems/dpmem.h>
23#include <rtems/rtems/event.h>
[ac7d5ef0]24#include <rtems/extension.h>
25#include <rtems/fatal.h>
26#include <rtems/init.h>
[5e9b32b]27#include <rtems/score/isr.h>
[3a4ae6c]28#include <rtems/rtems/intr.h>
[ac7d5ef0]29#include <rtems/io.h>
[3a4ae6c]30#include <rtems/rtems/message.h>
[07a3253d]31#if defined(RTEMS_MULTIPROCESSING)
[3a4ae6c]32#include <rtems/rtems/mp.h>
[5e9b32b]33#include <rtems/score/mpci.h>
[07a3253d]34#endif
[3a4ae6c]35#include <rtems/rtems/part.h>
[5e9b32b]36#include <rtems/score/priority.h>
[3a4ae6c]37#include <rtems/rtems/ratemon.h>
38#include <rtems/rtems/region.h>
39#include <rtems/rtems/sem.h>
40#include <rtems/rtems/signal.h>
[5e9b32b]41#include <rtems/score/sysstate.h>
42#include <rtems/score/thread.h>
[3a4ae6c]43#include <rtems/rtems/timer.h>
[5e9b32b]44#include <rtems/score/tod.h>
45#include <rtems/score/userext.h>
46#include <rtems/score/wkspace.h>
[ac7d5ef0]47
[637df35]48#include <stdlib.h>
[3aa4c2e0]49#include <stdio.h>
[18ee864]50#include <unistd.h>
[3aa4c2e0]51#include <tmacros.h>
[637df35]52
[18ee864]53/* external function prototypes */
54int getint( void );
55
[ac7d5ef0]56/* These are always defined by the executive.
57 *
58 * #include <rtems/copyrt.h>
59 * #include <rtems/tables.h>
60 * #include <rtems/sptables.h>
61 */
62#define  HEAP_OVHD        16    /* wasted heap space per task stack */
63#define  NAME_PTR_SIZE     8    /* size of name and pointer table entries */
64#define  READYCHAINS_SIZE  \
65    ((RTEMS_MAXIMUM_PRIORITY + 1) * sizeof(Chain_Control ))
66
67#define PER_TASK      \
[f8700f77]68     (long) (sizeof (Thread_Control) + \
[c3dcd6e]69      NAME_PTR_SIZE + HEAP_OVHD + sizeof( RTEMS_API_Control ))
[ac7d5ef0]70#define PER_SEMAPHORE \
[f8700f77]71     (long) (sizeof (Semaphore_Control) + NAME_PTR_SIZE)
[ac7d5ef0]72#define PER_TIMER     \
[f8700f77]73     (long) (sizeof (Timer_Control) + NAME_PTR_SIZE)
[ac7d5ef0]74#define PER_MSGQ      \
[f8700f77]75     (long) (sizeof (Message_queue_Control) + NAME_PTR_SIZE)
[ac7d5ef0]76#define PER_REGN      \
[f8700f77]77     (long) (sizeof (Region_Control) + NAME_PTR_SIZE)
[ac7d5ef0]78#define PER_PART      \
[f8700f77]79     (long) (sizeof (Partition_Control) + NAME_PTR_SIZE)
[ac7d5ef0]80#define PER_PERIOD      \
[f8700f77]81     (long) (sizeof (Rate_monotonic_Control) + NAME_PTR_SIZE)
[ac7d5ef0]82#define PER_PORT      \
[f8700f77]83     (long) (sizeof (Dual_ported_memory_Control) + NAME_PTR_SIZE)
[ac7d5ef0]84#define PER_EXTENSION     \
[f8700f77]85     (long) (sizeof (Extension_Control) + NAME_PTR_SIZE)
[ac7d5ef0]86
[f8700f77]87#define PER_DRV       (long) (0)
88#define PER_FPTASK    (long) (CONTEXT_FP_SIZE)
89#define PER_GOBTBL    (long) (sizeof (Chain_Control)*4)
90#define PER_NODE      (long) PER_GOBTBL
[97e2729d]91#if defined(RTEMS_MULTIPROCESSING)
[f8700f77]92#define PER_GOBJECT   (long) (sizeof (Objects_MP_Control))
[97e2729d]93#else
94#define PER_GOBJECT   (long) 0
95#endif
[f8700f77]96#define PER_PROXY     (long) (sizeof (Thread_Proxy_control))
[ac7d5ef0]97
[97e2729d]98#if !defined(RTEMS_MULTIPROCESSING) || (CPU_ALL_TASKS_ARE_FP != TRUE)
[f8700f77]99#define MPCI_RECEIVE_SERVER_FP (long) 0
[97e2729d]100#else
101#define MPCI_RECEIVE_SERVER_FP (long) (sizeof( Context_Control_fp ))
[ac7d5ef0]102#endif
103
104#if (CPU_IDLE_TASK_IS_FP == TRUE)
[f8700f77]105#define SYSTEM_IDLE_FP (long) (sizeof( Context_Control_fp ))
[ac7d5ef0]106#else
[f8700f77]107#define SYSTEM_IDLE_FP (long) 0
[ac7d5ef0]108#endif
109
[62e1271a]110#if !defined(RTEMS_MULTIPROCESSING)
[97e2729d]111#define MPCI_RECEIVE_SERVER_STACK_SIZE 0
112#endif
113
[07a3253d]114#if defined(RTEMS_MULTIPROCESSING)
[bbd655a3]115#define MPCI_RECEIVE_SERVER_STACK_SIZE \
116
[07a3253d]117#define MP_SYSTEM_TASKS \
[bbd655a3]118   (STACK_MINIMUM_SIZE + CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK + \
[07a3253d]119    sizeof(Thread_Control) + \
120    MPCI_RECEIVE_SERVER_FP)
[40c2d41e]121
122extern CORE_semaphore_Control _MPCI_Semaphore;
[07a3253d]123#else
124#define MP_SYSTEM_TASKS 0
125#endif
126
127/*
128 *  Idle and the MPCI Receive Server Threads
129 */
130
[ac7d5ef0]131#define SYSTEM_TASKS  \
[07a3253d]132    (STACK_MINIMUM_SIZE + sizeof(Thread_Control) + SYSTEM_IDLE_FP + \
133     MP_SYSTEM_TASKS)
[ac7d5ef0]134
[c87608f]135uint32_t   sys_req;
[ac7d5ef0]136
137void help_size();
138void print_formula();
139
140void size_rtems(
141  int mode
142)
143{
144int uninitialized = 0;
145int initialized = 0;
146
147/*
148 *  The following data is allocated for each Manager:
149 *
150 *    + Per Manager Object Information
151 *      - local pointer table
152 *      - local name table
153 *      - the object's control blocks
154 *      - global name chains
155 *
156 *  The following is the data allocate from the RTEMS Workspace Area.
157 *  The order indicates the order in which RTEMS allocates it.
158 *
159 *    + Object MP
160 *      - Global Object CB's
161 *    + Thread
162 *      - Ready Chain
163 *    + Thread MP
164 *      - Proxies Chain
165 *    + Interrupt Manager
166 *      - Interrupt Stack
167 *    + Timer Manager
168 *      - per Manager Object Data
169 *    + Extension Manager
170 *      - per Manager Object Data
171 *    + Message Queue Manager
172 *      - per Manager Object Data
173 *      - Message Buffers
174 *    + Semaphore Manager
175 *      - per Manager Object Data
176 *    + Partition Manager
177 *      - per Manager Object Data
178 *    + Region Manager
179 *      - per Manager Object Data
180 *    + Dual Ported Memory Manager
181 *      - per Manager Object Data
182 *    + Rate Monotonic Manager
183 *      - per Manager Object Data
184 *    + Internal Threads Handler
[0e0d88b]185 *      - MPCI Receive Server Thread TCB
[ac7d5ef0]186 *      - IDLE Thread TCB
[0e0d88b]187 *      - MPCI Receive Server Thread stack
188 *      - MPCI Receive Server Thread FP area (if CPU requires this)
[ac7d5ef0]189 *      - IDLE Thread stack
190 *      - IDLE Thread FP area (if CPU requires this)
191 *
192 *  This does not take into account any CPU dependent alignment requirements.
193 *
194 *  The following calculates the overhead needed by RTEMS from the
195 *  Workspace Area.
196 */
[0e0d88b]197sys_req = SYSTEM_TASKS     +     /* MPCI Receive Server and IDLE */
[ac7d5ef0]198          NAME_PTR_SIZE    +     /* Task Overhead */
199          READYCHAINS_SIZE +     /* Ready Chains */
200          NAME_PTR_SIZE    +     /* Timer Overhead */
201          NAME_PTR_SIZE    +     /* Semaphore Overhead */
202          NAME_PTR_SIZE    +     /* Message Queue Overhead */
203          NAME_PTR_SIZE    +     /* Region Overhead */
204          NAME_PTR_SIZE    +     /* Partition Overhead */
205          NAME_PTR_SIZE    +     /* Dual-Ported Memory Overhead */
206          NAME_PTR_SIZE    +     /* Rate Monotonic Overhead */
207          NAME_PTR_SIZE    +     /* Extension Overhead */
208          PER_NODE;              /* Extra Gobject Table */
209
210uninitialized =
211/*address.h*/   0                                         +
212
[18c5378]213/*apiext.h*/    (sizeof _API_extensions_List)             +
214
[ac7d5ef0]215/*asr.h*/       0                                         +
216
217/*attr.h*/      0                                         +
218
219/*bitfield.h*/  0                                         +
220
221/*chain.h*/     0                                         +
222
223/*clock.h*/     0                                         +
224
[bb9c80df]225/*config.h*/
[e58077c]226        #if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]227                (sizeof _Configuration_MP_table)          +
[e58077c]228        #endif
[ac7d5ef0]229
230/*context.h*/   (sizeof _Context_Switch_necessary)        +
231
232/*copyrt.h*/    0                                         +
233
[3a4ae6c]234/*debug.h*/     (sizeof _Debug_Level)                     +
235
[ac7d5ef0]236/*dpmem.h*/     (sizeof _Dual_ported_memory_Information)  +
237
[8c8a924]238/*event.h*/     (sizeof _Event_Sync_state)                +
[ac7d5ef0]239
[97e2729d]240#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]241/*eventmp.h*/   0                                         +
[97e2729d]242#endif
[ac7d5ef0]243
244/*eventset.h*/  0                                         +
245
246/*extension.h*/ (sizeof _Extension_Information)           +
247
248/*fatal.h*/     0                                         +
249
250/*heap.h*/      0                                         +
251
252/*init.h*/      0                                         +
253
[d0941512]254/*interr.h*/    (sizeof _Internal_errors_What_happened)   +
[3a4ae6c]255
[ac7d5ef0]256/*intr.h*/      0                                         +
257
258/*io.h*/        (sizeof _IO_Number_of_drivers)            +
259                (sizeof _IO_Driver_address_table)         +
260
261/*isr.h*/       (sizeof _ISR_Nest_level)                  +
[86db88d2]262#if (CPU_SIMPLE_VECTORED_INTERRUPTS == TRUE)
[ac7d5ef0]263                (sizeof _ISR_Vector_table)                +
[86db88d2]264#endif
[ac7d5ef0]265                (sizeof _ISR_Signals_to_thread_executing) +
266
[4b374f36]267/*message.h*/   (sizeof _Message_queue_Information)       +
[ac7d5ef0]268
269/*modes.h*/     0                                         +
270
[97e2729d]271#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]272/*mp.h*/        0                                         +
[97e2729d]273#endif
[ac7d5ef0]274
[97e2729d]275#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]276/*mpci.h*/      (sizeof _MPCI_Remote_blocked_threads)     +
[3a4ae6c]277                (sizeof _MPCI_Semaphore)                  +
278                (sizeof _MPCI_table)                      +
279                (sizeof _MPCI_Receive_server_tcb)         +
280                (sizeof _MPCI_Packet_processors)          +
[97e2729d]281#endif
[ac7d5ef0]282
[97e2729d]283#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]284/*mppkt.h*/     0                                         +
[97e2729d]285#endif
[ac7d5ef0]286
[97e2729d]287#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]288/*mptables.h*/  0                                         +
[97e2729d]289#endif
[ac7d5ef0]290
[97e2729d]291#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]292/*msgmp.h*/     0                                         +
[97e2729d]293#endif
[ac7d5ef0]294
295/*object.h*/    (sizeof _Objects_Local_node)              +
[3a4ae6c]296                (sizeof _Objects_Maximum_nodes)           +
297                (sizeof _Objects_Information_table)       +
[ac7d5ef0]298
[97e2729d]299#if defined(RTEMS_MULTIPROCESSING)
[3a4ae6c]300/*objectmp.h*/  (sizeof _Objects_MP_Maximum_global_objects) +
301                (sizeof _Objects_MP_Inactive_global_objects) +
[97e2729d]302#endif
[ac7d5ef0]303
304/*options.h*/   0                                         +
305
306/*part.h*/      (sizeof _Partition_Information)           +
307
[97e2729d]308#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]309/*partmp.h*/    0                                         +
[97e2729d]310#endif
[ac7d5ef0]311
312/*priority.h*/  (sizeof _Priority_Major_bit_map)          +
313                (sizeof _Priority_Bit_map)                +
314
315/*ratemon.h*/   (sizeof _Rate_monotonic_Information)      +
316
317/*region.h*/    (sizeof _Region_Information)              +
318
[97e2729d]319#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]320/*regionmp.h*/  0                                         +
[97e2729d]321#endif
[ac7d5ef0]322
323/*rtems.h*/     /* Not applicable */
324
325/*sem.h*/       (sizeof _Semaphore_Information)           +
326
[97e2729d]327#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]328/*semmp.h*/     0                                         +
[97e2729d]329#endif
[ac7d5ef0]330
331/*signal.h*/    0                                         +
332
333/*signalmp.h*/  0                                         +
334
335/*stack.h*/     0                                         +
336
337/*states.h*/    0                                         +
338
339/*status.h*/    0                                         +
340
[02d989c]341/*sysstate.h*/  (sizeof _System_state_Current)            +
342#if defined(RTEMS_MULTIPROCESSING)
343                (sizeof _System_state_Is_multiprocessing) +
344#endif
[ac7d5ef0]345
[97e2729d]346#if defined(RTEMS_MULTIPROCESSING)
[ac7d5ef0]347/*taskmp.h*/    0                                         +
[97e2729d]348#endif
[ac7d5ef0]349
[5250ff39]350/*tasks.h*/     (sizeof _RTEMS_tasks_Information)         +
[ac7d5ef0]351
[3a4ae6c]352/*thread.h*/    (sizeof _Thread_BSP_context)              +
353                (sizeof _Thread_Dispatch_disable_level)   +
[022923e]354                (sizeof _Thread_Do_post_task_switch_extension) +
[3a4ae6c]355                (sizeof _Thread_Maximum_extensions)       +
[ac7d5ef0]356                (sizeof _Thread_Ticks_per_timeslice)      +
357                (sizeof _Thread_Ready_chain)              +
358                (sizeof _Thread_Executing)                +
359                (sizeof _Thread_Heir)                     +
[ca7858bb]360#if (CPU_HARDWARE_FP == 1) || (CPU_SOFTWARE_FP == 1)
[ac7d5ef0]361                (sizeof _Thread_Allocated_fp)             +
[ca7858bb]362#endif
[0e0d88b]363                (sizeof _Thread_Internal_information)     +
364                (sizeof _Thread_Idle)                     +
[ac7d5ef0]365
[97e2729d]366#if defined(RTEMS_MULTIPROCESSING)
[0c30bc5]367/*threadmp.h*/  (sizeof _Thread_MP_Active_proxies)        +
[ac7d5ef0]368                (sizeof _Thread_MP_Inactive_proxies)      +
[97e2729d]369#endif
[ac7d5ef0]370
[a9047a0]371/*threadq.h*/
[ac7d5ef0]372
373/*timer.h*/     (sizeof _Timer_Information)               +
374
[3c68f96d]375/*tod.h*/       (sizeof _TOD_Now)                         +
[dfa1f0bc]376                (sizeof _TOD_Uptime)                      +
[ac7d5ef0]377                (sizeof _TOD_Microseconds_per_tick)       +
378
379/*tqdata.h*/    0                                         +
380
381/*types.h*/     0                                         +
382
[d07d3eec]383/*userext.h*/   (sizeof _User_extensions_List)            +
[ac7d5ef0]384
[3a4ae6c]385/*watchdog.h*/  (sizeof _Watchdog_Sync_level)             +
[88d594a]386                (sizeof _Watchdog_Sync_count)             +
[5e7b6272]387                (sizeof _Watchdog_Ticks_since_boot)       +
[3a4ae6c]388                (sizeof _Watchdog_Ticks_chain)            +
389                (sizeof _Watchdog_Seconds_chain)          +
[ac7d5ef0]390
391/*wkspace.h*/   (sizeof _Workspace_Area);
392
393uninitialized = 0;
394
[c4808ca]395#ifndef unix  /* make sure this is not a native compile */
396
[3ec7bfc]397#ifdef __i386__
[ac7d5ef0]398
399/* cpu.h */
[3dc936c1]400uninitialized += (sizeof _CPU_Null_fp_context);
401
402#if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
403uninitialized += (sizeof _CPU_Interrupt_stack_low) +
[ac7d5ef0]404                 (sizeof _CPU_Interrupt_stack_high);
[3dc936c1]405#endif
[ac7d5ef0]406
407#endif
408
[3ec7bfc]409#ifdef __mc68000__
[ac7d5ef0]410
411/* cpu.h */
412uninitialized += (sizeof _CPU_Interrupt_stack_low) +
413                 (sizeof _CPU_Interrupt_stack_high);
414
415#endif
416
[3ec7bfc]417#ifdef __sparc__
[1b4f2b30]418
[9700578]419/* cpu.h */
420uninitialized += (sizeof _CPU_Interrupt_stack_low) +
421                 (sizeof _CPU_Interrupt_stack_high) +
[d135fc52]422                 (sizeof _CPU_Null_fp_context);
423
[9700578]424#endif
425
426
[ac7d5ef0]427#ifdef no_cpu
428
429/* cpu.h */
430uninitialized += (sizeof _CPU_Null_fp_context) +
431                 (sizeof _CPU_Interrupt_stack_low) +
432                 (sizeof _CPU_Interrupt_stack_high) +
433                 (sizeof _CPU_Thread_dispatch_pointer);
434
435#endif
436
[3ec7bfc]437#ifdef __PPC__
[3a4ae6c]438
439/* cpu.h */
440uninitialized += (sizeof _CPU_Interrupt_stack_low) +
441                 (sizeof _CPU_Interrupt_stack_high) +
442                 (sizeof _CPU_IRQ_info);
443
444#endif
[c4808ca]445#endif /* !unix */
[3a4ae6c]446
[ac7d5ef0]447initialized +=
448/*copyrt.h*/    (strlen(_Copyright_Notice)+1)             +
449
[eb5d942a]450#if defined(RTEMS_MULTIPROCESSING)
[3a4ae6c]451/*sptables.h*/  (sizeof _Initialization_Default_multiprocessing_table)  +
[eb5d942a]452#endif
[3c68f96d]453                (strlen(_RTEMS_version)+1);
[ac7d5ef0]454
455
456
[c4808ca]457#ifndef unix /* make sure this is not native */
[3ec7bfc]458#ifdef __sparc__
[9700578]459
460initialized +=  (sizeof _CPU_Trap_slot_template);
461
462#endif
[c4808ca]463#endif /* !unix */
[9700578]464
[ac7d5ef0]465puts( "" );
[9700578]466
[ac7d5ef0]467  if ( mode == 0 ) help_size();
468  else             print_formula();
469
470printf( "\n" );
471printf( "RTEMS uninitialized data consumes %d bytes\n", uninitialized );
472printf( "RTEMS intialized data consumes %d bytes\n", initialized );
473
474}
475
476void help_size()
477{
478int c = '\0';
479int break_loop;
480int total_size;
481int task_stacks;
482int interrupt_stack;
483int maximum_tasks, size_tasks;
484int maximum_sems, size_sems;
485int maximum_timers, size_timers;
486int maximum_msgqs, size_msgqs;
[4b374f36]487int maximum_msgs, size_msgs_overhead;
[ac7d5ef0]488int maximum_regns, size_regns;
489int maximum_parts, size_parts;
490int maximum_ports, size_ports;
491int maximum_periods, size_periods;
492int maximum_extensions, size_extensions;
493int maximum_drvs, size_drvs;
494int maximum_fps, size_fps;
495int maximum_nodes, size_nodes;
496int maximum_gobjs, size_gobjs;
497int maximum_proxies, size_proxies;
498
499total_size = sys_req;    /* Fixed Overhead */
500printf( "What is maximum_tasks? " );
501maximum_tasks = getint();
502size_tasks = PER_TASK * maximum_tasks;
503total_size += size_tasks;
504
505printf( "What is maximum_semaphores? " );
506maximum_sems = getint();
507size_sems = PER_SEMAPHORE * maximum_sems;
508total_size += size_sems;
509
510printf( "What is maximum_timers? " );
511maximum_timers = getint();
512size_timers = PER_TIMER * maximum_timers;
513total_size += size_timers;
514
515printf( "What is maximum_message_queues? " );
516maximum_msgqs = getint();
517size_msgqs = PER_MSGQ * maximum_msgqs;
518total_size += size_msgqs;
519
[3652ad35]520printf( "What is maximum_messages?  XXXX " );
[ac7d5ef0]521maximum_msgs = getint();
[3652ad35]522size_msgs_overhead = 0;
[4b374f36]523total_size += size_msgs_overhead;
[ac7d5ef0]524
525printf( "What is maximum_regions? " );
526maximum_regns = getint();
527size_regns = PER_REGN * maximum_regns;
528total_size += size_regns;
529
530printf( "What is maximum_partitions? " );
531maximum_parts = getint();
532size_parts = PER_PART * maximum_parts;
533total_size += size_parts;
534
535printf( "What is maximum_ports? " );
536maximum_ports = getint();
537size_ports = PER_PORT * maximum_ports;
538total_size += size_ports;
539
540printf( "What is maximum_periods? " );
541maximum_periods = getint();
542size_periods = PER_PORT * maximum_periods;
543total_size += size_periods;
544
545printf( "What is maximum_extensions? " );
546maximum_extensions = getint();
547size_extensions = PER_EXTENSION * maximum_extensions;
548total_size += size_extensions;
549
550printf( "What is number_of_device_drivers? " );
551maximum_drvs = getint();
552size_drvs = PER_DRV  * maximum_drvs;
553total_size += size_drvs;
554
555printf( "What will be total stack requirement for all tasks? " );
556task_stacks = getint();
557total_size += task_stacks;
558
559printf( "What is the size of the interrupt stack? " );
560interrupt_stack = getint();
561total_size += interrupt_stack;
562
563printf( "How many tasks will be created with the FP flag? " );
564maximum_fps = getint();
565size_fps = PER_FPTASK  * maximum_fps;
566total_size += size_fps;
567
568printf( "Is this a single processor system? " );
569for ( break_loop=0 ; !break_loop; c = getchar() ) {
570  switch ( c ) {
571    case 'Y':  case 'y':
572    case 'N':  case 'n':
573      break_loop = 1;
574      break;
575  }
576}
577printf( "%c\n", c );
578if ( c == 'n' || c == 'N' ) {
579  printf( "What is maximum_nodes? " );
580  maximum_nodes = getint();
581  size_nodes = PER_NODE * maximum_nodes;
582  total_size += size_nodes;
583  printf( "What is maximum_global_objects? " );
584  maximum_gobjs = getint();
585  size_gobjs = PER_GOBJECT * maximum_gobjs;
586  total_size += size_gobjs;
587  printf( "What is maximum_proxies? " );
588  maximum_proxies = getint();
589  size_proxies = PER_PROXY * maximum_proxies;
590  total_size += size_proxies;
591} else {
592  maximum_nodes = 0;
593  size_nodes = PER_NODE * 0;
594  maximum_gobjs = 0;
595  size_gobjs = PER_GOBJECT * 0;
596  maximum_proxies = 0;
597  size_proxies = PER_PROXY * 0;
598}
599
600printf( "\n\n" );
601printf( " ************** EXECUTIVE WORK SPACE REQUIRED **************\n" );
[f8700f77]602printf( " Tasks                - %03d * %03ld            =  %ld\n",
603          maximum_tasks, PER_TASK, (long) size_tasks );
604printf( " Semaphores           - %03d * %03ld            =  %ld\n",
605          maximum_sems, PER_SEMAPHORE, (long) size_sems );
606printf( " Timers               - %03d * %03ld            =  %ld\n",
607          maximum_timers, PER_TIMER, (long) size_timers );
608printf( " Msg Queues           - %03d * %03ld            =  %ld\n",
609          maximum_msgqs, PER_MSGQ, (long) size_msgqs );
610printf( " Messages Overhead    - %03d * %03d            =  %ld\n",
611          maximum_msgs, 0 /* PER_MSG_OVERHEAD */, (long) size_msgs_overhead );
612printf( " Regions              - %03d * %03ld            =  %ld\n",
613          maximum_regns, PER_REGN, (long) size_regns);
614printf( " Partitions           - %03d * %03ld            =  %ld\n",
615          maximum_parts, PER_PART, (long) size_parts );
616printf( " Periods              - %03d * %03ld            =  %ld\n",
617          maximum_periods, PER_PERIOD, (long) size_periods );
618printf( " Extensions           - %03d * %03ld            =  %ld\n",
619          maximum_extensions, PER_EXTENSION, (long) size_extensions );
620printf( " Device Drivers       - %03d * %03ld            =  %ld\n",
621          maximum_drvs, PER_DRV, (long) size_drvs );
[ac7d5ef0]622
623printf( " System Requirements  - %04d                 =  %d\n",
624          sys_req, sys_req );
625
[f8700f77]626printf( " Floating Point Tasks - %03d * %03ld            =  %ld\n",
627          maximum_fps, PER_FPTASK, (long) size_fps );
[ac7d5ef0]628printf( " Application Task Stacks -                     =  %d\n",
629          task_stacks );
630printf( " Interrupt Stacks -                            =  %d\n",
631          task_stacks );
632printf( " \n" );
[f8700f77]633printf( " Global object tables - %03d * %03ld            =  %ld\n",
634          maximum_nodes, PER_NODE, (long) size_nodes );
635printf( " Global objects       - %03d * %03ld            =  %ld\n",
636          maximum_gobjs, PER_GOBJECT, (long) size_gobjs );
637printf( " Proxies              - %03d * %03ld            =  %ld\n",
638          maximum_proxies, PER_PROXY, (long) size_proxies );
[ac7d5ef0]639printf( "\n\n" );
640printf( " TOTAL                                       = %d bytes\n",
641      total_size );
642}
643
644void print_formula()
645{
646printf( " ************** EXECUTIVE WORK SPACE FORMULA **************\n" );
[f8700f77]647printf( " Tasks                - maximum_tasks * %ld\n",      PER_TASK );
648printf( " Timers               - maximum_timers * %ld\n",     PER_TIMER );
649printf( " Semaphores           - maximum_semaphores * %ld\n", PER_SEMAPHORE);
650printf( " Message Queues       - maximum_message_queues * %ld\n", PER_MSGQ );
[4b374f36]651printf( " Messages             -\n");
[f8700f77]652printf( " Regions              - maximum_regions * %ld\n",    PER_REGN );
653printf( " Partitions           - maximum_partitions * %ld\n", PER_PART );
654printf( " Ports                - maximum_ports * %ld\n",      PER_PORT );
655printf( " Periods              - maximum_periods * %ld\n",    PER_PORT );
656printf( " Extensions           - maximum_extensions * %ld\n", PER_EXTENSION );
657printf( " Device Drivers       - number_of_device_drivers * %ld\n", PER_DRV);
658printf( " System Requirements  - %d\n",                       sys_req );
659printf( " Floating Point Tasks - FPMASK Tasks * %ld\n",       PER_FPTASK );
[ac7d5ef0]660printf( " User's Tasks' Stacks -\n" );
661printf( " Interrupt Stack      -\n" );
662printf( " \n" );
[f8700f77]663printf( " Global object tables - maximum_nodes * %ld\n",          PER_NODE );
664printf( " Global objects       - maximum_global_objects * %ld\n", PER_GOBJECT );
665printf( " Proxies              - maximum_proxies * %ld\n",        PER_PROXY );
[ac7d5ef0]666}
Note: See TracBrowser for help on using the repository browser.