⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lib2extra-funcs.c

📁 linux下编程用 编译软件
💻 C
字号:
/* Copyright (C) 2005 Free Software Foundation,This file is part of GCC.GCC is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the FreeSoftware Foundation; either version 2, or (at your option) any laterversion.In addition to the permissions in the GNU General Public License, theFree Software Foundation gives you unlimited permission to link thecompiled version of this file into combinations with other programs,and to distribute those combinations without any restriction comingfrom the use of this file.  (The General Public License restrictionsdo apply in other respects; for example, they cover modification ofthe file, and distribution when not linked into a combineexecutable.)GCC is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY orFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public Licensefor more details.You should have received a copy of the GNU General Public Licensealong with GCC; see the file COPYING.  If not, write to the FreeSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA02110-1301, USA.  */#define BITS_PER_UNIT	8typedef 	 int HItype		__attribute__ ((mode (HI)));typedef unsigned int UHItype		__attribute__ ((mode (HI)));typedef		 int SItype		__attribute__ ((mode (SI)));typedef unsigned int USItype		__attribute__ ((mode (SI)));typedef int word_type			__attribute__ ((mode (__word__)));struct SIstruct {HItype low, high;};typedef union{  struct SIstruct s;  SItype ll;} SIunion;SItype__lshrsi3 (SItype u, word_type b){  SIunion w;  word_type bm;  SIunion uu;  if (b == 0)    return u;  uu.ll = u;  bm = (sizeof (HItype) * BITS_PER_UNIT) - b;  if (bm <= 0)    {      w.s.high = 0;      w.s.low = (UHItype)uu.s.high >> -bm;    }  else    {      UHItype carries = (UHItype)uu.s.high << bm;      w.s.high = (UHItype)uu.s.high >> b;      w.s.low = ((UHItype)uu.s.low >> b) | carries;    }  return w.ll;}SItype__ashlsi3 (SItype u, word_type b){  SIunion w;  word_type bm;  SIunion uu;  if (b == 0)    return u;  uu.ll = u;  bm = (sizeof (HItype) * BITS_PER_UNIT) - b;  if (bm <= 0)    {      w.s.low = 0;      w.s.high = (UHItype)uu.s.low << -bm;    }  else    {      UHItype carries = (UHItype)uu.s.low >> bm;      w.s.low = (UHItype)uu.s.low << b;      w.s.high = ((UHItype)uu.s.high << b) | carries;    }  return w.ll;}SItype__ashrsi3 (SItype u, word_type b){  SIunion w;  word_type bm;  SIunion uu;  if (b == 0)    return u;  uu.ll = u;  bm = (sizeof (HItype) * BITS_PER_UNIT) - b;  if (bm <= 0)    {      /* w.s.high = 1..1 or 0..0 */      w.s.high = uu.s.high >> (sizeof (HItype) * BITS_PER_UNIT - 1);      w.s.low = uu.s.high >> -bm;    }  else    {      UHItype carries = (UHItype)uu.s.high << bm;      w.s.high = uu.s.high >> b;      w.s.low = ((UHItype)uu.s.low >> b) | carries;    }  return w.ll;}USItype__mulsi3 (USItype a, USItype b){  USItype c = 0;  while (a != 0)    {      if (a & 1)	c += b;      a >>= 1;      b <<= 1;    }  return c;}USItypeudivmodsi4(USItype num, USItype den, word_type modwanted){  USItype bit = 1;  USItype res = 0;  while (den < num && bit && !(den & (1L<<31)))    {      den <<=1;      bit <<=1;    }  while (bit)    {      if (num >= den)	{	  num -= den;	  res |= bit;	}      bit >>=1;      den >>=1;    }  if (modwanted) return num;  return res;}SItype__divsi3 (SItype a, SItype b){  word_type neg = 0;  SItype res;  if (a < 0)    {      a = -a;      neg = !neg;    }  if (b < 0)    {      b = -b;      neg = !neg;    }  res = udivmodsi4 (a, b, 0);  if (neg)    res = -res;  return res;}SItype__modsi3 (SItype a, SItype b){  word_type neg = 0;  SItype res;  if (a < 0)    {      a = -a;      neg = 1;    }  if (b < 0)    b = -b;  res = udivmodsi4 (a, b, 1);  if (neg)    res = -res;  return res;}SItype__udivsi3 (SItype a, SItype b){  return udivmodsi4 (a, b, 0);}SItype__umodsi3 (SItype a, SItype b){  return udivmodsi4 (a, b, 1);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -