Cast rhs to LHSTYPE in JRE_HANDLE_OVERFLOW_COMPOUND_ASSIGN. - #2817
Open
copybara-service[bot] wants to merge 1 commit into
Open
Cast rhs to LHSTYPE in JRE_HANDLE_OVERFLOW_COMPOUND_ASSIGN.#2817copybara-service[bot] wants to merge 1 commit into
copybara-service[bot] wants to merge 1 commit into
Conversation
The `JRE_HANDLE_OVERFLOW_COMPOUND_ASSIGN` macro generates helper functions for compound assignment operators (e.g., `+=`, `-=`, `*=`) that handle overflow. When `LHSTYPE` (e.g., `jint`) is smaller than `RHSTYPE` (e.g., `jlong`), calling `Jre##LHSTYPENAME##NAME` (which expects `LHSTYPE` arguments) with `rhs` (which is `RHSTYPE`) triggers an implicit conversion warning/error (`-Wshorten-64-to-32`). This fix explicitly casts `rhs` to `LHSTYPE` before passing it to the overflow helper function. This is semantically equivalent to Java's compound assignment behavior for +, -, and *, where the result is eventually cast back to the LHS type, and modulo arithmetic ensures the bit pattern is correct even if we cast the RHS beforehand. PiperOrigin-RevId: 952958170
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cast rhs to LHSTYPE in JRE_HANDLE_OVERFLOW_COMPOUND_ASSIGN.
The
JRE_HANDLE_OVERFLOW_COMPOUND_ASSIGNmacro generates helper functions for compound assignment operators (e.g.,+=,-=,*=) that handle overflow.When
LHSTYPE(e.g.,jint) is smaller thanRHSTYPE(e.g.,jlong), callingJre##LHSTYPENAME##NAME(which expectsLHSTYPEarguments) withrhs(which isRHSTYPE) triggers an implicit conversion warning/error (-Wshorten-64-to-32).This fix explicitly casts
rhstoLHSTYPEbefore passing it to the overflow helper function. This is semantically equivalent to Java's compound assignment behavior for +, -, and *, where the result is eventually cast back to the LHS type, and modulo arithmetic ensures the bit pattern is correct even if we cast the RHS beforehand.