home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 July / Chip_2000-07_cd.bin / sharewar / prodelph / NEWS.TXT < prev    next >
Text File  |  2000-05-02  |  14KB  |  296 lines

  1. ProDelphi 8.x
  2. -------------
  3.  
  4. Additional remarks which are not in the description or might be overlooked:
  5.  
  6.   - Don't use the optimization switch of the compiler, in some cases the
  7.     compiler produces wrong code ( this has nothing to do with ProDelphi ),
  8.     and second the measurement results are less correct.
  9.  
  10.   - The best results concerning correctness are got if the profiled
  11.     program does not run under the IDE.
  12.  
  13. Known Bugs:
  14.  
  15.   - Typing of procedural variables or definitions of procedual variables can
  16.     not be split into two lines.
  17.     Example:
  18.       TYPE
  19.         TFunc  = FUNCTION : Integer; // This is ok
  20.         TFUNC  =
  21.           FUNCTION : Integer;        // This is not recognized
  22.       VAR
  23.         provar : FUNCTION : Integer; // This is ok
  24.         fuvar  :
  25.           FUNCTION : Integer;        // This is not recognized
  26.  
  27. Changes made in ProDelphi Version 8.0     (04/27/2000)
  28.   - Dynamical switching measurement on and off enhanced:
  29.     . Instead of calling the API-functions ProfActivate and ProfDeactivate
  30.       a special comment can be placed before the method with which the
  31.       measurement should be started (//PROFILE-ACTIVATE). The maximum
  32.       number of activation comments is unlimited.
  33.     . At the end of the profiling process a dialog window is opened
  34.       in which activating methods can be selected (if dynamcic activation 
  35.       is wanted). Between different activation methods can be switched 
  36.       without a new profiling process to be executed. The maximum amount of 
  37.       activation methods selected interactiv is 16.
  38.     . Activation by inserting //PROFILE-ACTIVATE and selecting in a
  39.       dialog window can be mixed.
  40.   - Measurement an start options do not afford a new profiling process.
  41.   - Measurement results can be emulated for another PC than that one on 
  42.     which the measurements have been done. So easily a slower or faster 
  43.     customers PC can be emulated. This saves the installation of the 
  44.     complete IDE on the customers equipment. Of course an emulation has
  45.     a lower accuracy than a measurement done with the original equipment.
  46.   - Profiling log added
  47.   - Freeware version only: If more than 30 procedures are measured, the
  48.     the runtime of all those procedures that are not displayed is 
  49.     summarized and displayed.
  50.   - Post mortem review enhanced:
  51.     . In a case of an exception the name of the exception is given,
  52.     . Handling of recursively called functions improved.
  53.  
  54. Changes made in ProDelphi Version 7.62    (04/17/2000)
  55.   - Two or more entries $(Delphi) in the units search path caused a profiling
  56.     error when after $(Delphi) either \Lib or \Source was noted.
  57.   - Processing of $IFDEF, $IFOPT, etc. was case sensitive (needed to be
  58.     in capital characters).
  59.   - $IFDEF in a Uses-statement caused errors.
  60.   - Units search path is editable now (due to a customers request).
  61.   - Amount of profilable method increased from 16000 to 32000 (due to a
  62.     customers request).
  63.  
  64. Changes made in ProDelphi Version 7.61    (04/06/2000)
  65.   - Pathname problem fixed
  66.  
  67. Changes made in ProDelphi Version 7.6/7.5 (03/25/2000)
  68.   - browsers tuned (7.6)
  69.   - parser bug fixed (7.5)
  70.   - handling of the function MsgWaitForMultipleObjects(Ex) corrected(7.6)
  71.  
  72. Changes made in ProDelphi Version 7.4 (02/27/2000)
  73.   - Coverage Profiling on a procedural base: A browser displays all those
  74.     methods which were not called.
  75.   - Accuracy for measurement of pure Assembler procedures increased
  76.     (professional version only)
  77.  
  78. Changes made in ProDelphi Version 7.3 (01/15/2000)
  79.   - Enhanced accuracy of measurement, especially for nested procedures.
  80.   - Optimization is automatically switched off if the user forgets to 
  81.     uncheck the optimization switch. This prevents crashes of the testee
  82.     and guaranties a high accuracy measurement.
  83.   - Professional version can measure 16000 methods now (before 10000).
  84.   - Bugfix: The $IFOPT compiler directive was not processed.
  85.   - Bugfix: Example program displayed wrong time with some Intel processors.
  86.  
  87. Changes made in ProDelphi Version 7.2 (11/21/1999)
  88.   - Bugfix: Setup corrupted the Delphi tools menu if already more than
  89.             nine tools existed. Uninstall deleted one entry too much
  90.             in the tools menu, if ProDelphi was not the last installed
  91.             tool.
  92.   - ProDelphi can now process relative pathnames.
  93.  
  94. Changes made in ProDelphi Version 7.1 (11/03/1999)
  95.   - Bugfix: Profiler could not be executed under Windows 95A.
  96.  
  97. Changes made in ProDelphi Version 7.0b (09/28/1999)
  98.   - Bugfix: The Delphi demo sources could not be profiled 
  99.             (Error message: Path error).
  100.   - Files in and below the Delphi LIB and SOURCE directory are excluded
  101.     from profiling
  102.  
  103. Changes made in ProDelphi Version 7.0 (09/26/1999)
  104.   - Additions for Delphi 5
  105.   - History window corrected: It displays '---' for the time now, if no times
  106.     for a method are not stored in the history file. Before the times of the
  107.     actual run were displayed.
  108.  
  109. Changes made in ProDelphi Version 6.7 (09/19/1999)
  110.   - SetUp program corrected: Administrator rights for Windows NT not 
  111.     necessary anymore.
  112.   - Integration into Delphi 2 tools menu fixed.
  113.   - Integration into Delphi 2/3/4 tools menu enhanced.
  114.   - Viewer enhanced for use with large screen fonts.
  115.   - Some changes done for use with Delphi 5 (not tested yet).
  116.  
  117. Changes made in ProDelphi Version 6.6 (08/24/1999)
  118.   - History function: Comparing the actual runtime by mouse click with
  119.     a preceding one, colored grids show which method got faster, which slower.
  120.   - Search path can be longer than 255 characters now.
  121.   - Documentation enhanced: hints for optimization and excact measurement.
  122.   - Addings for Delphi 5 done (not tested yet).
  123.  
  124. Changes made in ProDelphi Version 6.5a/b/c/d/e (08/15/1999)
  125.   - Bugfix concerning wrong output directory for 2 profiler internal files (6.5a) 
  126.   - Incompatibility with the tool Arabella (ProDelphi used the same filenames)(6.5b) 
  127.   - Spaces in filenames are accepted now (6.5c)
  128.   - Sorting of the detailed results causeD displaying wrong times (if the
  129.     filter option to exclude methods with very small runtimes was used).(6.5d)
  130.   - SetUp-program fixed, install didn't insert ProDelphi into the tools menu
  131.     and uninstall didn't delete it. (6.5d)
  132.   - Problems with profiling assembler procedures solved (professional verion) (6.5e)
  133.   - With Windows 95a and partition sizes > 2 GB the checking for enough
  134.     free disk was malfuntioning (6.5e)
  135.   - For security reasons, the Delphi LIB-directory is not profiled anymore (6.5e)
  136.   - Example program corrected: the displayed number of CPU-Cycles were
  137.     correct but the displayed times were correct only on a PC with 233 MHz
  138.     (estimation of CPU-frequency was missing) (6.5c)
  139.   - Example program enhanced to fit to the higher accuracy of ProDelphi:
  140.     smallest unit of time is now 0.001 micro second. (6.5c)
  141.   - Display format of example program changed to the style of ProDelphi. (6.5c)
  142.  
  143. Changes made in ProDelphi Version 6.5 (07/22/1999)
  144.   - Bugfix: rounding error
  145.   - Multiple directories can be profiled now
  146.   - DOF-file entries are used by ProDelphi now
  147.   - Viewer enhanced: smallest displayed time unit now 0.001 micro second,
  148.     Display format made better readable.
  149.  
  150. Changes made in ProDelphi Version 6.4 (06/03/1999):
  151.   - Bug fix: Setup aborted installation procedure when running under
  152.     Win95a or Win95b. No such problems occured under Win95c or WinNT 4.0.
  153.     I hope it also runs under Win98.
  154.     Release of Setup program is now V2.0.
  155.  
  156. Changes made in ProDelphi Version 6.4 (05/30/1999):
  157.   - Bug fix: Updating the list of files before profiling, corrected following
  158.     mistake: If a file was copied to the profiling directory and ProDelphi
  159.     was started, this file was not profiled.
  160.   - Integration of ProDelphi into the Delphi Tools menu
  161.   - Comfortable Setup program included now (V1.0)
  162.   - Example programs included
  163.  
  164. Changes made in ProDelphi Version 6.3a (05/16/1999):
  165.   - Bug fixed: Crash could occure in Local Procedures (or wrong result)
  166.   - Measurement not correct: 1 CPU-Cycle to much measured
  167.  
  168. Changes made in ProDelphi Version 6.3 (05/12/1999):
  169.   - Freeware and Professional version:
  170.     * Automatic reading of defined compiler symbols and switches from the
  171.       DOF-file
  172.   - Freeware version:
  173.     * number of measured procedures now 30 (before 20)
  174.     * measuring of local procedures now possible
  175.     * counting time of inherited methods for calling method possible now
  176.   - Professional version:
  177.     * Profiling pure assembler procedures.
  178.  
  179. Changes made in ProDelphi Version 6.2a (04/10/1999):
  180.   - Parser-bug concerning class variables fixed.
  181.     
  182. Changes made in ProDelphi Version 6.2 (04/05/1999):
  183.   - Conditional compilation supported now, this means that IFDEF/IFNDEF-
  184.     statements are evaluated now.
  185.   - Enhancement of the viewer: Sorting of the results in the detail
  186.     window after every possible criteria (alphabetical, procedure runtime,
  187.     procedure runtime sum, procedure runtime incl. child time, etc. etc).
  188.   - Browser added to the viewer.
  189.   - 3 more Windows- API functions which set the program into idle status are 
  190.     handled now (no idle time measuring).
  191.   - Memorises important profiling options.
  192.   - Warning to save source files before profiling displayed now.
  193.   - Minor sorting bug fixed.
  194.   - Parser bug concerning nested local procedures corrected.
  195.   - Upgrading to professional version now by Serial Number. This means a
  196.     better customer service. 
  197.     Just look at my homepage, if there is a new version, just download it, 
  198.     it runs with your serial number.
  199.  
  200.   Attention: Delete old *.PAS, *.DFM and *.DLL files of ProDelphi if you are
  201.              upgrading from an older version of ProDelphi.
  202.  
  203. Changes made in ProDelphi 6.1 (03/07/1999):
  204.   - The viewer was enhanced, the Detail-window can be enlarged until full 
  205.     screen. Making the viewer windows smaller, results in hiding unimportant
  206.     parts of the informations (not for Detail-window), so that the window 
  207.     can be made much smaller.
  208.     Some windows have got a splitter, so that the window can be made smaller.
  209.     The end of Unit-, class- and procedure names are no longer cut off after
  210.     25 characters (space for 40 characters availlable now).
  211.   - Parser bug concerning pure assembler procedures corrected.
  212.   - Calibation procedures are in a DLL now (ProfCali.DLL).
  213.   - Additional Windows- and Delphi- API functions which set the program into
  214.     idle status are handled now (no idle time measuring).
  215.   - Instead of DCU-files as interfaces to the DLL's, now PAS-files are delivered.
  216.     This has the advantage that extensions can be made by the user of ProDelphi.
  217.     Changes in those units are made on own risk. This concerns mainly  API-
  218.     functions that cause setting the program into an idle state.
  219.   - Documentation enhanced.
  220.  
  221.  
  222. Changes made in ProDelphi 6.0 (02/12/1999):
  223.   - DLL-Support was enhanced: Now it is possible to profile program and DLL's
  224.     simultaneously (or separetely as in version 5.3)
  225.   - Read-Only files are either not profiled now or the Read-only attribute
  226.     is automatically deleted.
  227.   - Documentation corrected and completed.
  228.   - Measuring bug concerning Application.ProcessMessages,
  229.     Application.HandleMessage, DispatchMessage, Sleep and SleepEx corrected.
  230.   - Parser bug concerning //PROFILE-NO without //PROFILE-YES corrected.
  231.   - Parser bug concernig key words ASSEMBLER, FORWARD and EXTERNAL corrected.
  232.  
  233. Changes made in ProDelphi 5.3 (12/20/1998):
  234.   - DLL-Support added
  235.     It is not described in the documentation yet. I've made a little example
  236.     to show, how a DLL is measured. Unzip the files in DLLSUPP.ZIP and read
  237.     the comments in the sources. It is quite simple.
  238.  
  239. Changes made in ProDelphi 5.2 (12/18/1998):
  240.   - Parser-bug concerning tabs in function or procedure statements corrected.
  241.   - Parser-bug concerning BEGIN / END in variable names,
  242.   - Viewer-bug corrected:
  243.     If more than one measurement run was made (using the Append-button in
  244.     the on-line operation window) and one or more procedures were never used,
  245.     the procedure names from the second run on were wrong and so not usable.
  246.  
  247. Changes made in ProDelphi 5.1 (11/22/1998):
  248.   - Parser-bug concerning Application.ProcessMessages and DispatchMessages
  249.     corrected
  250.   - Sleep and SleepEx is treated now.
  251.  
  252. Changes made in ProDelphi 5.0 (11/15/1998):
  253.   - Inserted profiling statments are now partly in Assembler. This results
  254.     in less measurement overhead and a better measurement accuracy (in my
  255.     test program results of the measured program had an accuracy of
  256.     +- 1 CPU-cycle on AMD K6. Results on Pentium without MMX are not so
  257.     accurate).
  258.   - Fixed 1 bug: testee aborted at program end if all procedures had a
  259.     runtime of 0 CPU-cycles (empty procedures).
  260.  
  261. Changes made in ProDelphi 4.0 (10/11/1998):
  262.  
  263.   - Export into data base,
  264.   - Adding a viewer to look at the results directly with the profiler,
  265.   - measurement results in CPU-cycles availlable
  266.   - 2 minor bug fixes
  267.   - greater accuracy and less measurement overhead compared to previous
  268.     versions by using 64 bit integers instead of data type Comp.
  269.   - measurement results for recursive procedures fixed.
  270.   - greater accuracy for calling of deactivated procedures (professional
  271.     version only).
  272.   - support of Delphi 4.
  273.  
  274. Attention:
  275.   ProDelphi 2.x for non-Intel-compatible CPU's is no longer supported.
  276.  
  277. Changes made in ProDelphi 3.1 (05/10/98):
  278.  
  279.  
  280. Profiler.exe :
  281.   Error message if too many procedures,
  282.   Remembering the last directory for next startup of PROFILER.EXE,
  283.   Easier installation.
  284.  
  285. Proftime.DCU :
  286.   Dramatically increased accuracy in time measurement (especially for
  287.     small  procedures),
  288.   greater accuracy in determining the CPU-speed (especially for CPU
  289.     >= 200 MHZ),
  290.   no exception when running under IDE and Windows NT (the exception
  291.     was produced by will but disturbing accuracy or functionallity),
  292.   correction for the case that more than 20 procedures are registered,
  293.   Remembering the last screen position for the online operation window.
  294.  
  295.  
  296.