Oracle8i Java Tools Reference
Release 3 (8.1.7)

Part Number A83727-01

Library

Solution Area

Contents

Index

Go to previous page Go to beginning of chapter Go to next page

Native Compilation Tools

The Java language was designed for a platform-independent, secure development model. To accomplish these goals, some execution performance was sacrificed. Translating Java bytecodes into machine instructions degrades performance. To regain some of the performance loss, you may choose to natively compile certain classes. For example, you may decide to natively compile code with CPU intensive classes.

Without native compilation, the Java code you load to the server is interpreted and the underlying core classes upon which your code relies (java.lang.*) are natively compiled.

Native compilation provides a speed increase ranging from two to ten times the speed of the bytecode interpretation. The exact speed increase is dependent on several factors, including:

Because Java bytecodes were designed to be compact, natively compiled code can be considerably larger than the original bytecode. However, because the native code is stored in a shared library, it is shared among all users of the database.

Most JVMs use Just-In-Time compilers that convert the Java bytecodes to native machine instructions when methods are invoked. The JServer Accelerator uses an Ahead-Of-Time approach to recompiling the Java classes.

Native Compiler   Description  

Just-In-Time  

Provides the JVM the ability to translate the Java instructions just before needed by the JDK. The benefits depends on how accurately the native compiler anticipates code branches and the next instruction. If incorrect, no performance gain is realized.  

Ahead-Of-Time  

The Jserver Accelerator natively compiles all Java code within a JAR file into native shared libraries, which are organized by Java package, before execution time. At runtime, JServer Accelerator checks if a Java package has been natively compiled; and if so, uses the machine code library instead of interpreting the deployed Java code.  

This static compilation approach provides a large, consistent performance gain, regardless of the number of users or the code paths they traverse on the server. After compilation, the tool loads the statically compiled libraries into JServer, which are then shared between users, processes, and sessions.

JServer Accelerator Overview

Most Ahead-Of-Time native compilers compile directly into a platform-dependent language. For portability requirements, this was not feasible. As shown in Figure 1-1, the JServer Accelerator translates the Java classes into a version of C that is platform-independent. This C code is compiled and linked to supply the final platform-dependent, natively compiled shared libraries or DLLs.

Figure 1-1 Native Compilation using JServer Accelerator


Given a JAR file, the JServer Accelerator performs the following:

  1. The classes, loaded in the database, are verified.

  2. The Java bytecodes for these classes are retrieved from the database and stored in a project directory where the JServer Accelerator was invoked.

  3. The Java bytecodes are translated to C.

  4. The C code is compiled and linked with the C compiler for your platform.

    JServer Accelerator translates, compiles, and links the retrieved classes on the client. For this reason, you must natively compile on the intended platform environment that this application will be deployed to. The result is a single deployment JAR file for all classes within the project.

  5. The resulting shared library is loaded into the
    $ORACLE_HOME/javavm/admin directory.


    Note:

    The JServer Accelerator natively compiled libraries can only be used within JServer. Also, these libraries can only be used within the same version of JServer that it was produced in. If you want your application to be natively compiled on subsequent releases, you must recompile these classes. That is, native recompilation of existing libraries will not be performed automatically by any upgrade process.  


JServer Core Java Class Libraries

All core Java class libraries and Oracle-provided Java code within JServer is natively compiled for greater execution speed. Java classes exist as shared libraries in $ORACLE_HOME/javavm/admin, where each shared library corresponds to a Java package. For example, orajox8java_lang.so on Solaris and orajox8java_lang.dll on Windows NT hold java.lang classes. Specifics of packaging and naming can vary by platform. The Aurora JVM uses natively compiled Java files internally and opens them, as necessary, at runtime.

Natively Compiling Java Application Class Libraries

The JServer Accelerator can be used by Java application products that need an performance increase and are deployed on JServer. The JServer Accelerator command-line tool, ncomp, natively compiles your code and loads it in JServer. However, in order to use ncomp, you must first provide some initial setup.

Installation Requirements

