Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4636970

C2 sparc doesn't use hardware sqrt instruction

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.4.1
    • 1.4.1
    • hotspot
    • None
    • hopper
    • sparc
    • generic

      Based on some microbenchmark results, C2 on sparc doesn't appear to use the hardware instruction for square root since the square root intensive program below runs nearly 20x faster with the client compiler. On the x86, both C1 and C2 appear to use that processor's sqrt instruction.

      import java.util.*;

      public class SqrtMicrobench {

          public static void main(String[] argv) {
      long start1, end1;

      double data = 1.0;
      double sum = 0.0;
      double increment =0.0;

      // Find an ulp of 1.0
      increment = (1.0 + 1.1102230246251568e-16d) - 1.0;
      assert increment > 1.0;

      // want to run loop for millions of iterations; 2^53
      // floating-point numbers between 1.0 and 2.0, multiply
      // increment by 2^47 to get bigger granularity.
      increment *= (1<<47);

      start1 = System.currentTimeMillis();
      for(int i =0; i < 100000000; i++) {
      sum += Math.sqrt(data);
      data += increment;
      }
      System.out.println("Sum = " + sum);
      end1 = System.currentTimeMillis();
      System.out.println("Sqrt took " + (end1-start1) + " millseconds.");
          }
      }

            sdeversunw Steve Dever (Inactive)
            darcy Joe Darcy
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: