Coverage Report - org.apache.commons.nabla.automatic.functions.Atan2Transformer2
 
Classes in this File Line Coverage Branch Coverage Complexity
Atan2Transformer2
100%
24/24
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 Atan2Transformer2 implements MathInvocationTransformer {
 30  
 
 31  
     /** {@inheritDoc} */
 32  
     public InsnList getReplacementList(final String owner, final MethodDifferentiator methodDifferentiator)
 33  
         throws DifferentiationException {
 34  
 
 35  1
         final int tmp1 = methodDifferentiator.getTmp(1);
 36  1
         final int tmp2 = methodDifferentiator.getTmp(2);
 37  1
         final int tmp3 = methodDifferentiator.getTmp(3);
 38  
 
 39  
         // generate differential code
 40  
         // ... y, x0, x1  --> ...  atan2(y, x0), -x1*y/(x0^2+y^2)
 41  1
         final InsnList list = new InsnList();
 42  1
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp3)); // => y, x0
 43  1
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp2)); // => y
 44  1
         list.add(new VarInsnNode(Opcodes.DSTORE, tmp1)); // =>
 45  1
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp1)); // => y
 46  1
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp2)); // => y, x0
 47  1
         list.add(new MethodInsnNode(Opcodes.INVOKESTATIC, owner, "atan2", DD_RETURN_D_DESCRIPTOR)); // => atan2(y,x0)
 48  1
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp3)); // => atan2(y,x0), x1
 49  1
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp1)); // => atan2(y,x0), x1, y
 50  1
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y,x0), x1*y
 51  1
         list.add(new InsnNode(Opcodes.DNEG));            // => atan2(y,x0), -x1*y
 52  1
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp2)); // => atan2(y,x0), -x1*y, x0
 53  1
         list.add(new InsnNode(Opcodes.DUP2));            // => atan2(y,x0), -x1*y, x0, x0
 54  1
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y,x0), -x1*y, x0^2
 55  1
         list.add(new VarInsnNode(Opcodes.DLOAD,  tmp1)); // => atan2(y,x0), -x1*y, x0^2, y
 56  1
         list.add(new InsnNode(Opcodes.DUP2));            // => atan2(y,x0), -x1*y, x0^2, y, y
 57  1
         list.add(new InsnNode(Opcodes.DMUL));            // => atan2(y,x0), -x1*y, x0^2, y^2
 58  1
         list.add(new InsnNode(Opcodes.DADD));            // => atan2(y,x0), -x1*y, x0^2+y^2
 59  1
         list.add(new InsnNode(Opcodes.DDIV));            // => atan2(y,x0), -x1*y/(x0^2+y^2)
 60  1
         return list;
 61  
 
 62  
     }
 63  
 
 64  
 }