计算机系统基础(实验一)

int lsbZero(int x) {
    
    
	return (x>>1)<<1;
}

int tmax(void) {
    
    
    return ~(1<<31);
}

int isZero(int x) {
    
    
  return !x;
}

int sign(int x) {
    
    
    int s = x>>31;
    int sig = ( s&(~0)) + ((!s) & (!!x));
    return sig;
}

int byteXor(int x, int y, int n) {
    
    
	int temp=((x^y)>>(x<<3))&0xFF;
    return !!temp;
}

int fitsBits(int x, int n) {
    
    
	int shiftnumber = 32+~n+1;
	int xx = x<<shiftnumber>>shiftnumber;
    return !(xx^x);
}

int isEqual(int x, int y) {
    
    
    return !(x^y);
}

int logicalShift(int x, int n) {
    
    
	return (x>>n)&(~((0x1<<31)>>n<<1));  
}

int rempwr2(int x, int n) {
    
    
	int p = (~0)<<n;
	int ans = x & (~p);
	return ans + (((x&(~ans+1))>>0x1F)&p);
    return 2;
}

int isLess(int x, int y) {
    
    
	int not_y = ~y;
	return (( ((x+not_y+1)&(x^not_y)) |(x&not_y) )>>0x1F;
}

int bitMask(int highbit, int lowbit) {
    
    
	int i=~0;
	return ( ((i<<height)<<1) ^ (i<<lowbit)) & (i<<lowbit) );
}

unsigned float_i2f(int x) {
    
    
    unsigned abs=x;
    unsigned s=0x80000000&x;
    unsigned tem=0x40000000;
    unsigned exp_sign=0;
    unsigned exp=0;
    unsigned frac;
    unsigned c=0;
    if(x==0)   return x;
    else if(x==0x80000000)
        return(s+(158<<23));
    else 
	{
    
    
        if(x<0)  abs=-x;
        while(1) {
    
    
            if(tem&abs)  break;
            tem=tem>>1;
            exp_sign=exp_sign+1;
        }
        frac=(tem-1)&abs;
        if(31-1-exp_sign>23) {
    
    
            inti=30-exp_sign-23;
            if((frac<<(31-(i-1)))==0x80000000) {
    
    
                if((frac&(1<<i))!=0)  c=1; 
            }
            else if((frac&(1<<(i-1)))!=0)  c=1; 
            frac=frac>>i;
        }
        else  frac=frac<<(23-(31-exp_sign-1));
        exp=157-exp_sign;
        return (s+(exp<<23)+frac+c);
    } 
}

int logicalNeg(int x) {
    
    
    return ~((x|(~x +1)) >> 31) & 0x1;
}

int isPower2(int x) {
    
    
    int mask = ~0;
    return (!(x & (x+mask)) & (!(x>>31)) & (~(!x)));
}

int trueThreeFourths(int x)
{
    
    
    int y = x & 0x3;
    x = x>>2;
    return (x<<1) + x + ( (y+y+y+ ( (x>>0x1F) & 0x3 )) >>2 );
}
/* 
 * CS:APP Data Lab 
 * 
 * <Please put your name and userid here>
 * 
 * bits.c - Source file with your solutions to the Lab.
 *          This is the file you will hand in to your instructor.
 *
 * WARNING: Do not include the <stdio.h> header; it confuses the dlc
 * compiler. You can still use printf for debugging without including
 * <stdio.h>, although you might get a compiler warning. In general,
 * it's not good practice to ignore compiler warnings, but in this
 * case it's OK.  
 */

#if 0
/*
 * Instructions to Students:
 *
 * STEP 1: Read the following instructions carefully.
 */

You will provide your solution to the Data Lab by
editing the collection of functions in this source file.

