DBMS_JAVA_DEFINERS.DECODE_NATIVE_COMPILER_OPTION_('OPTIMIZATIONSLEVEL','HIGH')
------------------------------------------------------------------------------
High
DBMS_JAVA_DEFINERS.GET_NTH_NATIVE_COMPILER_OPTION(1)
----------------------------------------------------
Option 'asyncPollLevel'
Level of polling used by generated code.
Asycynchronous events (such as Ctrl-C interrupt) are polled for in
compiled code. This option specifies how compiled-code should poll
for these events.
Values:
SysEventsOnly - Poll on System-events (such as GC) only. This is default.
MethodEntry - Poll on each method-entry.
MethodEntryAndBranches - Poll on each method-entry and backwards-branch.
Format:
'asyncPollLevel', '<value>'
DBMS_JAVA_DEFINERS.GET_NTH_NATIVE_COMPILER_OPTION(2)
----------------------------------------------------
Option 'debugTraceLevel'
Level of debugging trace used by the compiler.
Values:
None - No debugging. This is default.
Minimal - Minimal debugging.
OptimizationsSummary - Minimal debugging and summarize optimizer decisions.
OptimizationsDetail - Minimal debugging and detail optimizer decisions.
Verbose - Verbose debugging.
All - All debugging.
Format:
'debugTraceLevel', '<value>'
DBMS_JAVA_DEFINERS.GET_NTH_NATIVE_COMPILER_OPTION(3)
----------------------------------------------------
Option 'debugAssertLevel'
Level of debugging assertions used by the compiler.
Values:
None - No assertions. This is default.
Minimal - Minimal assertions.
All - All assertions.
Format:
'debugAssertLevel', '<value>'
DBMS_JAVA_DEFINERS.GET_NTH_NATIVE_COMPILER_OPTION(4)
----------------------------------------------------
Option 'optimizationsLevel'
Default optimization level of the compiler.
Setting this option modifies the default value of several individual
optimizations. Any value specified for individual optimizations override these
defaults. Note that the machine code of methods compiled with a lower
than default optimization level is saved in the database and reused in subsequent
database invocations, despite any higher subsequent optimization level setting.
Values:
High - All optimizations. This is the default default.
Medium - Medium optimizations. Avoid optimizations that significantly increase compile time.
When Medium is specified, the following optimzations are disabled by default:
optimizerSIMD
optimizerLoopBoundsCheckElimination
optimizerLoopUnrollOptimization
optimizerPartialRedundancyElimination
graphColoringRegAlloc
Low - Minimal optimizations.
When Low is specified, the following additional optimzations are disabled by default:
optimizerMethodInlining
optimizerHnumConditionalMethodInlining
optimizerEagerlyCompileForInlining
optimizerInlineExternalMethods
optimizerInlineExceptionalMethods
optimizerLoadStoreElimination
optimizerBoundsCheckRemoval
optimizerInlineNonLeafMethods
optimizerBoundsCheckRemovalSubtractionVertices
optimizerLoopLICMOptimization
optimizerConditionalMoves
optimizerAnnotationConstraints
optimizerWellKnownMethods
optimizerExceptionTraceHandling
optimizerOperationCombining
optimizerStaticProfileAnalysis
regallocPartitionRegisters
regallocCoalesceSpillLoadsStores
scheduleInstructions
None - No optimizations.
When None is specified, the following additional optimzations are disabled by default:
optimizerLoopPagedConversion
optimizerThrowConversion
optimizerBranchElimination
optimizerBranchSimplification
optimizerCopyPropagation
optimizerDeadCodeElimination
optimizerConstantFolding
optimizerCommonSubexpressionElimination
optimizerTypePropagation
optimizerStrengthReduction
optimizerCombineDivMod
optimizerBatchWKExceptions
optimizerSlowpathsOOL
regallocGenerateGCMaps
Format:
'optimizationsLevel', '<value>'
Decompile the method specified by the name and Java type signature defined by the class identified by classname in the supplied schema
dbms_java_definers.uncompile_method_(
schema IN VARCHAR2,
classname IN VARCHAR2,
methodname IN VARCHAR2,
methodsig IN VARCHAR2,
permanentp IN NUMBER)
RETURN NUMBER;