home *** CD-ROM | disk | FTP | other *** search
- package ADA_PERFORMANCE_ANALYZER is -- a tool providing performance info
- -- This tool will provide testing and timing
- -- information. It will give quantitative
- -- information on how much execution time
- -- is spent in various modules in a system.
-
- procedure ANALYZE_PERFORMANCE(SOURCE_FILE : in Ada_SOURCE_FILE_TYPE;
- DESTINATION_FILE : out REPORT_FILE_TYPE);
- -- is the tool providing performance information
-
- package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (DEVELOPING_ORGANIZATION => "Intermetrics, Inc.",
- AUTHOR => "Kathy Velick",
- CONTACT => "Ron Rathgeber",
- ADDRESS => ("5392 Bolsa Avenue",
- "Huntington Beach",
- "CA","92649"),
- PHONE => (714,891,4631),
- DATE_SUBMITTED => (20,NOV,1984));
-
- package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
- (LINES_OF_SOURCE_CODE => TBD,
- DEVELOPMENT_COMPILER => (IBM3083,AIE_UTS),
- PLANNED_COMPILERS_SUPPORTED => ((DECVAX,DECADA),
- (DECVAX,TSIADA)),
- AUXILIARY_FILES_SIZE => (TBD);
-
- package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (COMPLETED_EVENTS => NULL;
- SCHEDULED_EVENTS => ((PDR,(13,JAN,1985)),
- (CDR,(13,MAR,1985)),
- (FIRST_BUILT,(13,FEB,1985)),
- (DELIVERY,(13,JUL,1985)));
- end ADA_PERFORMANCE_ANALYZER;
-