comparison src/os/unix/ngx_sunpro_amd64.il @ 561:e48ebafc6939 release-0.3.2

nginx-0.3.2-RELEASE import *) Feature: the Sun Studio 10 C compiler support. *) Feature: the "proxy_upstream_max_fails", "proxy_upstream_fail_timeout", "fastcgi_upstream_max_fails", and "fastcgi_upstream_fail_timeout" directives.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 12 Oct 2005 13:50:36 +0000
parents
children 08c6ee7a1b11
comparison
equal deleted inserted replaced
560:8886091eddd2 561:e48ebafc6939
1 /
2 / Copyright (C) Igor Sysoev
3 /
4
5 / ngx_atomic_uint_t ngx_atomic_cmp_set(ngx_atomic_t *lock,
6 / ngx_atomic_uint_t old, ngx_atomic_uint_t set);
7 /
8 / the arguments are passed in %rdi, %rsi, %rdx
9 / the result is returned in the %rax
10
11 .inline ngx_atomic_cmp_set,0
12 movq %rsi, %rax
13 lock
14 cmpxchgq %rdx, (%rdi)
15 setz %al
16 movzbq %al, %rax
17 .end
18
19
20 / ngx_atomic_int_t ngx_atomic_fetch_add(ngx_atomic_t *value,
21 / ngx_atomic_int_t add);
22 /
23 / the arguments are passed in %rdi, %rsi
24 / the result is returned in the %rax
25
26 .inline ngx_atomic_fetch_add,0
27 movq %rsi, %rax
28 lock
29 xaddq %rax, (%rdi)
30 .end