You must install the following before invoking JServer Accelerator:

  1. Install a C compiler for the intended platform on the machine you are running ncomp.

  2. Verify that the correct compiler and linker commands are referenced within the System*.properties file located in the $ORACLE_HOME/javavm/jahome directory. Since the compiler and linker information is platform-specific, the configuration for these items is detailed in the README for your platform.

  3. Add the appropriate JDK JAR files, library, and binary information in the following environment variables:

    Environment Variables   Addition Required  

    JAVA_HOME  

    Set to the location where your JDK is installed.  

    CLASSPATH  

    Include the appropriate JDK JAR files in your CLASSPATH as follows:

    • For JDK 1.1, include $JAVA_HOME/lib/classes.zip.

    • For JDK 1.2, include the $JAVA_HOME/lib/tools.jar and $JAVA_HOME/lib/dt.jar files.

     

    PATH  

    Add the JDK binary path: $JAVA_HOME/bin  

    LD_LIBRARY_PATH  

    Add the JDK library path: $JAVA_HOME/lib.  

  4. Grant the user that executes ncomp the following role and security permissions:


    Note:

    DBA role contains both the JAVA_DEPLOY role and the FilePermission for all files under $ORACLE_HOME.  


    1. JAVA_DEPLOY: The user must be assigned to the JAVA_DEPLOY role in order to be able to deploy the shared libraries on the server, which both the ncomp and deploync utilities perform. For example, the role is assigned to DAVE, as follows:

      SQL> GRANT JAVA_DEPLOY TO DAVE;
      
      
    2. FilePermission: JServer Accelerator stores the shared libraries with the natively compiled code on the server. In order for JServer Accelerator to store these libraries, the user must be granted FilePermission for read and write access to directories and files under $ORACLE_HOME on the server. One method for granting FilePermission for all desired directories is to grant the user the JAVASYSPRIV role, as follows:

      SQL> GRANT JAVASYSPRIV TO DAVE;
      
      

      See the Security chapter in the Oracle8i Java Developer's Guide for more information JAVASYSPRIV and granting FilePermission.

ncomp

JServer Accelerator, implemented within the ncomp tool, natively compiles all classes within the specified JAR, ZIP, or list of classes. JServer Accelerator natively compiles these classes and places them into shared libraries according to their package. Note that these classes must first be loaded into the database.

If the classes are designated within a JAR file and have already been loaded in the database, you can natively compile your Java classes by executing the following:

ncomp -user SCOTT/TIGER myClasses.jar


Note:

Because native compilation must compile and link all of your Java classes, this process may execute over the span of a few minutes or a few hours. The time involved depends on the number of classes to compile and the type of hardware on your machine.  


There are options that allow you control over how the details of native compilation are handled.

Syntax

ncomp [ options ] <class_designation_file>
  -user | -u <username>/<password>[@<database_url>]
  [-load]
  [-projectDir | -d <project_directory>]
  [-force]
  [-lightweightDeployment]
  [-noDeploy]
  [-outputJarFile | -o <jar_filename>]
  [-thin]
  [-oci8]
  [-update]
  [-verbose]


Note:

These options are demonstrated within the Scenarios described in "Native Compilation Usage Scenarios".  


Argument Summary

Table 1-56 summarizes the ncomp arguments. The <class_designation_file> can be a <file>.jar, <file>.zip, or <file>.classes.

Table 1-56 ncomp Argument Summary
Argument  Description and Values 

<file>.jar  

The full pathname and filename of a JAR file that contains the classes that are to be natively compiled. If you are executing in the directory where the JAR file exists and you do not specify the -projectDir option, you may give only the name of the JAR file.  

<file>.zip  

The full pathname and filename of a ZIP file that contains the classes that are to be natively compiled. If you are executing in the directory where the ZIP file exists and you do not specify the -projectDir option, you may give only the name of the ZIP file.  

<file>.classes  

The full pathname and filename of a classes file, which contains the list of classes to be natively compiled. If you are executing in the directory where the classes file exists and you do not specify the -projectDir option, you may give only the name of the classes file. See "Natively Compiling Specific Classes" for a description of a classes file.  

-user | -u <username>/<password>
[@<database>]
 

Specifies a user, password, and database connect string; the files will be loaded into this database instance. The argument has the form <username>/<password>[@<database>]. If you specify the database URL on this option, you must specify it with OCI8 syntax. To provide a JDBC Thin database URL, use the -thin option.  

-force  

The native compilation is performed on all classes. Previously compiled classes are not passed over.  

-lightweightDeployment  

