/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Tests for SAD (sum of absolute differences). */ public class SadChar { /// CHECK-START: int SadChar.sad1(char, char) instruction_simplifier$after_gvn (before) /// CHECK-DAG: <> Select /// CHECK-DAG: Return [<>] // /// CHECK-START: int SadChar.sad2(char, char) instruction_simplifier$after_gvn (after) /// CHECK-DAG: <> Abs /// CHECK-DAG: Return [<>] static int sad2(char x, char y) { int diff = x - y; if (diff < 0) diff = -diff; return diff; } /// CHECK-START: int SadChar.sad3(char, char) instruction_simplifier$after_gvn (before) /// CHECK-DAG: <> Select /// CHECK-DAG: Return [<>] // /// CHECK-START: int SadChar.sad3Alt(char, char) instruction_simplifier$after_gvn (after) /// CHECK-DAG: <> Abs /// CHECK-DAG: Return [<>] static int sad3Alt(char x, char y) { int diff = x - y; return 0 <= diff ? diff : -diff; } /// CHECK-START: long SadChar.sadL1(char, char) instruction_simplifier$after_gvn (before) /// CHECK-DAG: <> Select /// CHECK-DAG: Return [<>] // /// CHECK-START: long SadChar.sadL2(char, char) instruction_simplifier$after_gvn (after) /// CHECK-DAG: <> Abs /// CHECK-DAG: Return [<>] static long sadL2(char x, char y) { long diff = x - y; if (diff < 0L) diff = -diff; return diff; } /// CHECK-START: long SadChar.sadL3(char, char) instruction_simplifier$after_gvn (before) /// CHECK-DAG: <> Select /// CHECK-DAG: Return [<>] // /// CHECK-START: long SadChar.sadL3Alt(char, char) instruction_simplifier$after_gvn (after) /// CHECK-DAG: <> Abs /// CHECK-DAG: Return [<>] static long sadL3Alt(char x, char y) { long diff = x - y; return 0L <= diff ? diff : -diff; } public static void main() { // Use cross-values to test all cases. char[] interesting = { (char) 0x0000, (char) 0x0001, (char) 0x007f, (char) 0x0080, (char) 0x0081, (char) 0x00ff, (char) 0x0100, (char) 0x0101, (char) 0x017f, (char) 0x0180, (char) 0x0181, (char) 0x01ff, (char) 0x7f00, (char) 0x7f01, (char) 0x7f7f, (char) 0x7f80, (char) 0x7f81, (char) 0x7fff, (char) 0x8000, (char) 0x8001, (char) 0x807f, (char) 0x8080, (char) 0x8081, (char) 0x80ff, (char) 0x8100, (char) 0x8101, (char) 0x817f, (char) 0x8180, (char) 0x8181, (char) 0x81ff, (char) 0xff00, (char) 0xff01, (char) 0xff7f, (char) 0xff80, (char) 0xff81, (char) 0xffff }; for (int i = 0; i < interesting.length; i++) { for (int j = 0; j < interesting.length; j++) { char x = interesting[i]; char y = interesting[j]; int e = Math.abs(x - y); expectEquals(e, sad1(x, y)); expectEquals(e, sad2(x, y)); expectEquals(e, sad3(x, y)); expectEquals(e, sad3Alt(x, y)); expectEquals(e, sadL1(x, y)); expectEquals(e, sadL2(x, y)); expectEquals(e, sadL3(x, y)); expectEquals(e, sadL3Alt(x, y)); } } System.out.println("SadChar passed"); } private static void expectEquals(int expected, int result) { if (expected != result) { throw new Error("Expected: " + expected + ", found: " + result); } } private static void expectEquals(long expected, long result) { if (expected != result) { throw new Error("Expected: " + expected + ", found: " + result); } } }