Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove ABS in favor of Math::abs #69406

Merged

Conversation

KoBeWi
Copy link
Member

@KoBeWi KoBeWi commented Nov 30, 2022


<-

Copy link
Member

@fire fire left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's too many change to review, but they all look like copy and paste and the cicd passed.

@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch from 2807510 to a4497a5 Compare November 30, 2022 17:29
@kleonc
Copy link
Member

kleonc commented Nov 30, 2022

Is the same planned for MIN/MAX/CLAMP/SIGN? If no, why doing so for ABS but not for the others?

@akien-mga
Copy link
Member

I would do it for all of them indeed, but that's something we ought to discuss to see if there's any reason not to do this change.

@KoBeWi
Copy link
Member Author

KoBeWi commented Nov 30, 2022

Other functions don't seem to have Math equivalents.

@reduz
Copy link
Member

reduz commented Jan 21, 2023

I want to note that ABS works fine for integers, wheread Math::abs is sort of broken (only for int, there should be more integer types exposed or else you get ambiguous conversion).

@KoBeWi
Copy link
Member Author

KoBeWi commented Apr 21, 2023

I added int8_t and int16_t, so all integer types are covered now.

@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch from a4497a5 to f65b4c4 Compare April 21, 2023 21:43
Copy link
Member

@Calinou Calinou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be good to merge after rebasing (and making sure new uses of ABS() are replaced after rebasing).

However, binary size is a bit larger compared to the previous commit (on a stripped Linux x86_64 debug editor build):

Before: 173,299,624 bytes
After: 173,306,856 bytes

The difference for release export templates is smaller:

Before: 67,925,056 bytes
After: 67,929,152 bytes

@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch from f65b4c4 to 9156557 Compare August 24, 2023 10:09
@akien-mga akien-mga changed the title Remove ABS in favor of Math::abs Remove ABS in favor of Math::abs Aug 28, 2023
@YuriSizov YuriSizov removed this from the 4.x milestone Sep 5, 2023
@Riteo
Copy link
Contributor

Riteo commented Apr 28, 2024

Well, since #91283 popped up and discussion came again I wonder: what's the status of this PR? The last message talked about reassessing for 4.3 but now we're pretty ahead into that IMO :P

I'm still conflicted about this change I suggested, because of this inconsistency

IMO regarding that, considering that this is a pretty big codebase-wide change, I'd do one PR per method and do one of them at a time. Making a huge change at once would be a nightmare to review and handle, due to merge conflicts popping up constantly.

@akien-mga
Copy link
Member

IMO regarding that, considering that this is a pretty big codebase-wide change, I'd do one PR per method and do one of them at a time. Making a huge change at once would be a nightmare to review and handle, due to merge conflicts popping up constantly.

Yeah of course, but the main question before doing one PR per method is whether we should do this change at all.

We should discuss the pros and cons of using methods vs macros for this. When I suggested this it made sense to me to consolidate all math operations in Math, but we then found that there are some drawbacks to using functions instead of plain pre-processor macros for those trivial operations.

@Riteo
Copy link
Contributor

Riteo commented Apr 29, 2024

Yeah of course, but the main question before doing one PR per method is whether we should do this change at all.

Oh, I see.

I'm not enough of a C++ master to give a definite answer, some more expert feedback is definitely required.

That said, from my PoV, I'd be inclined to prefer a proper constexpr template method (as @Repiteo proposed), as they feel like a less finicky solution since, as far as I can tell, they should get inlined and optimized just like a macro, so I think that they'd compile to the same thing?

@Repiteo
Copy link
Contributor

Repiteo commented Apr 29, 2024

Just created #91324 as a minimal implementation of constexpr templates as math functions. It doesn't actually change any existing uses of the macros to the new implementations, so it should be a solid baseline for guaging any differences/issues with the existing macros.

Copy link
Member

@Ivorforce Ivorforce left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm in favour of this change!
I've just unknowingly opened the same PR (thanks @AThousandShips for linking!), with the minor detail different of using stdlib functions to aid the compiler (see comment).

(Edit: I've originally argued against macros here, but I totally missed it's been a template function for a while)

I'm still conflicted about this change I suggested, because of this inconsistency:

Is the same planned for MIN/MAX/CLAMP/SIGN? If no, why doing so for ABS but not for the others?

I think it's absolutely worth it to start moving away from macros for all these functions. Imo, it's not a new break in consistency because Math already has tons of functions (even abs). We can just tackle each remaining of the typedefs aliases one by one, in order to fully converge.

@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch from 9156557 to 08b3712 Compare March 17, 2025 16:21
@KoBeWi KoBeWi requested review from a team as code owners March 17, 2025 16:21
@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch from 08b3712 to 634b000 Compare March 17, 2025 16:33
Copy link
Member

@akien-mga akien-mga left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's go ahead with this.

Could you do a last rebase / check for remaining ABS and we'll merge this in priority?

@akien-mga akien-mga modified the milestones: 4.x, 4.5 Mar 19, 2025
static _ALWAYS_INLINE_ int8_t abs(int8_t g) { return g > 0 ? g : -g; }
static _ALWAYS_INLINE_ int16_t abs(int16_t g) { return g > 0 ? g : -g; }
static _ALWAYS_INLINE_ int32_t abs(int32_t g) { return ::abs(g); }
static _ALWAYS_INLINE_ int64_t abs(int64_t g) { return ::abs(g); }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
static _ALWAYS_INLINE_ int64_t abs(int64_t g) { return ::abs(g); }
static _ALWAYS_INLINE_ int64_t abs(int64_t g) { return ::labs(g); }

Careful, I'm not sure if abs(long) is guaranteed to exist: https://en.cppreference.com/w/c/numeric/math/abs

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah a big part of why we even have Math::abs instead of relying on stdlib is that abs overloads are/used to be ambiguous and would cause errors with MSVC (probably VS 2013 back then).

Copy link
Member Author

@KoBeWi KoBeWi Mar 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might need to be llabs(long long) for int64_t. I really despise short/int/long/long long types :D

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah llabs may work. I think it's guaranteed to be int64_t? But yea, it would have been easier with C++ APIs rather than those old C headers...

@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch 2 times, most recently from 89ef6ed to e38ec8c Compare March 19, 2025 12:40
@KoBeWi KoBeWi force-pushed the The_Assassination_of_ABS_by_the_Math--abs branch from e38ec8c to 10f6c01 Compare March 19, 2025 12:52
@akien-mga akien-mga merged commit 021b5a4 into godotengine:master Mar 19, 2025
20 checks passed
@akien-mga
Copy link
Member

Thanks!

@KoBeWi KoBeWi deleted the The_Assassination_of_ABS_by_the_Math--abs branch March 19, 2025 14:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.