Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3a17a87c
Commit
3a17a87c
authored
Aug 20, 2002
by
Marcus Meissner
Committed by
Alexandre Julliard
Aug 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up interlocking funcs for PPC, fixed return value of
interlocked_add.
parent
7678791d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
25 deletions
+14
-25
port.c
library/port.c
+14
-25
No files found.
library/port.c
View file @
3a17a87c
...
...
@@ -752,89 +752,78 @@ __declspec(naked) long interlocked_xchg_add( long *dest, long incr )
#elif defined(__powerpc__)
void
*
interlocked_cmpxchg_ptr
(
void
**
dest
,
void
*
xchg
,
void
*
compare
)
{
long
ret
;
long
ret
=
0
;
long
scratch
;
__asm__
__volatile__
(
"sync; "
"0: lwarx %0,0,%2 ;"
" xor. %1,%4,%0;"
" bne 1f;"
" stwcx. %3,0,%2;"
" bne- 0b;"
"1: "
"sync; "
:
"=&r"
(
ret
),
"=&r"
(
scratch
)
:
"r"
(
dest
),
"r"
(
xchg
),
"r"
(
compare
)
:
"cr0"
,
"memory"
);
:
"cr0"
,
"memory"
);
return
(
void
*
)
ret
;
}
long
interlocked_cmpxchg
(
long
*
dest
,
long
xchg
,
long
compare
)
{
long
ret
;
long
ret
=
0
;
long
scratch
;
__asm__
__volatile__
(
"sync; "
"0: lwarx %0,0,%2 ;"
" xor. %1,%4,%0;"
" bne 1f;"
" stwcx. %3,0,%2;"
" bne- 0b;"
"1: "
"sync; "
:
"=&r"
(
ret
),
"=&r"
(
scratch
)
:
"r"
(
dest
),
"r"
(
xchg
),
"r"
(
compare
)
:
"cr0"
,
"memory"
);
:
"cr0"
,
"memory"
);
return
ret
;
}
long
interlocked_xchg_add
(
long
*
dest
,
long
incr
)
{
void
*
ret
__attribute__
((
aligned
(
4
)))
=
&
ret
;
long
inc
=
incr
;
long
ret
=
0
;
long
zero
=
0
;
__asm__
__volatile__
(
"sync; "
"0: lwarx %0, %3, %1;"
" add %0, %2, %0;"
" stwcx. %0, %3, %1;"
" bne- 0b;"
"sync; "
:
"=&r"
(
ret
)
:
"r"
(
dest
),
"r"
(
inc
),
"r"
(
zero
)
:
"=&r"
(
ret
)
:
"r"
(
dest
),
"r"
(
incr
),
"r"
(
zero
)
:
"cr0"
,
"memory"
);
return
(
long
)
ret
;
return
ret
-
incr
;
}
long
interlocked_xchg
(
long
*
dest
,
long
val
)
{
void
*
ret
__attribute__
((
aligned
(
4
)))
=
&
ret
;
long
ret
=
0
;
__asm__
__volatile__
(
"sync; "
"0: lwarx %0,0,%1 ;"
" stwcx. %2,0,%1;"
" bne- 0b;"
"sync; "
:
"=&r"
(
ret
)
:
"r"
(
dest
),
"r"
(
val
)
:
"cr0"
,
"memory"
);
return
(
long
)
ret
;
:
"cr0"
,
"memory"
);
return
ret
;
}
void
*
interlocked_xchg_ptr
(
void
**
dest
,
void
*
val
)
{
void
*
ret
__attribute__
((
aligned
(
4
)))
=
&
ret
;
void
*
ret
=
NULL
;
__asm__
__volatile__
(
"sync; "
"0: lwarx %0,0,%1 ;"
" stwcx. %2,0,%1;"
" bne- 0b;"
"sync; "
:
"=&r"
(
ret
)
:
"r"
(
dest
),
"r"
(
val
)
:
"cr0"
,
"memory"
);
return
(
void
*
)
ret
;
:
"cr0"
,
"memory"
);
return
ret
;
}
#elif defined(__sparc__) && defined(__sun__)
...
...
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