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

Do target-specific lowering of lerp #6432

Merged
merged 2 commits into from
Nov 19, 2021
Merged

Conversation

abadams
Copy link
Member

@abadams abadams commented Nov 19, 2021

Saves instructions on x86. For the division by 255 in an 8-bit lerp we get:

Before #6426

vpaddw	%ymm0, %ymm1, %ymm1
vpsrlw	$8, %ymm1, %ymm2
vpaddw	%ymm2, %ymm1, %ymm1
vpsrlw	$8, %ymm1, %ymm1

After #6426

vpsrlw	$7, %ymm2, %ymm3
vpand	%ymm0, %ymm3, %ymm3
vpsrlw	$8, %ymm2, %ymm4
vpaddw	%ymm2, %ymm4, %ymm2
vpaddw	%ymm3, %ymm2, %ymm2
vpsrlw	$7, %ymm2, %ymm3
vpand	%ymm0, %ymm3, %ymm3
vpsrlw	$8, %ymm2, %ymm2
vpaddw	%ymm2, %ymm3, %ymm2
vpand	%ymm1, %ymm2, %ymm2

This PR:

    vpaddw  %ymm0, %ymm3, %ymm3
    vpmulhuw        %ymm1, %ymm3, %ymm3
    vpsrlw  $7, %ymm3, %ymm3

Saves instructions on x86.

Before #6426

	vpaddw	%ymm0, %ymm1, %ymm1
	vpsrlw	$8, %ymm1, %ymm2
	vpaddw	%ymm2, %ymm1, %ymm1
	vpsrlw	$8, %ymm1, %ymm1

After #6426

	vpsrlw	$7, %ymm2, %ymm3
	vpand	%ymm0, %ymm3, %ymm3
	vpsrlw	$8, %ymm2, %ymm4
	vpaddw	%ymm2, %ymm4, %ymm2
	vpaddw	%ymm3, %ymm2, %ymm2
	vpsrlw	$7, %ymm2, %ymm3
	vpand	%ymm0, %ymm3, %ymm3
	vpsrlw	$8, %ymm2, %ymm2
	vpaddw	%ymm2, %ymm3, %ymm2
	vpand	%ymm1, %ymm2, %ymm2

This PR:
        vpaddw  %ymm0, %ymm3, %ymm3
        vpmulhuw        %ymm1, %ymm3, %ymm3
        vpsrlw  $7, %ymm3, %ymm3
@abadams abadams requested review from dsharletg and vksnk November 19, 2021 18:19
@abadams abadams linked an issue Nov 19, 2021 that may be closed by this pull request
@steven-johnson
Copy link
Contributor

LGTM

@abadams abadams merged commit 2239443 into master Nov 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Best way to divide by 2**N - 1 in lerp
4 participants