lshrdi3.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* More subroutines needed by GCC output code on some machines.  */
  2. /* Compile this one with gcc.  */
  3. /* Copyright (C) 1989, 92-98, 1999 Free Software Foundation, Inc.
  4. This file is part of GNU CC.
  5. GNU CC is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. GNU CC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GNU CC; see the file COPYING.  If not, write to
  15. the Free Software Foundation, 59 Temple Place - Suite 330,
  16. Boston, MA 02111-1307, USA.  */
  17. /* As a special exception, if you link this library with other files,
  18.    some of which are compiled with GCC, to produce an executable,
  19.    this library does not by itself cause the resulting executable
  20.    to be covered by the GNU General Public License.
  21.    This exception does not however invalidate any other reasons why
  22.    the executable file might be covered by the GNU General Public License.
  23.  */
  24. /* support functions required by the kernel. based on code from gcc-2.95.3 */
  25. /* I Molton     29/07/01 */
  26. #include "gcclib.h"
  27. DItype
  28. __lshrdi3 (DItype u, word_type b)
  29. {
  30.   DIunion w;
  31.   word_type bm;
  32.   DIunion uu;
  33.   if (b == 0)
  34.     return u;
  35.   uu.ll = u;
  36.   bm = (sizeof (SItype) * BITS_PER_UNIT) - b;
  37.   if (bm <= 0)
  38.     {
  39.       w.s.high = 0;
  40.       w.s.low = (USItype)uu.s.high >> -bm;
  41.     }
  42.   else
  43.     {
  44.       USItype carries = (USItype)uu.s.high << bm;
  45.       w.s.high = (USItype)uu.s.high >> b;
  46.       w.s.low = ((USItype)uu.s.low >> b) | carries;
  47.     }
  48.   return w.ll;
  49. }