Provides an option for deploying shared libraries and native compilation information separately. This is useful if you need to preserve resources when deploying. See "lightweightDeployment" for more information.  

-load  

Executes loadjava on the specified class designation file. You cannot use this option in combination with a <file>.classes file.  

-outputJarFile <jar_filename>  

All natively compiled classes output into a deployment JAR file. This option specifies the name of the deployment JAR file and its destination directory. If omitted, the ncomp tool names the output deployment JAR file the same name as the input <file> with "_depl.jar" appended as the suffix. If directory is not supplied, it stores the output JAR file into the project directory (denoted by -projectDir).  

-noDeploy  

Specifies that the native compilation results only in the output deployment JAR file, which is not deployed to the server. The resulting deployment JAR can be deployed to any server using the deploync tool.  

-thin  

The database URL that is provided on the -user option uses a JDBC Thin URL address for the database URL syntax.  

-oci8  

The database URL that is provided on the -user option uses an OCI8 URL address for the database URL syntax. However, if neither -oci8 or -thin are specified, the default assumes that you used an OCI8 database URL.  

-projectDir | -d <absolute_path>  

Specifies the full path for the project directory. If not specified, JServer Accelerator uses the directory that ncomp is invoked from as the project directory. This directory must exist; the tool will not create this directory for you. If it does not exist, the current directory is used.  

-update  

If you add more classes to a <class_designation_file> that has already been natively compiled, this flag informs JServer Accelerator to update the deployment JAR file with the new classes. Thus, JServer Accelerator compiles the new classes and adds them to the appropriate shared libraries. The deployment JAR file is updated.  

-verbose  

Output native compilation text with detail.  

Argument Details

user
{-user | -u} <user>/<password>[@<database>]

The permissible forms of @<database> depend on whether you specify -oci8 or -thin; -oci8 is the default.

lightweightDeployment

JServer Accelerator places compilation information and the compiled shared libraries in one JAR file, copies the shared libraries to $ORACLE_HOME/javavm/admin directory on the server, and deploys the compilation information to the server. If you want to place the shared libraries on the server yourself, you can do so through the lightweightDeployment option. The lightweightDeployment option enables you to do your deployment in two stages:

  1. Natively compile your JAR file with -noDeploy and -lightweightDeployment options. This creates an deployment JAR file with only ncomp information, such as transitive closure information. The shared libraries are not saved within the deployment JAR file. Thus, the deployment JAR file is much smaller.

  2. Deploy as follows:

    1. Copy all output shared libraries from the lib directory of the native compilation project directory to the server's $ORACLE_HOME/javavm/admin directory.

    2. Deploy the lightweight deployment JAR file to the server using deploync.

Errors

Any errors that occur during native compilation are printed to the screen. Any errors that occur during deployment of your shared libraries to the server or during runtime can be viewed with the statusnc tool or by referring to the JACCELERATOR$DLL_ERRORS table.

If an error is caught while natively compiling the designated classes, JServer Accelerator denotes these errors, abandons work on the current package, and continues its compilation task on the next package. The native compilation continues for the rest of the packages. The package with the class that contained the error will not be natively compiled at all.

After fixing the problem with the class, you can choose to do one of the following:

If you choose to not recompile the classes, but to load the correct Java class into the database, the corrected class and all classes that are included in the resolution validation for that class--whether located within the same shared library or a different shared library--will be executed in interpreted mode. That is, the JVM will not run these classes natively. All the other natively compiled classes will continue to execute in native format. When you execute the statusnc command on the reloaded class or any of its referred classes, they will have an NEED_NCOMPING status message.

Possible errors for a Java class:

  1. The Java class does not exist in the database. If you do not load the Java class into JServer, JServer Accelerator does not include the class in the shared library. The class is simply skipped.

  2. The Java class is invalid; that is, one of its references may not be found.

  3. Any Java class that is unresolved, JServer Accelerator will try to resolve it before natively compiling. However, if the class cannot be resolved, it is ignored by JServer Accelerator.

Possible errors for deployment of native compilation JAR file:

Native Compilation Usage Scenarios

The following scenarios demonstrate how each of the options for the ncomp tool can be used:

Natively Compiling on Test Platform--Java Classes Already Loaded in the Database

