Coverage Report - org.apache.commons.nabla.automatic.functions.Atan2Transformer12
 
Classes in this File Line Coverage Branch Coverage Complexity
Atan2Transformer12
100%
29/29
N/A
1
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one or more
 3  
  * contributor license agreements.  See the NOTICE file distributed with
 4  
  * this work for additional information regarding copyright ownership.
 5  
  * The ASF licenses this file to You under the Apache License, Version 2.0
 6  
  * (the "License"); you may not use this file except in compliance with
 7  
  * the License.  You may obtain a copy of the License at
 8  
  *
 9  
  *      http://www.apache.org/licenses/LICENSE-2.0
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.apache.commons.nabla.automatic.functions;
 18  
 
 19  
 import org.apache.commons.nabla.automatic.analysis.MethodDifferentiator;
 20  
 import org.apache.commons.nabla.core.DifferentiationException;
 21  
 import org.objectweb.asm.Opcodes;
 22  
 import org.objectweb.asm.tree.InsnList;
 23  
 import org.objectweb.asm.tree.InsnNode;
 24  
 import org.objectweb.asm.tree.MethodInsnNode;
 25  
 import org.objectweb.asm.tree.VarInsnNode;
 26  
 
 27  
 /** Differentiation transformer for the atan2 function invocation instructions.
 28  
  */
 29  1
 public class Atan2Transformer12 implements MathInvocationTransformer {
 30  
 
 31  
     /** {@inheritDoc} */
 32  
     public InsnList getReplacementList(final String owner, final MethodDifferentiator methodDifferentiator)
 33  
         throws DifferentiationException {
 34  
 
 35  2
         final int tmp1 = methodDifferentiator.getTmp(1);
 36  2
         final int tmp2 = methodDifferentiator.getTmp(2);
 37  2
         final int tmp3 = methodDifferentiator.getTmp(3);
 38  2
         final int tmp4 = methodDifferentiator.getTmp(4);
 39  
 
 40  
         // generate differential code
 41  
         // ... y0, y1, x0, x1  --> ...  atan2(y0, x0), (x0*y1x0*y1-x1*y00)/(x0^2+y0^2)
 42  2
         final InsnList list = new InsnList();
 43  2
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp4)); // => y0, y1, x0
 44  2
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp3)); // => y0, y1
 45  2
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp2)); // => y0
 46  2
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp1)); // =>
 47  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp1)); // => y0
 48  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp3)); // => y0, x0
 49  2
         list.add(new MethodInsnNode(Opcodes.INVOKESTATIC, owner, "atan2", DD_RETURN_D_DESCRIPTOR)); // => atan2(y0,x0)
 50  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp3)); // => atan2(y0,x0), x0
 51  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp2)); // => atan2(y0,x0), x0, y1
 52  2
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y0,x0), x0*y1
 53  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp4)); // => atan2(y0,x0), x0*y1, x1
 54  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp1)); // => atan2(y0,x0), x0*y1, x1, y0
 55  2
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y0,x0), x0*y1, x1*y0
 56  2
         list.add(new InsnNode(Opcodes.DSUB));            // => atan2(y0,x0), x0*y1-x1*y0
 57  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp3)); // => atan2(y0,x0), x0*y1-x1*y0, x0
 58  2
         list.add(new InsnNode(Opcodes.DUP2));            // => atan2(y0,x0), x0*y1-x1*y0, x0, x0
 59  2
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y0,x0), x0*y1-x1*y0, x0^2
 60  2
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp1)); // => atan2(y0,x0), x0*y1-x1*y0, x0^2, y0
 61  2
         list.add(new InsnNode(Opcodes.DUP2));            // => atan2(y0,x0), x0*y1-x1*y0, x0^2, y0, y0
 62  2
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y0,x0), x0*y1-x1*y0, x0^2, y0^2
 63  2
         list.add(new InsnNode(Opcodes.DADD));            // => atan2(y0,x0), x0*y1-x1*y0, x0^2+y0^2
 64  2
         list.add(new InsnNode(Opcodes.DDIV));            // => atan2(y0,x0), (x0*y1-x1*y0)/(x0^2+y0^2)
 65  2
         return list;
 66  
 
 67  
     }
 68  
 
 69  
 }