< prev index next >

test/compiler/codegen/Test6909839.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 /**
  26  * @test
  27  * @bug 6909839
  28  * @summary missing unsigned compare cases for some cmoves in sparc.ad
  29  *
  30  * @run main/othervm -XX:+AggressiveOpts -Xbatch Test6909839
  31  */


  32 
  33 public class Test6909839 {
  34     public static void main(String[] args) {
  35         testi();
  36         testi();
  37         testi();
  38         testui();
  39         testui();
  40         testui();
  41         testdi();
  42         testdi();
  43         testdi();
  44         testfi();
  45         testfi();
  46         testfi();
  47 
  48         testl();
  49         testl();
  50         testl();
  51         testul();




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 /**
  26  * @test
  27  * @bug 6909839
  28  * @summary missing unsigned compare cases for some cmoves in sparc.ad
  29  *
  30  * @run main/othervm -XX:+AggressiveOpts -Xbatch compiler.codegen.Test6909839
  31  */
  32 
  33 package compiler.codegen;
  34 
  35 public class Test6909839 {
  36     public static void main(String[] args) {
  37         testi();
  38         testi();
  39         testi();
  40         testui();
  41         testui();
  42         testui();
  43         testdi();
  44         testdi();
  45         testdi();
  46         testfi();
  47         testfi();
  48         testfi();
  49 
  50         testl();
  51         testl();
  52         testl();
  53         testul();


< prev index next >