Sorted data is more cache friendly than is unsorted data, which is why mergesort performs slightly better when sorting sorted data
Finally, here’s a comparison sort times for clever-pivot quicksort and mergesort on sorted data
The usual conclusion is that, in general, the extra space isn’t worth it, and that clever-pivot quicksort wins.