Commit 204de25f authored by Dave Airlie's avatar Dave Airlie Committed by Alex Deucher

amdgpu/dc: inline a bunch of the fixed 31_32 helpers.

This decreases code size by a few hundred bytes.
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent c4fee879
...@@ -132,79 +132,6 @@ struct fixed31_32 dal_fixed31_32_from_int( ...@@ -132,79 +132,6 @@ struct fixed31_32 dal_fixed31_32_from_int(
return res; return res;
} }
struct fixed31_32 dal_fixed31_32_neg(
struct fixed31_32 arg)
{
struct fixed31_32 res;
res.value = -arg.value;
return res;
}
struct fixed31_32 dal_fixed31_32_abs(
struct fixed31_32 arg)
{
if (arg.value < 0)
return dal_fixed31_32_neg(arg);
else
return arg;
}
bool dal_fixed31_32_lt(
struct fixed31_32 arg1,
struct fixed31_32 arg2)
{
return arg1.value < arg2.value;
}
bool dal_fixed31_32_le(
struct fixed31_32 arg1,
struct fixed31_32 arg2)
{
return arg1.value <= arg2.value;
}
bool dal_fixed31_32_eq(
struct fixed31_32 arg1,
struct fixed31_32 arg2)
{
return arg1.value == arg2.value;
}
struct fixed31_32 dal_fixed31_32_min(
struct fixed31_32 arg1,
struct fixed31_32 arg2)
{
if (arg1.value <= arg2.value)
return arg1;
else
return arg2;
}
struct fixed31_32 dal_fixed31_32_max(
struct fixed31_32 arg1,
struct fixed31_32 arg2)
{
if (arg1.value <= arg2.value)
return arg2;
else
return arg1;
}
struct fixed31_32 dal_fixed31_32_clamp(
struct fixed31_32 arg,
struct fixed31_32 min_value,
struct fixed31_32 max_value)
{
if (dal_fixed31_32_le(arg, min_value))
return min_value;
else if (dal_fixed31_32_le(max_value, arg))
return max_value;
else
return arg;
}
struct fixed31_32 dal_fixed31_32_shl( struct fixed31_32 dal_fixed31_32_shl(
struct fixed31_32 arg, struct fixed31_32 arg,
uint8_t shift) uint8_t shift)
...@@ -219,19 +146,6 @@ struct fixed31_32 dal_fixed31_32_shl( ...@@ -219,19 +146,6 @@ struct fixed31_32 dal_fixed31_32_shl(
return res; return res;
} }
struct fixed31_32 dal_fixed31_32_shr(
struct fixed31_32 arg,
uint8_t shift)
{
struct fixed31_32 res;
ASSERT(shift < 64);
res.value = arg.value >> shift;
return res;
}
struct fixed31_32 dal_fixed31_32_add( struct fixed31_32 dal_fixed31_32_add(
struct fixed31_32 arg1, struct fixed31_32 arg1,
struct fixed31_32 arg2) struct fixed31_32 arg2)
...@@ -246,24 +160,6 @@ struct fixed31_32 dal_fixed31_32_add( ...@@ -246,24 +160,6 @@ struct fixed31_32 dal_fixed31_32_add(
return res; return res;
} }
struct fixed31_32 dal_fixed31_32_add_int(
struct fixed31_32 arg1,
int32_t arg2)
{
return dal_fixed31_32_add(
arg1,
dal_fixed31_32_from_int(arg2));
}
struct fixed31_32 dal_fixed31_32_sub_int(
struct fixed31_32 arg1,
int32_t arg2)
{
return dal_fixed31_32_sub(
arg1,
dal_fixed31_32_from_int(arg2));
}
struct fixed31_32 dal_fixed31_32_sub( struct fixed31_32 dal_fixed31_32_sub(
struct fixed31_32 arg1, struct fixed31_32 arg1,
struct fixed31_32 arg2) struct fixed31_32 arg2)
...@@ -278,15 +174,6 @@ struct fixed31_32 dal_fixed31_32_sub( ...@@ -278,15 +174,6 @@ struct fixed31_32 dal_fixed31_32_sub(
return res; return res;
} }
struct fixed31_32 dal_fixed31_32_mul_int(
struct fixed31_32 arg1,
int32_t arg2)
{
return dal_fixed31_32_mul(
arg1,
dal_fixed31_32_from_int(arg2));
}
struct fixed31_32 dal_fixed31_32_mul( struct fixed31_32 dal_fixed31_32_mul(
struct fixed31_32 arg1, struct fixed31_32 arg1,
struct fixed31_32 arg2) struct fixed31_32 arg2)
...@@ -390,15 +277,6 @@ struct fixed31_32 dal_fixed31_32_div_int( ...@@ -390,15 +277,6 @@ struct fixed31_32 dal_fixed31_32_div_int(
dal_fixed31_32_from_int(arg2).value); dal_fixed31_32_from_int(arg2).value);
} }
struct fixed31_32 dal_fixed31_32_div(
struct fixed31_32 arg1,
struct fixed31_32 arg2)
{
return dal_fixed31_32_from_fraction(
arg1.value,
arg2.value);
}
struct fixed31_32 dal_fixed31_32_recip( struct fixed31_32 dal_fixed31_32_recip(
struct fixed31_32 arg) struct fixed31_32 arg)
{ {
......
...@@ -90,15 +90,26 @@ struct fixed31_32 dal_fixed31_32_from_int( ...@@ -90,15 +90,26 @@ struct fixed31_32 dal_fixed31_32_from_int(
* @brief * @brief
* result = -arg * result = -arg
*/ */
struct fixed31_32 dal_fixed31_32_neg( static inline struct fixed31_32 dal_fixed31_32_neg(struct fixed31_32 arg)
struct fixed31_32 arg); {
struct fixed31_32 res;
res.value = -arg.value;
return res;
}
/* /*
* @brief * @brief
* result = abs(arg) := (arg >= 0) ? arg : -arg * result = abs(arg) := (arg >= 0) ? arg : -arg
*/ */
struct fixed31_32 dal_fixed31_32_abs( static inline struct fixed31_32 dal_fixed31_32_abs(struct fixed31_32 arg)
struct fixed31_32 arg); {
if (arg.value < 0)
return dal_fixed31_32_neg(arg);
else
return arg;
}
/* /*
* @brief * @brief
...@@ -109,41 +120,57 @@ struct fixed31_32 dal_fixed31_32_abs( ...@@ -109,41 +120,57 @@ struct fixed31_32 dal_fixed31_32_abs(
* @brief * @brief
* result = arg1 < arg2 * result = arg1 < arg2
*/ */
bool dal_fixed31_32_lt( static inline bool dal_fixed31_32_lt(struct fixed31_32 arg1,
struct fixed31_32 arg1, struct fixed31_32 arg2)
struct fixed31_32 arg2); {
return arg1.value < arg2.value;
}
/* /*
* @brief * @brief
* result = arg1 <= arg2 * result = arg1 <= arg2
*/ */
bool dal_fixed31_32_le( static inline bool dal_fixed31_32_le(struct fixed31_32 arg1,
struct fixed31_32 arg1, struct fixed31_32 arg2)
struct fixed31_32 arg2); {
return arg1.value <= arg2.value;
}
/* /*
* @brief * @brief
* result = arg1 == arg2 * result = arg1 == arg2
*/ */
bool dal_fixed31_32_eq( static inline bool dal_fixed31_32_eq(struct fixed31_32 arg1,
struct fixed31_32 arg1, struct fixed31_32 arg2)
struct fixed31_32 arg2); {
return arg1.value == arg2.value;
}
/* /*
* @brief * @brief
* result = min(arg1, arg2) := (arg1 <= arg2) ? arg1 : arg2 * result = min(arg1, arg2) := (arg1 <= arg2) ? arg1 : arg2
*/ */
struct fixed31_32 dal_fixed31_32_min( static inline struct fixed31_32 dal_fixed31_32_min(struct fixed31_32 arg1,
struct fixed31_32 arg1, struct fixed31_32 arg2)
struct fixed31_32 arg2); {
if (arg1.value <= arg2.value)
return arg1;
else
return arg2;
}
/* /*
* @brief * @brief
* result = max(arg1, arg2) := (arg1 <= arg2) ? arg2 : arg1 * result = max(arg1, arg2) := (arg1 <= arg2) ? arg2 : arg1
*/ */
struct fixed31_32 dal_fixed31_32_max( static inline struct fixed31_32 dal_fixed31_32_max(struct fixed31_32 arg1,
struct fixed31_32 arg1, struct fixed31_32 arg2)
struct fixed31_32 arg2); {
if (arg1.value <= arg2.value)
return arg2;
else
return arg1;
}
/* /*
* @brief * @brief
...@@ -151,10 +178,18 @@ struct fixed31_32 dal_fixed31_32_max( ...@@ -151,10 +178,18 @@ struct fixed31_32 dal_fixed31_32_max(
* result = | arg, when min_value < arg < max_value * result = | arg, when min_value < arg < max_value
* | max_value, when arg >= max_value * | max_value, when arg >= max_value
*/ */
struct fixed31_32 dal_fixed31_32_clamp( static inline struct fixed31_32 dal_fixed31_32_clamp(
struct fixed31_32 arg, struct fixed31_32 arg,
struct fixed31_32 min_value, struct fixed31_32 min_value,
struct fixed31_32 max_value); struct fixed31_32 max_value)
{
if (dal_fixed31_32_le(arg, min_value))
return min_value;
else if (dal_fixed31_32_le(max_value, arg))
return max_value;
else
return arg;
}
/* /*
* @brief * @brief
...@@ -173,9 +208,14 @@ struct fixed31_32 dal_fixed31_32_shl( ...@@ -173,9 +208,14 @@ struct fixed31_32 dal_fixed31_32_shl(
* @brief * @brief
* result = arg >> shift * result = arg >> shift
*/ */
struct fixed31_32 dal_fixed31_32_shr( static inline struct fixed31_32 dal_fixed31_32_shr(
struct fixed31_32 arg, struct fixed31_32 arg,
uint8_t shift); uint8_t shift)
{
struct fixed31_32 res;
res.value = arg.value >> shift;
return res;
}
/* /*
* @brief * @brief
...@@ -194,25 +234,32 @@ struct fixed31_32 dal_fixed31_32_add( ...@@ -194,25 +234,32 @@ struct fixed31_32 dal_fixed31_32_add(
* @brief * @brief
* result = arg1 + arg2 * result = arg1 + arg2
*/ */
struct fixed31_32 dal_fixed31_32_add_int( static inline struct fixed31_32 dal_fixed31_32_add_int(struct fixed31_32 arg1,
struct fixed31_32 arg1, int32_t arg2)
int32_t arg2); {
return dal_fixed31_32_add(arg1,
dal_fixed31_32_from_int(arg2));
}
/* /*
* @brief * @brief
* result = arg1 - arg2 * result = arg1 - arg2
*/ */
struct fixed31_32 dal_fixed31_32_sub_int( struct fixed31_32 dal_fixed31_32_sub(
struct fixed31_32 arg1, struct fixed31_32 arg1,
int32_t arg2); struct fixed31_32 arg2);
/* /*
* @brief * @brief
* result = arg1 - arg2 * result = arg1 - arg2
*/ */
struct fixed31_32 dal_fixed31_32_sub( static inline struct fixed31_32 dal_fixed31_32_sub_int(struct fixed31_32 arg1,
struct fixed31_32 arg1, int32_t arg2)
struct fixed31_32 arg2); {
return dal_fixed31_32_sub(arg1,
dal_fixed31_32_from_int(arg2));
}
/* /*
* @brief * @brief
...@@ -223,17 +270,21 @@ struct fixed31_32 dal_fixed31_32_sub( ...@@ -223,17 +270,21 @@ struct fixed31_32 dal_fixed31_32_sub(
* @brief * @brief
* result = arg1 * arg2 * result = arg1 * arg2
*/ */
struct fixed31_32 dal_fixed31_32_mul_int( struct fixed31_32 dal_fixed31_32_mul(
struct fixed31_32 arg1, struct fixed31_32 arg1,
int32_t arg2); struct fixed31_32 arg2);
/* /*
* @brief * @brief
* result = arg1 * arg2 * result = arg1 * arg2
*/ */
struct fixed31_32 dal_fixed31_32_mul( static inline struct fixed31_32 dal_fixed31_32_mul_int(struct fixed31_32 arg1,
struct fixed31_32 arg1, int32_t arg2)
struct fixed31_32 arg2); {
return dal_fixed31_32_mul(arg1,
dal_fixed31_32_from_int(arg2));
}
/* /*
* @brief * @brief
...@@ -254,9 +305,12 @@ struct fixed31_32 dal_fixed31_32_div_int( ...@@ -254,9 +305,12 @@ struct fixed31_32 dal_fixed31_32_div_int(
* @brief * @brief
* result = arg1 / arg2 * result = arg1 / arg2
*/ */
struct fixed31_32 dal_fixed31_32_div( static inline struct fixed31_32 dal_fixed31_32_div(struct fixed31_32 arg1,
struct fixed31_32 arg1, struct fixed31_32 arg2)
struct fixed31_32 arg2); {
return dal_fixed31_32_from_fraction(arg1.value,
arg2.value);
}
/* /*
* @brief * @brief
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment