/*
 
    Texel - A UCI chess engine.
 
    Copyright (C) 2012-2014  Peter Ă–sterlund, peterosterlund2@gmail.com
 
 
 
    This program is free software: you can redistribute it and/or modify
 
    it under the terms of the GNU General Public License as published by
 
    the Free Software Foundation, either version 3 of the License, or
 
    (at your option) any later version.
 
 
 
    This program 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 General Public License for more details.
 
 
 
    You should have received a copy of the GNU General Public License
 
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
*/
 
 
 
/*
 
 * util.cpp
 
 *
 
 *  Created on: Mar 2, 2012
 
 *      Author: petero
 
 */
 
 
 
#include "util.hpp"
 
 
 
static const int firstBitTable[32] = {
 
    0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30,
 
    8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31
 
};
 
 
 
int floorLog2(U32 x) {
 
    x |= x >> 1;
 
    x |= x >> 2;
 
    x |= x >> 4;
 
    x |= x >> 8;
 
    x |= x >> 16;
 
    return firstBitTable[(x * (U32)0x07c4acdd) >> 27];
 
}