Skip to content

Commit b378c2f

Browse files
rscharfegitster
authored andcommitted
test-mergesort: use DEFINE_LIST_SORT
Build a typed sort function for the mergesort performance test tool using DEFINE_LIST_SORT instead of calling llist_mergesort(). This gets rid of the next pointer accessor functions and improves the performance at the cost of a slightly higher object text size. Before: 0071.12: llist_mergesort() unsorted 0.24(0.22+0.01) 0071.14: llist_mergesort() sorted 0.12(0.10+0.01) 0071.16: llist_mergesort() reversed 0.12(0.10+0.01) __TEXT __DATA __OBJC others dec hex 6407 276 0 24701 31384 7a98 t/helper/test-mergesort.o With this patch: 0071.12: DEFINE_LIST_SORT unsorted 0.22(0.21+0.01) 0071.14: DEFINE_LIST_SORT sorted 0.11(0.10+0.01) 0071.16: DEFINE_LIST_SORT reversed 0.11(0.10+0.01) __TEXT __DATA __OBJC others dec hex 6615 276 0 25832 32723 7fd3 t/helper/test-mergesort.o Signed-off-by: René Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f00a039 commit b378c2f

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

t/helper/test-mergesort.c

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,10 @@ struct line {
1313
struct line *next;
1414
};
1515

16-
static void *get_next(const void *a)
17-
{
18-
return ((const struct line *)a)->next;
19-
}
20-
21-
static void set_next(void *a, void *b)
22-
{
23-
((struct line *)a)->next = b;
24-
}
16+
DEFINE_LIST_SORT(static, sort_lines, struct line, next);
2517

26-
static int compare_strings(const void *a, const void *b)
18+
static int compare_strings(const struct line *x, const struct line *y)
2719
{
28-
const struct line *x = a, *y = b;
2920
return strcmp(x->text, y->text);
3021
}
3122

@@ -47,7 +38,7 @@ static int sort_stdin(void)
4738
p = line;
4839
}
4940

50-
lines = llist_mergesort(lines, get_next, set_next, compare_strings);
41+
sort_lines(&lines, compare_strings);
5142

5243
while (lines) {
5344
puts(lines->text);

t/perf/p0071-sort.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ done
4040

4141
for file in unsorted sorted reversed
4242
do
43-
test_perf "llist_mergesort() $file" "
43+
test_perf "DEFINE_LIST_SORT $file" "
4444
test-tool mergesort sort <$file >actual
4545
"
4646

47-
test_expect_success "llist_mergesort() $file sorts like sort(1)" "
47+
test_expect_success "DEFINE_LIST_SORT $file sorts like sort(1)" "
4848
test_cmp_bin sorted actual
4949
"
5050
done

0 commit comments

Comments
 (0)