ptr_cmp.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.   get_ptr_compare(len) returns a pointer to a optimal byte-compare function
  19.   for a array of stringpointer where all strings have size len.
  20.   The bytes are compare as unsigned chars.
  21.   Because the size is saved in a static variable.
  22.   When using threads the program must have called my_init and the thread
  23.   my_init_thread()
  24.   */
  25. #include "mysys_priv.h"
  26. static int ptr_compare(uint *compare_length, uchar **a, uchar **b);
  27. static int ptr_compare_0(uint *compare_length, uchar **a, uchar **b);
  28. static int ptr_compare_1(uint *compare_length, uchar **a, uchar **b);
  29. static int ptr_compare_2(uint *compare_length, uchar **a, uchar **b);
  30. static int ptr_compare_3(uint *compare_length, uchar **a, uchar **b);
  31. /* Get a pointer to a optimal byte-compare function for a given size */
  32. qsort2_cmp get_ptr_compare (uint size)
  33. {
  34.   if (size < 4)
  35.     return (qsort2_cmp) ptr_compare;
  36.   switch (size & 3) {
  37.     case 0: return (qsort2_cmp) ptr_compare_0;
  38.     case 1: return (qsort2_cmp) ptr_compare_1;
  39.     case 2: return (qsort2_cmp) ptr_compare_2;
  40.     case 3: return (qsort2_cmp) ptr_compare_3;
  41.     }
  42.   return 0; /* Impossible */
  43. }
  44. /*
  45.   Compare to keys to see witch is smaller.
  46.   Loop unrolled to make it quick !!
  47. */
  48. #define cmp(N) if (first[N] != last[N]) return (int) first[N] - (int) last[N]
  49. static int ptr_compare(uint *compare_length, uchar **a, uchar **b)
  50. {
  51.   reg3 int length= *compare_length;
  52.   reg1 uchar *first,*last;
  53.   first= *a; last= *b;
  54.   while (--length)
  55.   {
  56.     if (*first++ != *last++)
  57.       return (int) first[-1] - (int) last[-1];
  58.   }
  59.   return (int) first[0] - (int) last[0];
  60. }
  61. static int ptr_compare_0(uint *compare_length,uchar **a, uchar **b)
  62. {
  63.   reg3 int length= *compare_length;
  64.   reg1 uchar *first,*last;
  65.   first= *a; last= *b;
  66.  loop:
  67.   cmp(0);
  68.   cmp(1);
  69.   cmp(2);
  70.   cmp(3);
  71.   if ((length-=4))
  72.   {
  73.     first+=4;
  74.     last+=4;
  75.     goto loop;
  76.   }
  77.   return (0);
  78. }
  79. static int ptr_compare_1(uint *compare_length,uchar **a, uchar **b)
  80. {
  81.   reg3 int length= *compare_length-1;
  82.   reg1 uchar *first,*last;
  83.   first= *a+1; last= *b+1;
  84.   cmp(-1);
  85.  loop:
  86.   cmp(0);
  87.   cmp(1);
  88.   cmp(2);
  89.   cmp(3);
  90.   if ((length-=4))
  91.   {
  92.     first+=4;
  93.     last+=4;
  94.     goto loop;
  95.   }
  96.   return (0);
  97. }
  98. static int ptr_compare_2(uint *compare_length,uchar **a, uchar **b)
  99. {
  100.   reg3 int length= *compare_length-2;
  101.   reg1 uchar *first,*last;
  102.   first= *a +2 ; last= *b +2;
  103.   cmp(-2);
  104.   cmp(-1);
  105.  loop:
  106.   cmp(0);
  107.   cmp(1);
  108.   cmp(2);
  109.   cmp(3);
  110.   if ((length-=4))
  111.   {
  112.     first+=4;
  113.     last+=4;
  114.     goto loop;
  115.   }
  116.   return (0);
  117. }
  118. static int ptr_compare_3(uint *compare_length,uchar **a, uchar **b)
  119. {
  120.   reg3 int length= *compare_length-3;
  121.   reg1 uchar *first,*last;
  122.   first= *a +3 ; last= *b +3;
  123.   cmp(-3);
  124.   cmp(-2);
  125.   cmp(-1);
  126.  loop:
  127.   cmp(0);
  128.   cmp(1);
  129.   cmp(2);
  130.   cmp(3);
  131.   if ((length-=4))
  132.   {
  133.     first+=4;
  134.     last+=4;
  135.     goto loop;
  136.   }
  137.   return (0);
  138. }