hotspot/src/share/vm/utilities/quickSort.cpp
author drchase
Fri, 09 May 2014 16:50:54 -0400
changeset 24424 2658d7834c6e
parent 17388 8193ee82efbe
child 27880 afb974a04396
permissions -rw-r--r--
8037816: Fix for 8036122 breaks build with Xcode5/clang Summary: Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17388
diff changeset
     2
 * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     4
 *
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     7
 * published by the Free Software Foundation.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     8
 *
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    13
 * accompanied this code).
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    14
 *
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    18
 *
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    21
 * questions.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    22
 *
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    23
 */
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    24
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    25
#include "precompiled.hpp"
10994
fc93bca9c720 7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents: 10672
diff changeset
    26
fc93bca9c720 7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents: 10672
diff changeset
    27
/////////////// Unit tests ///////////////
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    28
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    29
#ifndef PRODUCT
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    30
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    31
#include "runtime/os.hpp"
10994
fc93bca9c720 7102044: G1: VM crashes with assert(old_end != new_end) failed: don't call this otherwise
brutisso
parents: 10672
diff changeset
    32
#include "utilities/quickSort.hpp"
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
    33
#include "memory/allocation.hpp"
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
    34
#include "memory/allocation.inline.hpp"
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    35
#include <stdlib.h>
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    36
17379
fec16b38217a 8012292: optimized build with GCC broken
roland
parents: 17031
diff changeset
    37
#ifdef ASSERT
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    38
static int test_comparator(int a, int b) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    39
  if (a == b) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    40
    return 0;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    41
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    42
  if (a < b) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    43
    return -1;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    44
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    45
  return 1;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    46
}
17379
fec16b38217a 8012292: optimized build with GCC broken
roland
parents: 17031
diff changeset
    47
