Upload Tizen:Base source
[toolchains/nspr.git] / mozilla / nsprpub / pr / src / md / unix / os_Linux_ppc.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) 2003
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 #
40 # Based on the programming examples in The PowerPC Architecture:
41 # A Specification for A New Family of RISC Processors, 2nd Ed.,
42 # Book I, Section E.1, "Synchronization," pp. 249-256, May 1994.
43 #
44
45         .section ".text"
46
47 #
48 # PRInt32 _PR_ppc_AtomicIncrement(PRInt32 *val);
49 #
50         .align  2
51         .globl  _PR_ppc_AtomicIncrement
52         .type _PR_ppc_AtomicIncrement,@function
53 _PR_ppc_AtomicIncrement:
54 .Lfd1:  lwarx   4,0,3
55         addi    0,4,1
56         stwcx.  0,0,3
57         bne-    .Lfd1
58         mr      3,0
59         blr
60 .Lfe1:  .size _PR_ppc_AtomicIncrement,.Lfe1-_PR_ppc_AtomicIncrement
61
62 #
63 # PRInt32 _PR_ppc_AtomicDecrement(PRInt32 *val);
64 #
65         .align  2
66         .globl  _PR_ppc_AtomicDecrement
67         .type _PR_ppc_AtomicDecrement,@function
68 _PR_ppc_AtomicDecrement:
69 .Lfd2:  lwarx   4,0,3
70         addi    0,4,-1
71         stwcx.  0,0,3
72         bne-    .Lfd2
73         mr      3,0
74         blr
75 .Lfe2:  .size _PR_ppc_AtomicDecrement,.Lfe2-_PR_ppc_AtomicDecrement
76
77 #
78 # PRInt32 _PR_ppc_AtomicSet(PRInt32 *val, PRInt32 newval);
79 #
80         .align  2
81         .globl  _PR_ppc_AtomicSet
82         .type _PR_ppc_AtomicSet,@function
83 _PR_ppc_AtomicSet:
84 .Lfd3:  lwarx   5,0,3
85         stwcx.  4,0,3
86         bne-    .Lfd3
87         mr      3,5
88         blr
89 .Lfe3:  .size _PR_ppc_AtomicSet,.Lfe3-_PR_ppc_AtomicSet
90
91 #
92 # PRInt32 _PR_ppc_AtomicAdd(PRInt32 *ptr, PRInt32 val);
93 #
94         .align  2
95         .globl  _PR_ppc_AtomicAdd
96         .type _PR_ppc_AtomicAdd,@function
97 _PR_ppc_AtomicAdd:
98 .Lfd4:  lwarx   5,0,3
99         add     0,4,5
100         stwcx.  0,0,3
101         bne-    .Lfd4
102         mr      3,0
103         blr
104 .Lfe4:  .size _PR_ppc_AtomicAdd,.Lfe4-_PR_ppc_AtomicAdd
105
106 # Magic indicating no need for an executable stack
107 .section .note.GNU-stack, "", @progbits ; .previous