diff options
| author | 2015-12-06 15:03:06 -0500 | |
|---|---|---|
| committer | 2015-12-06 15:03:06 -0500 | |
| commit | d03e7f08ff0f6ddbc98a92c01ad013128d9ba564 (patch) | |
| tree | 6e7a6dda60436c57042e5fab9e7ede23a1da4894 /src/core/arm/skyeye_common | |
| parent | Merge pull request #1252 from Subv/cam (diff) | |
| download | yuzu-d03e7f08ff0f6ddbc98a92c01ad013128d9ba564.tar.gz yuzu-d03e7f08ff0f6ddbc98a92c01ad013128d9ba564.tar.xz yuzu-d03e7f08ff0f6ddbc98a92c01ad013128d9ba564.zip | |
dyncom: const correctness changes
Diffstat (limited to 'src/core/arm/skyeye_common')
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfp_helper.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/arm/skyeye_common/vfp/vfp_helper.h b/src/core/arm/skyeye_common/vfp/vfp_helper.h index 91a8d4d57..3358ff1d9 100644 --- a/src/core/arm/skyeye_common/vfp/vfp_helper.h +++ b/src/core/arm/skyeye_common/vfp/vfp_helper.h | |||
| @@ -249,7 +249,7 @@ enum : u32 { | |||
| 249 | VFP_SNAN = (VFP_NAN|VFP_NAN_SIGNAL) | 249 | VFP_SNAN = (VFP_NAN|VFP_NAN_SIGNAL) |
| 250 | }; | 250 | }; |
| 251 | 251 | ||
| 252 | static inline int vfp_single_type(vfp_single* s) | 252 | static inline int vfp_single_type(const vfp_single* s) |
| 253 | { | 253 | { |
| 254 | int type = VFP_NUMBER; | 254 | int type = VFP_NUMBER; |
| 255 | if (s->exponent == 255) { | 255 | if (s->exponent == 255) { |
| @@ -293,7 +293,7 @@ static inline void vfp_single_unpack(vfp_single* s, s32 val, u32* fpscr) | |||
| 293 | 293 | ||
| 294 | // Re-pack a single-precision float. This assumes that the float is | 294 | // Re-pack a single-precision float. This assumes that the float is |
| 295 | // already normalised such that the MSB is bit 30, _not_ bit 31. | 295 | // already normalised such that the MSB is bit 30, _not_ bit 31. |
| 296 | static inline s32 vfp_single_pack(vfp_single* s) | 296 | static inline s32 vfp_single_pack(const vfp_single* s) |
| 297 | { | 297 | { |
| 298 | u32 val = (s->sign << 16) + | 298 | u32 val = (s->sign << 16) + |
| 299 | (s->exponent << VFP_SINGLE_MANTISSA_BITS) + | 299 | (s->exponent << VFP_SINGLE_MANTISSA_BITS) + |
| @@ -335,7 +335,7 @@ struct vfp_double { | |||
| 335 | #define vfp_double_packed_exponent(v) (((v) >> VFP_DOUBLE_MANTISSA_BITS) & ((1 << VFP_DOUBLE_EXPONENT_BITS) - 1)) | 335 | #define vfp_double_packed_exponent(v) (((v) >> VFP_DOUBLE_MANTISSA_BITS) & ((1 << VFP_DOUBLE_EXPONENT_BITS) - 1)) |
| 336 | #define vfp_double_packed_mantissa(v) ((v) & ((1ULL << VFP_DOUBLE_MANTISSA_BITS) - 1)) | 336 | #define vfp_double_packed_mantissa(v) ((v) & ((1ULL << VFP_DOUBLE_MANTISSA_BITS) - 1)) |
| 337 | 337 | ||
| 338 | static inline int vfp_double_type(vfp_double* s) | 338 | static inline int vfp_double_type(const vfp_double* s) |
| 339 | { | 339 | { |
| 340 | int type = VFP_NUMBER; | 340 | int type = VFP_NUMBER; |
| 341 | if (s->exponent == 2047) { | 341 | if (s->exponent == 2047) { |
| @@ -379,7 +379,7 @@ static inline void vfp_double_unpack(vfp_double* s, s64 val, u32* fpscr) | |||
| 379 | 379 | ||
| 380 | // Re-pack a double-precision float. This assumes that the float is | 380 | // Re-pack a double-precision float. This assumes that the float is |
| 381 | // already normalised such that the MSB is bit 30, _not_ bit 31. | 381 | // already normalised such that the MSB is bit 30, _not_ bit 31. |
| 382 | static inline s64 vfp_double_pack(vfp_double* s) | 382 | static inline s64 vfp_double_pack(const vfp_double* s) |
| 383 | { | 383 | { |
| 384 | u64 val = ((u64)s->sign << 48) + | 384 | u64 val = ((u64)s->sign << 48) + |
| 385 | ((u64)s->exponent << VFP_DOUBLE_MANTISSA_BITS) + | 385 | ((u64)s->exponent << VFP_DOUBLE_MANTISSA_BITS) + |