X7ROOT File Manager
Current Path:
/opt/golang/1.22.0/src/runtime/internal/atomic
opt
/
golang
/
1.22.0
/
src
/
runtime
/
internal
/
atomic
/
馃搧
..
馃搫
atomic_386.go
(2.22 KB)
馃搫
atomic_386.s
(6.53 KB)
馃搫
atomic_amd64.go
(2.46 KB)
馃搫
atomic_amd64.s
(5.18 KB)
馃搫
atomic_andor_generic.go
(1.06 KB)
馃搫
atomic_andor_test.go
(5.14 KB)
馃搫
atomic_arm.go
(4.74 KB)
馃搫
atomic_arm.s
(5.69 KB)
馃搫
atomic_arm64.go
(2.15 KB)
馃搫
atomic_arm64.s
(8.26 KB)
馃搫
atomic_loong64.go
(1.76 KB)
馃搫
atomic_loong64.s
(5.25 KB)
馃搫
atomic_mips64x.go
(1.77 KB)
馃搫
atomic_mips64x.s
(6.08 KB)
馃搫
atomic_mipsx.go
(2.66 KB)
馃搫
atomic_mipsx.s
(4.3 KB)
馃搫
atomic_ppc64x.go
(2.12 KB)
馃搫
atomic_ppc64x.s
(7.49 KB)
馃搫
atomic_riscv64.go
(2.03 KB)
馃搫
atomic_riscv64.s
(6.99 KB)
馃搫
atomic_s390x.go
(2.12 KB)
馃搫
atomic_s390x.s
(5.89 KB)
馃搫
atomic_test.go
(8.52 KB)
馃搫
atomic_wasm.go
(5.32 KB)
馃搫
atomic_wasm.s
(269 B)
馃搫
bench_test.go
(3.24 KB)
馃搫
doc.go
(771 B)
馃搫
stubs.go
(1.23 KB)
馃搫
sys_linux_arm.s
(2.84 KB)
馃搫
sys_nonlinux_arm.s
(1.33 KB)
馃搫
types.go
(14.23 KB)
馃搫
types_64bit.go
(1.1 KB)
馃搫
unaligned.go
(246 B)
Editing: sys_nonlinux_arm.s
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build !linux #include "textflag.h" // TODO(minux): this is only valid for ARMv6+ // bool armcas(int32 *val, int32 old, int32 new) // Atomically: // if(*val == old){ // *val = new; // return 1; // }else // return 0; TEXT 路Cas(SB),NOSPLIT,$0 JMP 路armcas(SB) // Non-linux OSes support only single processor machines before ARMv7. // So we don't need memory barriers if goarm < 7. And we fail loud at // startup (runtime.checkgoarm) if it is a multi-processor but goarm < 7. TEXT 路Load(SB),NOSPLIT|NOFRAME,$0-8 MOVW addr+0(FP), R0 MOVW (R0), R1 MOVB runtime路goarm(SB), R11 CMP $7, R11 BLT 2(PC) DMB MB_ISH MOVW R1, ret+4(FP) RET TEXT 路Store(SB),NOSPLIT,$0-8 MOVW addr+0(FP), R1 MOVW v+4(FP), R2 MOVB runtime路goarm(SB), R8 CMP $7, R8 BLT 2(PC) DMB MB_ISH MOVW R2, (R1) CMP $7, R8 BLT 2(PC) DMB MB_ISH RET TEXT 路Load8(SB),NOSPLIT|NOFRAME,$0-5 MOVW addr+0(FP), R0 MOVB (R0), R1 MOVB runtime路goarm(SB), R11 CMP $7, R11 BLT 2(PC) DMB MB_ISH MOVB R1, ret+4(FP) RET TEXT 路Store8(SB),NOSPLIT,$0-5 MOVW addr+0(FP), R1 MOVB v+4(FP), R2 MOVB runtime路goarm(SB), R8 CMP $7, R8 BLT 2(PC) DMB MB_ISH MOVB R2, (R1) CMP $7, R8 BLT 2(PC) DMB MB_ISH RET
Upload File
Create Folder