If all classes are loaded into the database and you have completed your testing of the application, you can request JServer Accelerator to natively compile the tested classes. JServer Accelerator takes in a JAR, ZIP, or list of classes to determine the packages and classes to be involved in the native compilation. The JServer Accelerator then retrieves all of the designated classes from the server, natively compiles them into shared libraries--each library containing a single package of classes.

Assuming that the classes have already been loaded within the server, you execute the following command to natively compile all classes listed within a class designation file, such as the pubProject.jar file, as follows:

ncomp -user SCOTT/TIGER pubProject.jar

If you change any of the classes within the class designation file and ask for recompilation, JServer Accelerator recompiles only the packages that contain the changed classes. It will not recompile all packages.

Natively Compiling Java Classes Not Loaded in the Database

Once tested, you may wish to natively compile the designated classes on another host than the test machine. Once you transfer the designated class file to this platform, the classes in this file must be loaded into the database before native compilation can occur. The following loads the classes through loadjava and then executes native compilation for the class designation file--pubProject.jar:

ncomp -user SCOTT/TIGER@dbhost:5521:orcl -thin -load pubProject.jar

Clean Compile and Generate Output for Future Deployment

If you want all classes within a class designation file to be recompiled--regardless of whether they were previously natively compiled--you execute ncomp with the -force option. You might want to use the -force option to ensure that all classes are compiled resulting in a deployment JAR file that can be deployed to other JServer databases. You can specify the native compilation deployment JAR file with the -outputJarFile option. The following forces a recompilation of all Java classes within the class designation file--pubProject.jar--and creates a deployment JAR file with the name of pubworks.jar:

ncomp -user SCOTT/TIGER -force -outputJarFile pubworks.jar pubProject.jar

The deployment JAR file contains the shared libraries for your classes and installation classes specified to these shared libraries. It does not contain the original Java classes. In order to deploy the natively compiled deployment JAR file to any JServer (of the appropriate platform type), you must do the following:

  1. Load the original Java classes into the destination server. In the previous example, the pubProject.jar file would be loaded into the database using the loadjava tool.

  2. Deploy the natively compiled deployment JAR file with the JServer Accelerator deploync tool, which is described in deploync.

Controlling Native Compilation Build Environment

By default, the JServer Accelerator uses the directory where ncomp is executed as its build environment. The JServer Accelerator downloads several class files into this directory, and then uses this directory for the compilation and linking process.

If you do not want to have JServer Accelerator put any of its files into the current directory, create a working directory, and specify this working directory as the project directory with the -projectDir option. The following directs JServer Accelerator to use /tmp/jaccel/pubComped as the build directory. This directory must exist before specifying it within the -projectDir option. JServer Accelerator will not create this directory for you.

ncomp -user SCOTT/TIGER -projectDir /tmp/jaccel/pubComped pubProject.jar

Natively Compiling Specific Classes

You can specify one or more classes, which are to be natively compiled, within a text-based <file>.classes file. You use the following Java syntax to specify packages and/or individual classes within this file:

Once explicitly listed, you specify the name and location of this class designation file on the command line. Given the following pubworks.classes file:

import COM.myDomain.myPackage.*;
import COM.myDomain.hisPackage.hisSubPackage.*;
import COM.myDomain.herPackage.herClass;
import COM.myDomain.petPackage.petClass;

The following directs JServer Accelerator to compile all classes designated within this file: all classes in myPackage, hisSubPackage and the individual classes, herClass and myClass. These classes must have already been loaded into the database:

ncomp -user SCOTT/TIGER /tmp/jaccel/pubComped/pubworks.classes

Natively Compiling Packages That Are Fully or Partially Modified

If you change any of the classes within this JAR file, JServer Accelerator will only recompile shared libraries that contain the changed classes. It will not recompile all shared libraries designated in the JAR file. However, if you want all classes within a JAR file to be recompiled--regardless of whether they were previously natively compiled--you execute ncomp with the -force option, as follows:

ncomp -user scott/tiger -force pubProject.JAR

deploync

You can deploy any deployment JAR file with the deploync command. This includes the default output JAR file, <file>_depl.jar or the JAR created when you used the ncomp -outputJarFile option. The operating system and Oracle8i database version must be the same as the platform where it was natively compiled.


Note:

The list of shared libraries deployed into JServer are listed within the JACCELERATOR$DLLS table.  