INTEGER CODING RULES:
 
  Replace the "return" statement in each function with one
  or more lines of C code that implements the function. Your code 
  must conform to the following style:
 
  int Funct(arg1, arg2, ...) {
    
    
      /* brief description of how your implementation works */
      int var1 = Expr1;
      ...
      int varM = ExprM;

      varJ = ExprJ;
      ...
      varN = ExprN;
      return ExprR;
  }

  Each "Expr" is an expression using ONLY the following:
  1. Integer constants 0 through 255 (0xFF), inclusive. You are
      not allowed to use big constants such as 0xffffffff.
  2. Function arguments and local variables (no global variables).
  3. Unary integer operations ! ~
  4. Binary integer operations & ^ | + << >>
    
  Some of the problems restrict the set of allowed operators even further.
  Each "Expr" may consist of multiple operators. You are not restricted to
  one operator per line.

  You are expressly forbidden to:
  1. Use any control constructs such as if, do, while, for, switch, etc.
  2. Define or use any macros.
  3. Define any additional functions in this file.
  4. Call any functions.
  5. Use any other operations, such as &&, ||, -, or ?:
  6. Use any form of casting.
  7. Use any data type other than int.  This implies that you
     cannot use arrays, structs, or unions.

 
  You may assume that your machine:
  1. Uses 2s complement, 32-bit representations of integers.
  2. Performs right shifts arithmetically.
  3. Has unpredictable behavior when shifting an integer by more
     than the word size.

EXAMPLES OF ACCEPTABLE CODING STYLE:
  /*
   * pow2plus1 - returns 2^x + 1, where 0 <= x <= 31
   */
  int pow2plus1(int x) {
    
    
     /* exploit ability of shifts to compute powers of 2 */
     return (1 << x) + 1;
  }

  /*
   * pow2plus4 - returns 2^x + 4, where 0 <= x <= 31
   */
  int pow2plus4(int x) {
    
    
     /* exploit ability of shifts to compute powers of 2 */
     int result = (1 << x);
     result += 4;
     return result;
  }

FLOATING POINT CODING RULES

For the problems that require you to implent floating-point operations,
the coding rules are less strict.  You are allowed to use looping and
conditional control.  You are allowed to use both ints and unsigneds.
You can use arbitrary integer and unsigned constants.

You are expressly forbidden to:
  1. Define or use any macros.
  2. Define any additional functions in this file.
  3. Call any functions.
  4. Use any form of casting.
  5. Use any data type other than int or unsigned.  This means that you
     cannot use arrays, structs, or unions.
  6. Use any floating point data types, operations, or constants.


NOTES:
  1. Use the dlc (data lab checker) compiler (described in the handout) to 
     check the legality of your solutions.
  2. Each function has a maximum number of operators (! ~ & ^ | + << >>)
     that you are allowed to use for your implementation of the function. 
     The max operator count is checked by dlc. Note that '=' is not 
     counted; you may use as many of these as you want without penalty.
  3. Use the btest test harness to check your functions for correctness.
  4. Use the BDD checker to formally verify your functions
  5. The maximum number of ops for each function is given in the
     header comment for each function. If there are any inconsistencies 
     between the maximum ops in the writeup and in this file, consider
     this file the authoritative source.

/*
 * STEP 2: Modify the following functions according the coding rules.
 * 
 *   IMPORTANT. TO AVOID GRADING SURPRISES:
 *   1. Use the dlc compiler to check that your solutions conform
 *      to the coding rules.
 *   2. Use the BDD checker to formally verify that your solutions produce 
 *      the correct answers.
 */


#endif
/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */
/* This header is separate from features.h so that the compiler can
   include it implicitly at the start of every compilation.  It must
   not itself include <features.h> or any other header that includes
   <features.h> because the implicit include comes before any feature
   test macros that may be defined in a source file before it first
   explicitly includes a system header.  GCC knows the name of this
   header in order to preinclude it.  */
/* glibc's intent is to support the IEC 559 math functionality, real
   and complex.  If the GCC (4.9 and later) predefined macros
   specifying compiler intent are available, use them to determine
   whether the overall intent is to support these features; otherwise,
   presume an older compiler has intent to support these features and
   define these macros by default.  */
