mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
138 lines
3.8 KiB
C
138 lines
3.8 KiB
C
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* This file is copied from the coreboot repository as part of
|
|
* the libpayload project:
|
|
*
|
|
* Copyright 2014 Google Inc.
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
union overlay64 {
|
|
uint64_t longw;
|
|
struct {
|
|
uint32_t lower;
|
|
uint32_t higher;
|
|
} words;
|
|
};
|
|
|
|
uint64_t __ashldi3(uint64_t num, unsigned int shift) {
|
|
union overlay64 output;
|
|
|
|
output.longw = num;
|
|
if (shift >= 32) {
|
|
output.words.higher = output.words.lower << (shift - 32);
|
|
output.words.lower = 0;
|
|
} else {
|
|
if (!shift) return num;
|
|
output.words.higher = (output.words.higher << shift) |
|
|
(output.words.lower >> (32 - shift));
|
|
output.words.lower = output.words.lower << shift;
|
|
}
|
|
return output.longw;
|
|
}
|
|
|
|
uint64_t __lshrdi3(uint64_t num, unsigned int shift) {
|
|
union overlay64 output;
|
|
|
|
output.longw = num;
|
|
if (shift >= 32) {
|
|
output.words.lower = output.words.higher >> (shift - 32);
|
|
output.words.higher = 0;
|
|
} else {
|
|
if (!shift) return num;
|
|
output.words.lower = output.words.lower >> shift |
|
|
(output.words.higher << (32 - shift));
|
|
output.words.higher = output.words.higher >> shift;
|
|
}
|
|
return output.longw;
|
|
}
|
|
|
|
#define MAX_32BIT_UINT ((((uint64_t)1) << 32) - 1)
|
|
|
|
static uint64_t _64bit_divide(uint64_t dividend, uint64_t divider, uint64_t *rem_p) {
|
|
uint64_t result = 0;
|
|
|
|
/*
|
|
* If divider is zero - let the rest of the system care about the
|
|
* exception.
|
|
*/
|
|
if (!divider) return 1 / (uint32_t) divider;
|
|
|
|
/* As an optimization, let's not use 64 bit division unless we must. */
|
|
if (dividend <= MAX_32BIT_UINT) {
|
|
if (divider > MAX_32BIT_UINT) {
|
|
result = 0;
|
|
if (rem_p)
|
|
*rem_p = divider;
|
|
} else {
|
|
result = (uint32_t) dividend / (uint32_t) divider;
|
|
if (rem_p) *rem_p = (uint32_t) dividend % (uint32_t) divider;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
while (divider <= dividend) {
|
|
uint64_t locald = divider;
|
|
uint64_t limit = __lshrdi3(dividend, 1);
|
|
int shifts = 0;
|
|
|
|
while (locald <= limit) {
|
|
shifts++;
|
|
locald = locald + locald;
|
|
}
|
|
result |= __ashldi3(1, shifts);
|
|
dividend -= locald;
|
|
}
|
|
|
|
if (rem_p) *rem_p = dividend;
|
|
|
|
return result;
|
|
}
|
|
|
|
_unused
|
|
uint64_t __udivdi3(uint64_t num, uint64_t den) {
|
|
return _64bit_divide(num, den, NULL);
|
|
}
|
|
|
|
_unused
|
|
uint64_t __umoddi3(uint64_t num, uint64_t den) {
|
|
uint64_t v = 0;
|
|
_64bit_divide(num, den, &v);
|
|
return v;
|
|
}
|
|
|
|
// Returns the number of leading 0-bits in x, starting at the most significant bit position.
|
|
// If x is zero, the result is undefined.
|
|
_unused
|
|
int __clzsi2(unsigned x) {
|
|
// This uses a binary search (counting down) algorithm from Hacker's Delight.
|
|
unsigned y;
|
|
int n = 32;
|
|
y = x >>16; if (y != 0) {n = n -16; x = y;}
|
|
y = x >> 8; if (y != 0) {n = n - 8; x = y;}
|
|
y = x >> 4; if (y != 0) {n = n - 4; x = y;}
|
|
y = x >> 2; if (y != 0) {n = n - 2; x = y;}
|
|
y = x >> 1; if (y != 0) return n - 2;
|
|
return n - x;
|
|
}
|
|
|
|
// Returns the number of trailing 0-bits in x, starting at the least significant bit position.
|
|
// If x is zero, the result is undefined.
|
|
_unused
|
|
int __ctzsi2(unsigned x) {
|
|
// This uses a binary search algorithm from Hacker's Delight.
|
|
int n = 1;
|
|
if ((x & 0x0000FFFF) == 0) {n = n +16; x = x >>16;}
|
|
if ((x & 0x000000FF) == 0) {n = n + 8; x = x >> 8;}
|
|
if ((x & 0x0000000F) == 0) {n = n + 4; x = x >> 4;}
|
|
if ((x & 0x00000003) == 0) {n = n + 2; x = x >> 2;}
|
|
return n - (x & 1);
|
|
}
|
|
|
|
// Returns the index of the least significant 1-bit in x, or the value zero if x is zero.
|
|
// The least significant bit is index one.
|
|
_unused
|
|
int __ffsdi2 (unsigned x) {
|
|
return (x == 0) ? 0 : __builtin_ctz(x) + 1;
|
|
} |