home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JRUNTIME.Z / README.JPP < prev    next >
Text File  |  1998-05-08  |  4KB  |  117 lines

  1.                     README
  2.             
  3.             Java Performance Pack for Win32
  4.           Version 1.1.5 (Early-access release)
  5.             
  6. -----------------------------------------------------------------------
  7. CONTENTS
  8.  
  9.    Overview of the Performance Pack
  10.    System requirements
  11.    Installing the Performance Pack
  12.    Using the JIT compiler
  13.     - Using the JIT compiler in conjunction with the JDK
  14.     - Using the JIT compiler in conjunction with the JRE
  15.    Uninstalling the JIT compiler
  16.      
  17.      
  18. -----------------------------------------------------------------------
  19. OVERVIEW OF THE JAVA PERFORMANCE PACK
  20. -----------------------------------------------------------------------
  21.  
  22. The Java Performance Pack for Win32, version 1.1.5, contains an early-
  23. access version of a JIT compiler. When installed, the Performance 
  24. Pack's JIT compiler should provide an increase in the speed with which 
  25. your Java applications and applets run. In some cases, up to 10X 
  26. improvement in performance can be realized.
  27.  
  28. BECAUSE THIS IS A TECHNOLOGY PREVIEW RELEASE ONLY, THE PERFORMANCE 
  29. PACK'S JIT COMPILER SHOULD NOT BE USED FOR MISSION-CRITICAL 
  30. APPLICATIONS.
  31.  
  32. If you encounter any problems or bugs with the Performance Pack, 
  33. please report them via the JavaSoft bug submission web page at 
  34. http://java.sun.com/cgi-bin/bugreport.cgi 
  35.  
  36.  
  37. -----------------------------------------------------------------------
  38. SYSTEM REQUIREMENTS
  39. -----------------------------------------------------------------------
  40.  
  41. The Performance Pack JIT compiler is available only for Win32 
  42. platforms. The Performance Pack JIT compiler requires that JDK 1.1.5 or 
  43. JRE 1.1.5 be installed on your machine. Note that JDK 1.1.5 and 
  44. JRE 1.1.5 will not work on Windows NT 3.51.
  45.  
  46.  
  47. ----------------------------------------------------------------------
  48. INSTALLING THE PERFORMANCE PACK
  49. -----------------------------------------------------------------------
  50.  
  51. To install the Performance Pack, double click on the Performance Pack 
  52. file that you downloaded from the JavaSoft web site. This will open an 
  53. InstallShield script that will step you through the installation 
  54. process.
  55.  
  56. Note that some browsers give you the option of executing the download 
  57. file directly from the JavaSoft web site without saving a copy of the 
  58. download file to your disk.
  59.  
  60.  
  61. -----------------------------------------------------------------------
  62. USING THE JIT COMPILER
  63. -----------------------------------------------------------------------
  64.  
  65. USING THE JIT COMPILER IN CONJUNCTION WITH THE JDK --------------------
  66.  
  67. To use the JIT compiler in conjuction with the JDK's java, javac or 
  68. appletviewer command-line tools, you must set the JAVA_COMPILER 
  69. environment variable to the value "symcjit". Use the following command 
  70. from the DOS prompt:
  71.  
  72.     set JAVA_COMPILER=symcjit
  73.  
  74. When the JAVA_COMPILER environment variable is set, the JIT compiler 
  75. will be the default compiler invoked by the command-line tools.
  76.  
  77. An alternative way of invoking the JIT compiler is to set the value of 
  78. the java.compiler property to "symcjit". With the javac and 
  79. appletviewer tools, you can do this as follows:
  80.  
  81.     appletviewer -J-Djava.compiler=symcjit MyApplet.html
  82.     javac -J-Djava.compiler=symcjit MyApp.java
  83.  
  84. When using the java command-line tool, you can set java.compiler as 
  85. follows:
  86.  
  87.     java -Djava.compiler=symcjit MyApp
  88.     
  89. If you don't want the JIT compiler to be invoked by default, unset 
  90. the JAVA_COMPILER environment variable. You do this by setting 
  91. JAVA_COMPILER to no value:
  92.  
  93.     set JAVA_COMPILER=
  94.  
  95.  
  96. USING THE JIT COMPILER IN CONJUNCTION WITH THE JRE --------------------
  97.  
  98. If JRE 1.1.5 and the JIT compiler are both installed, the JIT compiler 
  99. is the default compiler invoked by the jre command-line tool. If you 
  100. want to run an application using only the default interpreter, without 
  101. invoking the JIT compiler, you can use the jre command with the -nojit 
  102. option.
  103.  
  104.  
  105. -----------------------------------------------------------------------
  106. UNINSTALLING THE JIT COMPILER
  107. -----------------------------------------------------------------------
  108.  
  109. If for any reason you wish to uninstall the JIT compiler, you may do 
  110. so from the Add/Remove Programs control panel of Windows 95/NT. 
  111.  
  112.  
  113. -----------------------------------------------------------------------
  114. Copyright ⌐ 1997, 1998 Sun Microsystems, Inc.
  115. 901 San Antonio Road, Palo Alto, CA 94303-4900 USA
  116. All rights reserved.
  117.