⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atomic.s

📁 ARM 嵌入式 系统 设计与实例开发 实验教材 二源码
💻 S
字号:
/* $Id: atomic.S,v 1.4 2001/11/18 00:12:56 davem Exp $ * atomic.S: These things are too big to do inline. * * Copyright (C) 1999 David S. Miller (davem@redhat.com) */#include <asm/asi.h>	.text	.align	64	.globl	atomic_impl_begin, atomic_impl_end	.globl	__atomic_addatomic_impl_begin:__atomic_add: /* %o0 = increment, %o1 = atomic_ptr */	lduw	[%o1], %g5	add	%g5, %o0, %g7	cas	[%o1], %g5, %g7	cmp	%g5, %g7	bne,pn	%icc, __atomic_add	 membar	#StoreLoad | #StoreStore	retl	 add	%g7, %o0, %o0	.globl	__atomic_sub__atomic_sub: /* %o0 = increment, %o1 = atomic_ptr */	lduw	[%o1], %g5	sub	%g5, %o0, %g7	cas	[%o1], %g5, %g7	cmp	%g5, %g7	bne,pn	%icc, __atomic_sub	 membar	#StoreLoad | #StoreStore	retl	 sub	%g7, %o0, %o0atomic_impl_end:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -