home *** CD-ROM | disk | FTP | other *** search
- package SELF_METRIC_INSTRUMENTATION_AND_ANALYSIS_TOOL is
- --This is a tool which will record information about program timing,
- -- loop execution counts, state of control variables at decision points,
- -- and values of selected variables.
-
- procedure self_analyze (source_file: in Ada_SOURCE_FILE_TYPE;
- report_file: out REPORT_FILE_TYPE
- data_file : in FILE_TYPE := STANDARD_INPUT);
- -- is the procedure to invoke this tool. The data file contains
- -- the instructions to the analyzer specifying optional items to
- -- instrument.
-
- 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 SELF_METRIC_INSTRUMENTATION_AND_ANALYSIS_TOOL;
-