#endif // ASSERT
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    48
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    49
static int test_even_odd_comparator(int a, int b) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    50
  bool a_is_odd = (a % 2) == 1;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    51
  bool b_is_odd = (b % 2) == 1;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    52
  if (a_is_odd == b_is_odd) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    53
    return 0;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    54
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    55
  if (a_is_odd) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    56
    return -1;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    57
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    58
  return 1;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    59
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    60
10672
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    61
extern "C" {
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    62
  static int test_stdlib_comparator(const void* a, const void* b) {
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    63
    int ai = *(int*)a;
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    64
    int bi = *(int*)b;
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    65
    if (ai == bi) {
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    66
      return 0;
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    67
    }
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    68
    if (ai < bi) {
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    69
      return -1;
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    70
    }
446554f77598 7091366: re-enable quicksort tests
brutisso
parents: 10555
diff changeset
    71
    return 1;
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    72
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    73
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    74
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    75
void QuickSort::print_array(const char* prefix, int* array, int length) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    76
  tty->print("%s:", prefix);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    77
  for (int i = 0; i < length; i++) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    78
    tty->print(" %d", array[i]);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    79
  }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 17388
diff changeset
    80
  tty->cr();
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    81
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    82
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    83
bool QuickSort::compare_arrays(int* actual, int* expected, int length) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    84
  for (int i = 0; i < length; i++) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    85
    if (actual[i] != expected[i]) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    86
      print_array("Sorted array  ", actual, length);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    87
      print_array("Expected array", expected, length);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    88
      return false;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    89
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    90
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    91
  return true;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    92
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    93
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    94
template <class C>
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    95
bool QuickSort::sort_and_compare(int* arrayToSort, int* expectedResult, int length, C comparator, bool idempotent) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    96
  sort<int, C>(arrayToSort, length, comparator, idempotent);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    97
  return compare_arrays(arrayToSort, expectedResult, length);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    98
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
    99
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10994
diff changeset
   100
void QuickSort::test_quick_sort() {
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   101
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   102
    int* test_array = NULL;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   103
    int* expected_array = NULL;
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   104
    assert(sort_and_compare(test_array, expected_array, 0, test_comparator), "Empty array not handled");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   105
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   106
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   107
    int test_array[] = {3};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   108
    int expected_array[] = {3};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   109
    assert(sort_and_compare(test_array, expected_array, 1, test_comparator), "Single value array not handled");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   110
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   111
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   112
    int test_array[] = {3,2};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   113
    int expected_array[] = {2,3};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   114
    assert(sort_and_compare(test_array, expected_array, 2, test_comparator), "Array with 2 values not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   115
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   116
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   117
    int test_array[] = {3,2,1};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   118
    int expected_array[] = {1,2,3};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   119
    assert(sort_and_compare(test_array, expected_array, 3, test_comparator), "Array with 3 values not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   120
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   121
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   122
    int test_array[] = {4,3,2,1};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   123
    int expected_array[] = {1,2,3,4};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   124
    assert(sort_and_compare(test_array, expected_array, 4, test_comparator), "Array with 4 values not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   125
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   126
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   127
    int test_array[] = {7,1,5,3,6,9,8,2,4,0};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   128
    int expected_array[] = {0,1,2,3,4,5,6,7,8,9};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   129
    assert(sort_and_compare(test_array, expected_array, 10, test_comparator), "Array with 10 values not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   130
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   131
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   132
    int test_array[] = {4,4,1,4};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   133
    int expected_array[] = {1,4,4,4};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   134
    assert(sort_and_compare(test_array, expected_array, 4, test_comparator), "3 duplicates not sorted correctly");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   135
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   136
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   137
    int test_array[] = {0,1,2,3,4,5,6,7,8,9};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   138
    int expected_array[] = {0,1,2,3,4,5,6,7,8,9};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   139
    assert(sort_and_compare(test_array, expected_array, 10, test_comparator), "Already sorted array not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   140
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   141
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   142
    // one of the random arrays that found an issue in the partion method.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   143
    int test_array[] = {76,46,81,8,64,56,75,11,51,55,11,71,59,27,9,64,69,75,21,25,39,40,44,32,7,8,40,41,24,78,24,74,9,65,28,6,40,31,22,13,27,82};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   144
    int expected_array[] = {6,7,8,8,9,9,11,11,13,21,22,24,24,25,27,27,28,31,32,39,40,40,40,41,44,46,51,55,56,59,64,64,65,69,71,74,75,75,76,78,81,82};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   145
    assert(sort_and_compare(test_array, expected_array, 42, test_comparator), "Not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   146
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   147
  {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   148
    int test_array[] = {2,8,1,4};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   149
    int expected_array[] = {1,4,2,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   150
    assert(sort_and_compare(test_array, expected_array, 4, test_even_odd_comparator), "Even/odd not sorted correctly");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   151
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   152
  {  // Some idempotent tests
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   153
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   154
      // An array of lenght 3 is only sorted by find_pivot. Make sure that it is idempotent.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   155
      int test_array[] = {1,4,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   156
      int expected_array[] = {1,4,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   157
      assert(sort_and_compare(test_array, expected_array, 3, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   158
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   159
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   160
      int test_array[] = {1,7,9,4,8,2};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   161
      int expected_array[] = {1,7,9,4,8,2};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   162
      assert(sort_and_compare(test_array, expected_array, 6, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   163
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   164
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   165
      int test_array[] = {1,9,7,4,2,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   166
      int expected_array[] = {1,9,7,4,2,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   167
      assert(sort_and_compare(test_array, expected_array, 6, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   168
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   169
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   170
      int test_array[] = {7,9,1,2,8,4};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   171
      int expected_array[] = {7,9,1,2,8,4};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   172
      assert(sort_and_compare(test_array, expected_array, 6, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   173
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   174
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   175
      int test_array[] = {7,1,9,2,4,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   176
      int expected_array[] = {7,1,9,2,4,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   177
      assert(sort_and_compare(test_array, expected_array, 6, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   178
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   179
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   180
      int test_array[] = {9,1,7,4,8,2};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   181
      int expected_array[] = {9,1,7,4,8,2};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   182
      assert(sort_and_compare(test_array, expected_array, 6, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   183
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   184
    {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   185
      int test_array[] = {9,7,1,4,2,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   186
      int expected_array[] = {9,7,1,4,2,8};
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   187
      assert(sort_and_compare(test_array, expected_array, 6, test_even_odd_comparator, true), "Even/odd not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   188
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   189
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   190
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   191
  // test sorting random arrays
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   192
  for (int i = 0; i < 1000; i++) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   193
    int length = os::random() % 100;
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
   194
    int* test_array = NEW_C_HEAP_ARRAY(int, length, mtInternal);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
   195
    int* expected_array = NEW_C_HEAP_ARRAY(int, length, mtInternal);
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   196
    for (int j = 0; j < length; j++) {
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   197
        // Choose random values, but get a chance of getting duplicates
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   198
        test_array[j] = os::random() % (length * 2);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   199
        expected_array[j] = test_array[j];
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   200
    }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   201
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   202
    // Compare sorting to stdlib::qsort()
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   203
    qsort(expected_array, length, sizeof(int), test_stdlib_comparator);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   204
    assert(sort_and_compare(test_array, expected_array, length, test_comparator), "Random array not correctly sorted");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   205
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   206
    // Make sure sorting is idempotent.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   207
    // Both test_array and expected_array are sorted by the test_comparator.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   208
    // Now sort them once with the test_even_odd_comparator. Then sort the
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   209
    // test_array one more time with test_even_odd_comparator and verify that
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   210
    // it is idempotent.
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   211
    sort(expected_array, length, test_even_odd_comparator, true);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   212
    sort(test_array, length, test_even_odd_comparator, true);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   213
    assert(compare_arrays(test_array, expected_array, length), "Sorting identical arrays rendered different results");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   214
    sort(test_array, length, test_even_odd_comparator, true);
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   215
    assert(compare_arrays(test_array, expected_array, length), "Sorting already sorted array changed order of elements - not idempotent");
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   216
17376
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
   217
    FREE_C_HEAP_ARRAY(int, test_array, mtInternal);
4ee999c3c007 8012902: remove use of global operator new - take 2
minqi
parents: 17031
diff changeset
   218
    FREE_C_HEAP_ARRAY(int, expected_array, mtInternal);
10002
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   219
  }
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   220
}
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   221
2d83be3a0927 7016112: CMS: crash during promotion testing
brutisso
parents:
diff changeset
   222
#endif