/* wchar_t uses Unicode 8.0.0.  Version 8.0 of the Unicode Standard is
   synchronized with ISO/IEC 10646:2014, plus Amendment 1 (published
   2015-05-15).  */
/* We do not support C11 <threads.h>.  */
//第五组(2020)
/* 
 *   lsbZero - set 0 to the least significant bit of x 
 *   Example: lsbZero(0x87654321) = 0x87654320
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 5
 *   Rating: 1
 */
int lsbZero(int x) {
    
    
	return (x>>1)<<1;
}
/* 
 * TMax - return maximum two's complement integer 
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 4
 *   Rating: 1
 */
int tmax(void) {
    
    
    return ~(1<<31);
}
/*
 * isZero - returns 1 if x == 0, and 0 otherwise 
 *   Examples: isZero(5) = 0, isZero(0) = 1
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 2
 *   Rating: 1
 */
int isZero(int x) {
    
    
  return !x;
}
/* 
 * isNegative - return 1 if x < 0, return 0 otherwise 
 *   Example: isNegative(-1) = 1.
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 6
 *   Rating: 2
 */
int isNegative(int x) {
    
    
    return 2;
}
/* 
 * sign - return 1 if positive, 0 if zero, and -1 if negative
 *  Examples: sign(130) = 1
 *            sign(-23) = -1
 *  Legal ops: ! ~ & ^ | + << >>
 *  Max ops: 10
 *  Rating: 2
 */
int sign(int x) {
    
    
    int s = x>>31;
    int sig = ( s&(~0)) + ((!s) & (!!x));
    return sig;
}
/* 
 *   byteXor - compare the nth byte of x and y, if it is same, return 0, if not, return 1

 *   example: byteXor(0x12345678, 0x87654321, 1) = 1

 *			  byteXor(0x12345678, 0x87344321, 2) = 0
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 20
 *   Rating: 2 
 */
int byteXor(int x, int y, int n) {
    
    
	int temp=((x^y)>>(x<<3))&0xFF;
    return !!temp;
}
/* 
 * fitsBits - return 1 if x can be represented as an 
 *  n-bit, two's complement integer.
 *   1 <= n <= 32
 *   Examples: fitsBits(5,3) = 0, fitsBits(-4,3) = 1
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 15
 *   Rating: 2
 */
int fitsBits(int x, int n) {
    
    
	int shiftnumber = 32+~n+1;
	int xx = x<<shiftnumber>>shiftnumber;
    return !(xx^x);
}
/* 
 * isEqual - return 1 if x == y, and 0 otherwise 
 *   Examples: isEqual(5,5) = 1, isEqual(4,5) = 0
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 5
 *   Rating: 2
 */
int isEqual(int x, int y) {
    
    
    return !(x^y);
}
/* 
 * logicalShift - shift x to the right by n, using a logical shift
 *   Can assume that 0 <= n <= 31
 *   Examples: logicalShift(0x87654321,4) = 0x08765432
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 20
 *   Rating: 3 
 */
int logicalShift(int x, int n) {
    
    
	return (x>>n)&(~((0x1<<31)>>n<<1));  
}
/* 
 * rempwr2 - Compute x%(2^n), for 0 <= n <= 30
 *   Negative arguments should yield negative remainders
 *   Examples: rempwr2(15,2) = 3, rempwr2(-35,3) = -3
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 20
 *   Rating: 3
 */
int rempwr2(int x, int n) {
    
    
	int p = (~0)<<n;
	int ans = x & (~p);
	return ans + (((x&(~ans+1))>>0x1F)&p);
    return 2;
}
/* 
 * isLess - if x < y  then return 1, else return 0 
 *   Example: isLess(4,5) = 1.
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 24
 *   Rating: 3
 */
