Manually tweak source formatting and then re-run clang-format
This commit is contained in:
parent
784b96d87f
commit
396a8d91a4
169 changed files with 805 additions and 809 deletions
|
@ -237,10 +237,8 @@ private:
|
|||
void ResetMPCoreCP15Registers();
|
||||
|
||||
// Defines a reservation granule of 2 words, which protects the first 2 words starting at the
|
||||
// tag.
|
||||
// This is the smallest granule allowed by the v7 spec, and is coincidentally just large enough
|
||||
// to
|
||||
// support LDR/STREXD.
|
||||
// tag. This is the smallest granule allowed by the v7 spec, and is coincidentally just large
|
||||
// enough to support LDR/STREXD.
|
||||
static const u32 RESERVATION_GRANULE_MASK = 0xFFFFFFF8;
|
||||
|
||||
u32 exclusive_tag; // The address for which the local monitor is in exclusive access mode
|
||||
|
|
|
@ -51,10 +51,10 @@
|
|||
* ===========================================================================
|
||||
*/
|
||||
|
||||
#include "core/arm/skyeye_common/vfp/vfp.h"
|
||||
#include <algorithm>
|
||||
#include "common/logging/log.h"
|
||||
#include "core/arm/skyeye_common/vfp/asm_vfp.h"
|
||||
#include "core/arm/skyeye_common/vfp/vfp.h"
|
||||
#include "core/arm/skyeye_common/vfp/vfp_helper.h"
|
||||
|
||||
static struct vfp_double vfp_double_default_qnan = {
|
||||
|
|
|
@ -280,13 +280,15 @@ static u32 vfp_single_fneg(ARMul_State* state, int sd, int unused, s32 m, u32 fp
|
|||
return 0;
|
||||
}
|
||||
|
||||
static const u16 sqrt_oddadjust[] = {0x0004, 0x0022, 0x005d, 0x00b1, 0x011d, 0x019f,
|
||||
0x0236, 0x02e0, 0x039c, 0x0468, 0x0545, 0x0631,
|
||||
0x072b, 0x0832, 0x0946, 0x0a67};
|
||||
static const u16 sqrt_oddadjust[] = {
|
||||
0x0004, 0x0022, 0x005d, 0x00b1, 0x011d, 0x019f, 0x0236, 0x02e0,
|
||||
0x039c, 0x0468, 0x0545, 0x0631, 0x072b, 0x0832, 0x0946, 0x0a67,
|
||||
};
|
||||
|
||||
static const u16 sqrt_evenadjust[] = {0x0a2d, 0x08af, 0x075a, 0x0629, 0x051a, 0x0429,
|
||||
0x0356, 0x029e, 0x0200, 0x0179, 0x0109, 0x00af,
|
||||
0x0068, 0x0034, 0x0012, 0x0002};
|
||||
static const u16 sqrt_evenadjust[] = {
|
||||
0x0a2d, 0x08af, 0x075a, 0x0629, 0x051a, 0x0429, 0x0356, 0x029e,
|
||||
0x0200, 0x0179, 0x0109, 0x00af, 0x0068, 0x0034, 0x0012, 0x0002,
|
||||
};
|
||||
|
||||
u32 vfp_estimate_sqrt_significand(u32 exponent, u32 significand) {
|
||||
int index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue