Upload Tizen:Base source
[toolchains/nspr.git] / mozilla / nsprpub / pr / src / md / unix / os_SunOS_x86.s
1 / -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2
3 / ***** BEGIN LICENSE BLOCK *****
4 / Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 /
6 / The contents of this file are subject to the Mozilla Public License Version
7 / 1.1 (the "License"); you may not use this file except in compliance with
8 / the License. You may obtain a copy of the License at
9 / http://www.mozilla.org/MPL/
10 /
11 / Software distributed under the License is distributed on an "AS IS" basis,
12 / WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 / for the specific language governing rights and limitations under the
14 / License.
15 /
16 / The Original Code is the Netscape Portable Runtime (NSPR).
17 /
18 / The Initial Developer of the Original Code is
19 / Netscape Communications Corporation.
20 / Portions created by the Initial Developer are Copyright (C) 1998-2000
21 / the Initial Developer. All Rights Reserved.
22 /
23 / Contributor(s):
24 /
25 / Alternatively, the contents of this file may be used under the terms of
26 / either the GNU General Public License Version 2 or later (the "GPL"), or
27 / the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 / in which case the provisions of the GPL or the LGPL are applicable instead
29 / of those above. If you wish to allow use of your version of this file only
30 / under the terms of either the GPL or the LGPL, and not to allow others to
31 / use your version of this file under the terms of the MPL, indicate your
32 / decision by deleting the provisions above and replace them with the notice
33 / and other provisions required by the GPL or the LGPL. If you do not delete
34 / the provisions above, a recipient may use your version of this file under
35 / the terms of any one of the MPL, the GPL or the LGPL.
36 /
37 / ***** END LICENSE BLOCK *****
38
39         .text
40
41         .globl  getedi
42 getedi:
43         movl    %edi,%eax
44         ret
45         .type   getedi,@function
46         .size   getedi,.-getedi
47  
48         .globl  setedi
49 setedi:
50         movl    4(%esp),%edi
51         ret
52         .type   setedi,@function
53         .size   setedi,.-setedi
54
55         .globl  __MD_FlushRegisterWindows
56         .globl _MD_FlushRegisterWindows
57
58 __MD_FlushRegisterWindows:
59 _MD_FlushRegisterWindows:
60
61         ret
62
63 /
64 / sol_getsp()
65 /
66 / Return the current sp (for debugging)
67 /
68         .globl sol_getsp
69 sol_getsp:
70         movl    %esp, %eax
71         ret
72
73 /
74 / sol_curthread()
75 /
76 / Return a unique identifier for the currently active thread.
77 /
78         .globl sol_curthread
79 sol_curthread:
80         movl    %ecx, %eax
81         ret
82
83 / PRInt32 _MD_AtomicIncrement(PRInt32 *val)
84 /
85 / Atomically increment the integer pointed to by 'val' and return
86 / the result of the increment.
87 /
88     .text
89     .globl _MD_AtomicIncrement
90     .align 4
91 _MD_AtomicIncrement:
92     movl 4(%esp), %ecx
93     movl $1, %eax
94     lock
95     xaddl %eax, (%ecx)
96     incl %eax
97     ret
98
99 / PRInt32 _MD_AtomicDecrement(PRInt32 *val)
100 /
101 / Atomically decrement the integer pointed to by 'val' and return
102 / the result of the decrement.
103 /
104     .text
105     .globl _MD_AtomicDecrement
106     .align 4
107 _MD_AtomicDecrement:
108     movl 4(%esp), %ecx
109     movl $-1, %eax
110     lock
111     xaddl %eax, (%ecx)
112     decl %eax
113     ret
114
115 / PRInt32 _MD_AtomicSet(PRInt32 *val, PRInt32 newval)
116 /
117 / Atomically set the integer pointed to by 'val' to the new
118 / value 'newval' and return the old value.
119 /
120 / An alternative implementation:
121 /   .text
122 /   .globl _MD_AtomicSet
123 /   .align 4
124 /_MD_AtomicSet:
125 /   movl 4(%esp), %ecx
126 /   movl 8(%esp), %edx
127 /   movl (%ecx), %eax
128 /retry:
129 /   lock
130 /   cmpxchgl %edx, (%ecx)
131 /   jne retry
132 /   ret
133 /
134     .text
135     .globl _MD_AtomicSet
136     .align 4
137 _MD_AtomicSet:
138     movl 4(%esp), %ecx
139     movl 8(%esp), %eax
140     xchgl %eax, (%ecx)
141     ret
142
143 / PRInt32 _MD_AtomicAdd(PRInt32 *ptr, PRInt32 val)
144 /
145 / Atomically add 'val' to the integer pointed to by 'ptr'
146 / and return the result of the addition.
147 /
148     .text
149     .globl _MD_AtomicAdd
150     .align 4
151 _MD_AtomicAdd:
152     movl 4(%esp), %ecx
153     movl 8(%esp), %eax
154     movl %eax, %edx
155     lock
156     xaddl %eax, (%ecx)
157     addl %edx, %eax
158     ret