2018-04-11 07:20:56 +00:00
|
|
|
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2018-04-12 10:41:39 +00:00
|
|
|
load('sort-base.js');
|
2018-04-11 07:20:56 +00:00
|
|
|
|
2018-06-19 05:55:22 +00:00
|
|
|
createSortSuite('PackedSmi', 1000, Sort, CreatePackedSmiArray);
|
|
|
|
createSortSuite('PackedDouble', 1000, Sort, CreatePackedDoubleArray);
|
|
|
|
createSortSuite('PackedElement', 1000, Sort, CreatePackedObjectArray);
|
2018-04-11 07:20:56 +00:00
|
|
|
|
2018-06-19 05:55:22 +00:00
|
|
|
createSortSuite('HoleySmi', 1000, Sort, CreateHoleySmiArray);
|
|
|
|
createSortSuite('HoleyDouble', 1000, Sort, CreateHoleyDoubleArray);
|
|
|
|
createSortSuite('HoleyElement', 1000, Sort, CreateHoleyObjectArray);
|
2018-04-11 07:20:56 +00:00
|
|
|
|
2018-06-19 05:55:22 +00:00
|
|
|
createSortSuite('Dictionary', 1000, Sort, CreateDictionaryArray);
|