Syntax

deploync [options] <deployment>.jar
  -user | -u <username>/<password>[@<database_url>]
  [-projectDir | -d <project_directory>]
  [-thin]
  [-oci8]

Argument Summary

Table 1-57 summarizes the deploync arguments.

Table 1-57 deploync Argument Summary
Argument  Description and Values 

<deployment>.jar  

The full pathname and filename of a deployment JAR file. This JAR file is created when you specify the -outputJarFile option on the ncomp tool. Note that deploync does not verify that this is a native compilation deployment JAR.  

-user | -u <username>/<password>
[@<database>]
 

Specifies a user, password, and database connect string; the files will be loaded into this database instance. The argument has the form <username>/<password>[@<database>]. If you specify the database URL on this option, you must specify it with OCI8 syntax. To provide a JDBC Thin database URL, use the -thin option.  

-projectDir | -d <absolute_path>  

Specifies the full path for the project directory. If not specified, JServer Accelerator uses the directory that ncomp is invoked from as the project directory.  

-thin  

The database URL that is provided on the -user option uses a JDBC Thin URL address for the database URL syntax.  

-oci8  

The database URL that is provided on the -user option uses an OCI8 URL address for the database URL syntax. However, if neither -oci8 or -thin are specified, the default assumes that you used an OCI8 database URL.  

Example

Deploy the natively compiled deployment JAR file, pub.jar, to the dbhost database as follows:

deploync -user SCOTT/TIGER@dbhost:5521:orcl -thin /tmp/jaccel/PubComped/pub.jar

statusnc

After the native compilation is completed, you can check the status for your Java classes through the statusnc command. This tool will print out--either to the screen or to a designated file--the status of each class. In addition, the statusnc tool always saves the output within the JACCELERATOR$STATUS table. The values can be the following:

Class Native
Compilation Status
 
Description
 

ALREADY_NCOMPED  

The class is currently natively compiled.  

NEED_NCOMPING  

A class within the shared library was reloaded after native compilation. Thus, you should recompile this shared library.  

INVALID  

A class loaded in the database is invalid. JServer Accelerator tried to validate it and failed. The class will be excluded from the natively compiled shared library.  


Note:

The JACCELERATOR$STATUS table only contains the output from the last execution of the statusnc command. When executed, the statusnc command cleans out this table before writing the new records into it.  


Syntax

statusnc [ options ] <class_designation_file>
   -user <user>/<password>[@database]
   [-output | -o <filename>]
   [-projectDir | -d <directory>]
   [-thin]
   [-oci8]

Argument Summary

Table 1-58 summarizes the statusnc arguments. The <class_designation_file> can be a <file>.jar, <file>.zip, or <file>.classes.

Table 1-58 statusnc Argument Summary
Argument  Description 

<file>.jar  

The full pathname and filename of a JAR file that was natively compiled.  

<file>.zip  

The full pathname and filename of a ZIP file that was natively compiled.  

<file>.classes  

The full pathname and filename of a classes file, which contains the list of classes that was natively compiled. See "Natively Compiling Specific Classes" for a description of a classes file.  

-user | -u <username>/<password>
[@<database>]
 

Specifies a user, password, and database connect string where the files are loaded. The argument has the form <username>/<password>[@<database>]. If you specify the database URL on this option, you must specify it with OCI8 syntax. To provide a JDBC Thin database URL, use the -thin option.  

-output <filename>  

Designates that the statusnc should output to the specified text file rather than to the screen.  

-projectDir | -d <absolute_path>  

Specifies the full path for the project directory. If not specified, JServer Accelerator uses the directory that ncomp is invoked from as the project directory.  

-thin  

The database URL that is provided on the -user option uses a JDBC Thin URL address for the database URL syntax.  

-oci8  

The database URL that is provided on the -user option uses an OCI8 URL address for the database URL syntax. However, if neither -oci8 or -thin are specified, the default assumes that you used an OCI8 database URL.  

Example
statusnc -user SCOTT/TIGER -output pubStatus.txt /tmp/jaccel/PubComped/pub.jar


Go to previous page
Go to beginning of chapter
Go to next page
Oracle
Copyright © 1996-2000, Oracle Corporation.

All Rights Reserved.

Library

Solution Area

Contents

Index