int isLess(int x, int y) {
    
    
	int not_y = ~y;
	return (( ((x+not_y+1)&(x^not_y)) |(x&not_y) )>>0x1F;
}
/* 
 * bitMask - Generate a mask consisting of all 1's 
 *   lowbit and highbit
 *   Examples: bitMask(5,3) = 0x38
 *   Assume 0 <= lowbit <= 31, and 0 <= highbit <= 31
 *   If lowbit > highbit, then mask should be all 0's
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 16
 *   Rating: 3
 */
int bitMask(int highbit, int lowbit) {
    
    
	int i=~0;
	return ( ((i<<height)<<1) ^ (i<<lowbit)) & (i<<lowbit) );
}
/* 
 * float_i2f - Return bit-level equivalent of expression (float) x
 *   Result is returned as unsigned int, but
 *   it is to be interpreted as the bit-level representation of a
 *   single-precision floating point values.
 *   Legal ops: Any integer/unsigned operations incl. ||, &&. also if, while
 *   Max ops: 30
 *   Rating: 4
 */
unsigned float_i2f(int x) {
    
    
    unsigned abs=x;
    unsigned s=0x80000000&x;
    unsigned tem=0x40000000;
    unsigned exp_sign=0;
    unsigned exp=0;
    unsigned frac;
    unsigned c=0;
    if(x==0)   return x;
    else if(x==0x80000000)
        return(s+(158<<23));
    else 
	{
    
    
        if(x<0)  abs=-x;
        while(1) {
    
    
            if(tem&abs)  break;
            tem=tem>>1;
            exp_sign=exp_sign+1;
        }
        frac=(tem-1)&abs;
        if(31-1-exp_sign>23) {
    
    
            inti=30-exp_sign-23;
            if((frac<<(31-(i-1)))==0x80000000) {
    
    
                if((frac&(1<<i))!=0)  c=1; 
            }
            else if((frac&(1<<(i-1)))!=0)  c=1; 
            frac=frac>>i;
        }
        else  frac=frac<<(23-(31-exp_sign-1));
        exp=157-exp_sign;
        return (s+(exp<<23)+frac+c);
    } 
}
/* 
 * logicalNeg - implement the ! operator, using all of 
 *              the legal operators except !
 *   Examples: logicalNeg(3) = 0, logicalNeg(0) = 1
 *   Legal ops: ~ & ^ | + << >>
 *   Max ops: 12
 *   Rating: 4 
 */
int logicalNeg(int x) {
    
    
    return ~((x|(~x +1)) >> 31) & 0x1;
}
/*
 * isPower2 - returns 1 if x is a power of 2, and 0 otherwise
 *   Examples: isPower2(5) = 0, isPower2(8) = 1, isPower2(0) = 0
 *   Note that no negative number is a power of 2.
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 20
 *   Rating: 4
 */
int isPower2(int x) {
    
    
    int mask = ~0;
    return (!(x & (x+mask)) & (!(x>>31)) & (~(!x)));
}
/*
 * parityCheck - returns 1 if x contains an odd number of 1's
 *   Examples: parityCheck(5) = 0, parityCheck(7) = 1
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 20
 *   Rating: 4
 */
int parityCheck(int x) {
    
    
  return 2;
}
/*
 * trueThreeFourths - multiplies by 3/4 rounding toward 0,
 *   avoiding errors due to overflow
 *   Examples: trueThreeFourths(11) = 8
 *             trueThreeFourths(-9) = -6
 *             trueThreeFourths(1073741824) = 805306368 (no overflow)
 *   Legal ops: ! ~ & ^ | + << >>
 *   Max ops: 20
 *   Rating: 4
 */
int trueThreeFourths(int x)
{
    
    
    int y = x & 0x3;
    x = x>>2;
    return (x<<1) + x + ( (y+y+y+ ( (x>>0x1F) & 0x3 )) >>2 );
}

猜你喜欢

转载自blog.csdn.net/Luoxiaobaia/article/details/109564226