Class CompilerService

  • All Implemented Interfaces:
    ICompilerService

    public class CompilerService
    extends java.lang.Object
    implements ICompilerService
    Controlling/service class for compilation of expressions to Java bytecode
    • Field Detail

      • tracePoint

        public static int tracePoint
      • mostRecentLineNumber

        public int mostRecentLineNumber
    • Method Detail

      • isLanguagePrimitiveType

        public static boolean isLanguagePrimitiveType​(AtomicType targetType)
      • isDisplayByteCode

        public boolean isDisplayByteCode()
      • isDebugByteCode

        public boolean isDebugByteCode()
      • createPrintWriter

        public java.io.PrintWriter createPrintWriter​(java.lang.String filename)
      • getNamedExpressionCompiler

        public ExpressionCompiler getNamedExpressionCompiler​(java.lang.String name)
      • addNewMethod

        public void addNewMethod​(ExpressionCompiler ec,
                                 Expression e)
        The methods adds the
        Parameters:
        ec - - The ExpressionCompiler that needs to generate a method
        e - - The expression represented by the Expressioncompiler
      • compileToSequence

        public void compileToSequence​(Expression expression)
                               throws CannotCompileException
        Compile code to evaluate a variable reference, or any other expresssion, leaving a Sequence on the stack
        Parameters:
        expression - the expression to be compiled
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • getCompiledClass

        public java.lang.Class getCompiledClass​(Expression expr)
      • setCompiledClass

        public void setCompiledClass​(Expression expr,
                                     java.lang.Class clss)
      • getUniqueNumber

        public static int getUniqueNumber()
        Get a unique number which is different from any other number allocated by a call on this method, for the same CompilerService instance
        Returns:
        a unique number
      • pushNewOutputterInfo

        public void pushNewOutputterInfo​(Generator ga)
        Generate code to set a new current Outputter on the top of the receiver stack.

        Runtime precondition: the new Outputter is on the top of the bytecode stack

        Runtime postcondition: the new Outputter is now the current receiver; the previous current receiver has been added to the receiver stack. The top entry from the bytecode stack has been consumed.

        Parameters:
        ga - the code generator
      • popOutputterInfo

        public void popOutputterInfo()
        Generate code to reinstate the previous current receiver by popping it from the receiver stack.

        Runtime precondition: there is a non-empty receiver stack

        Runtime postcondition: the top entry in the receiver stack has been removed from the receiver stack and is now the current receiver.

      • pushNewMethodInfo

        public void pushNewMethodInfo​(Generator ga,
                                      boolean contextIsArgument,
                                      int contextVariablePosition,
                                      int outputterVariablePosition)
      • initNewMethod

        public void initNewMethod​(Generator ga,
                                  boolean holdReceiverAsLocal)
        Initialize context information for a new method. On entry, the XPathContext object must be on the top of stack.
        Parameters:
        ga - the code generator
        holdReceiverAsLocal - true if a local variable on the bytecode stack is to be allocated to hold the current receiver; if false, the receiver is obtained via the context when required
      • pushNewClassInfo

        public void pushNewClassInfo​(java.lang.String className,
                                     java.lang.Class superclass,
                                     org.objectweb.asm.ClassWriter cw)
      • getConfiguration

        public Configuration getConfiguration()
        Get the Configuration used by this CompilerService
        Returns:
        the Saxon Configuration
      • getFlags

        public int getFlags()
        Get the flag options used by the ClassWriter
        Returns:
        the flags set
      • compileToByteCode

        public CompiledExpression compileToByteCode​(Expression expr,
                                                    java.lang.String objectName,
                                                    int evaluationModes)
                                             throws CannotCompileException
        Compile a top-level expression to bytecode, and return the resulting expression
        Parameters:
        expr - The expression to be compiled
        objectName - The name of the object (e.g. function) being compiled
        evaluationModes - The evaluation modes for which code is generated. Currently a subset of Expression.PROCESS_METHOD, Expression.ITERATE_METHOD, Expression.EVALUATE_METHOD. If no code is generated for a given evaluation method, the fallback implementation from the superclass is used.
        Returns:
        The compiled expression if compilation was possible; otherwise null
        Throws:
        CannotCompileException
      • compileToIterator

        public void compileToIterator​(Expression expr)
                               throws CannotCompileException
        Generate bytecode to evaluate an expression leaving a SequenceIterator on the stack
        Parameters:
        expr - the expression to be evaluated
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • compileToPush

        public void compileToPush​(Expression expr)
                           throws CannotCompileException
        Generate bytecode to evaluate an expression by writing events to the current Outputter (leaving nothing on the stack at execution time)
        Parameters:
        expr - the expression to be evaluated
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • compileToItem

        public void compileToItem​(Expression expr)
                           throws CannotCompileException
        Generate bytecode to evaluate an expression leaving either an Item or null on the stack (null indicating that the expression evaluated to an empty sequence).
        Parameters:
        expr - the expression to be evaluated
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • compileToBoolean

        public void compileToBoolean​(Expression expr)
                              throws CannotCompileException
        Generate bytecode to evaluate an expression leaving a boolean on the stack. The boolean represents the effective boolean value of the result of the evaluation. This method must be implemented for all expressions except where it is statically known that the expression has no effective boolean value
        Parameters:
        expr - the expression to be evaluated
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • compileToPrimitive

        public void compileToPrimitive​(Expression expr,
                                       java.lang.Class c)
                                throws CannotCompileException
        Generate bytecode to evaluate an expression leaving a primitive on the stack. The primitive represents the effective value of the result of the evaluation.
        Parameters:
        expr - the expression to be evaluated
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • isInRangeForInt

        public boolean isInRangeForInt​(Expression exp)
      • isInRangeForLong

        public boolean isInRangeForLong​(Expression exp)
      • compileToPrimitive

        public void compileToPrimitive​(Expression expr,
                                       java.lang.Class requiredClass,
                                       OnEmpty onEmpty)
                                throws CannotCompileException
        Compile an expression that returns a singleton (or empty) result of type xs:double, xs:float, xs:string, xs:untypedAtomic. An ExpressionCompiler must support this method if the expression is known statically to return one of these types. The code generated will leave an "unboxed" result on the bytecode stack: specifically a double, a float, a String or CharSequence.
        Parameters:
        expr - the expression to be compiled
        requiredClass - the required class. For an expression with static type xs:double, this will be Double.TYPE; for xs:float it will be Float.TYPE; for xs:string and xs:untypedAtomic it may be either String.class or CharSequence.class. The expression compiler MUST generate code that leaves this class of value on the top of the bytecode stack. For an expression whose static type is xs:integer, the requiredClass may be Integer.TYPE or Long.TYPE, provided that either (a) the expression is known always to deliver a value in the range of an int or long respectively, or (b) that any other value would exceed system limits in the context where it is used (for example, if it is used as an index into a sequence then it cannot exceed a 32-bit integer). All expressions that have a static type of xs:integer must therefore implement this method.
        onEmpty - action to be taken when the expression returns an empty result.
        Throws:
        CannotCompileException - if the expression cannot be compiled
      • getCurrentGenerator

        public Generator getCurrentGenerator()
      • popCurrentMethodInfo

        public void popCurrentMethodInfo()
      • generateGetContext

        public void generateGetContext()
        Generate code to load the current XPathContext, leaving it on the top of the stack
      • generateGetOutputter

        public void generateGetOutputter()
        Generate code to load the current Outputter, leaving it on the top of the stack
      • generateDynamicError

        public void generateDynamicError​(java.lang.String message,
                                         java.lang.String errorCode,
                                         javax.xml.transform.SourceLocator locator,
                                         boolean isTypeError)
        Generate code to throw an XPathException. This can only be used if all properties of the exception including the message are known statically.
        Parameters:
        message - the error message
        errorCode - the (local part of the) error code to be generated
        locator - the location in the source code where the error occurs
        isTypeError - true if this is a type error
      • generateParameterizedDynamicError

        public void generateParameterizedDynamicError​(MessageBuilder builder,
                                                      java.lang.String errorCode,
                                                      javax.xml.transform.SourceLocator locator,
                                                      boolean isTypeError)
        Generate code to throw an XPath Exception. The message is constructed at runtime using the MessageBuilder.
        Parameters:
        builder - the error message builder. This generates code to build the error message at run-time and leave it on the stack
        errorCode - the (local part of the) error code to be generated
        locator - the location in the source code where the error occurs
        isTypeError - true if this is a type error
      • makeClass

        public java.lang.Class makeClass​(org.objectweb.asm.ClassWriter writer,
                                         java.lang.String className)
        Having written the bytecode for all the methods for a class, create the Class itself so it can be used
        Parameters:
        writer - the writer that was used to create the class
        className - the name of the class
        Returns:
        the constructed Class object
      • allocateStaticVariableInfo

        public CompilerService.StaticVariableInfo allocateStaticVariableInfo​(java.lang.Object value)
        Create a StaticVariableInfo containing the information needed to allow a static reference to a given object to be added as a static field in the currently-being-compiled class
        Parameters:
        value - the object to be referenced
        Returns:
        a StaticVariableInfo object, which will have been queued for later addition to the class
      • makeValidJavaName

        public java.lang.String makeValidJavaName​(java.lang.String name)
        Given a candidate Java name, make it into a valid Java name by removing surplus white spaces and truncating it to a maximum of 256 characters if length is greater than 256 characters.
        Parameters:
        name - a candidate Java name
        Returns:
        a valid Java name
      • makeAnnotatedTraceClassVisitor

        public org.objectweb.asm.ClassVisitor makeAnnotatedTraceClassVisitor​(org.objectweb.asm.ClassVisitor cv,
                                                                             java.lang.String className)
        Make a class visitor for displaying bytecode
        Parameters:
        cv - the class visitor