Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
5b4dfbff
Commit
5b4dfbff
authored
Jul 15, 2012
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86: ABS1: port to cpuflags
parent
de16f08e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
14 deletions
+9
-14
dsputilenc.asm
libavcodec/x86/dsputilenc.asm
+0
-2
x86util.asm
libavutil/x86/x86util.asm
+9
-12
No files found.
libavcodec/x86/dsputilenc.asm
View file @
5b4dfbff
...
...
@@ -257,11 +257,9 @@ hadamard8_16_wrapper 0, 14
%endmacro
INIT_MMX
mmx
%define
ABS1
ABS1_MMX
HADAMARD8_DIFF
INIT_MMX
mmxext
%define
ABS1
ABS1_MMXEXT
HADAMARD8_DIFF
INIT_XMM
sse2
...
...
libavutil/x86/x86util.asm
View file @
5b4dfbff
...
...
@@ -172,11 +172,19 @@
psignw
%1
,
%2
%endmacro
%macro
ABS1_MMX
2
; a, tmp
%macro
ABS1
2
%if
cpuflag
(
ssse3
)
pabsw
%1
,
%1
%elif
cpuflag
(
mmxext
)
; a, tmp
pxor
%2
,
%2
psubw
%2
,
%1
pmaxsw
%1
,
%2
%else
; a, tmp
pxor
%2
,
%2
pcmpgtw
%2
,
%1
pxor
%1
,
%2
psubw
%1
,
%2
%endif
%endmacro
%macro
ABS2_MMX
4
; a, b, tmp0, tmp1
...
...
@@ -190,12 +198,6 @@
psubw
%2
,
%4
%endmacro
%macro
ABS1_MMXEXT
2
; a, tmp
pxor
%2
,
%2
psubw
%2
,
%1
pmaxsw
%1
,
%2
%endmacro
%macro
ABS2_MMXEXT
4
; a, b, tmp0, tmp1
pxor
%3
,
%3
pxor
%4
,
%4
...
...
@@ -205,10 +207,6 @@
pmaxsw
%2
,
%4
%endmacro
%macro
ABS1_SSSE3
2
pabsw
%1
,
%1
%endmacro
%macro
ABS2_SSSE3
4
pabsw
%1
,
%1
pabsw
%2
,
%2
...
...
@@ -254,7 +252,6 @@
ABS2
%3
,
%4
,
%5
,
%6
%endmacro
%define
ABS1
ABS1_MMX
%define
ABS2
ABS2_MMX
%define
ABSB
ABSB_MMX
%define
ABSB2
ABSB2_MMX
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment