446cf2
commit 659c0411880328ed341ca26b43d069ec5269a8b5
446cf2
Author: H.J. Lu <hjl.tools@gmail.com>
446cf2
Date:   Thu Jun 11 09:03:56 2020 -0700
446cf2
446cf2
    strcmp: Add a testcase for page boundary
446cf2
    
446cf2
    Add a strcmp testcase to cover cases where both strings end on the page
446cf2
    boundary.
446cf2
446cf2
diff --git a/string/test-strcmp.c b/string/test-strcmp.c
446cf2
index 8d4784de80..6a840fc04b 100644
446cf2
--- a/string/test-strcmp.c
446cf2
+++ b/string/test-strcmp.c
446cf2
@@ -359,6 +359,38 @@ check (void)
446cf2
     }
446cf2
 }
446cf2
 
446cf2
+static void
446cf2
+check2 (void)
446cf2
+{
446cf2
+  /* To trigger bug 25933, we need a size that is equal to the vector
446cf2
+     length times 4. In the case of AVX2 for Intel, we need 32 * 4.  We
446cf2
+     make this test generic and run it for all architectures as additional
446cf2
+     boundary testing for such related algorithms.  */
446cf2
+  size_t size = 32 * 4;
446cf2
+  CHAR *s1 = (CHAR *) (buf1 + (BUF1PAGES - 1) * page_size);
446cf2
+  CHAR *s2 = (CHAR *) (buf2 + (BUF1PAGES - 1) * page_size);
446cf2
+  int exp_result;
446cf2
+
446cf2
+  memset (s1, 'a', page_size);
446cf2
+  memset (s2, 'a', page_size);
446cf2
+  s1[(page_size / CHARBYTES) - 1] = (CHAR) 0;
446cf2
+  s2[(page_size / CHARBYTES) - 1] = (CHAR) 0;
446cf2
+
446cf2
+  /* Iterate over a size that is just below where we expect the bug to
446cf2
+     trigger up to the size we expect will trigger the bug e.g. [99-128].
446cf2
+     Likewise iterate the start of two strings between 30 and 31 bytes
446cf2
+     away from the boundary to simulate alignment changes.  */
446cf2
+  for (size_t s = 99; s <= size; s++)
446cf2
+    for (size_t s1a = 30; s1a < 32; s1a++)
446cf2
+      for (size_t s2a = 30; s2a < 32; s2a++)
446cf2
+	{
446cf2
+	  CHAR *s1p = s1 + (page_size / CHARBYTES - s) - s1a;
446cf2
+	  CHAR *s2p = s2 + (page_size / CHARBYTES - s) - s2a;
446cf2
+	  exp_result = SIMPLE_STRCMP (s1p, s2p);
446cf2
+	  FOR_EACH_IMPL (impl, 0)
446cf2
+	    check_result (impl, s1p, s2p, exp_result);
446cf2
+	}
446cf2
+}
446cf2
 
446cf2
 int
446cf2
 test_main (void)
446cf2
@@ -367,6 +399,7 @@ test_main (void)
446cf2
 
446cf2
   test_init ();
446cf2
   check();
446cf2
+  check2 ();
446cf2
 
446cf2
   printf ("%23s", "");
446cf2
   FOR_EACH_IMPL (impl, 0)