免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: 0521
打印 上一主题 下一主题

a++, 是不是从理论上就不可能是一条汇编语句? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2007-08-14 09:58 |只看该作者
TO 0521,
++是不是一条指令有什么大关系吗? 或者你关心的是那里?

论坛徽章:
0
12 [报告]
发表于 2007-08-14 10:00 |只看该作者
关系到这条指令是否会被中断打断,要不要互斥访问

论坛徽章:
0
13 [报告]
发表于 2007-08-14 10:04 |只看该作者
原帖由 rtp 于 2007-8-14 09:55 发表
存储器不能自加.


X86是可以的.指令手册上写得很清楚.
arm系列更可以了.
别的就不知道.

论坛徽章:
0
14 [报告]
发表于 2007-08-14 10:06 |只看该作者
你的意思是说,如果a++是一条汇编,不会被中断打断,那么就一定是原子操作了?


原帖由 escapedog 于 2007-8-14 10:00 发表
关系到这条指令是否会被中断打断,要不要互斥访问

论坛徽章:
0
15 [报告]
发表于 2007-08-14 10:06 |只看该作者
原帖由 hhbrook 于 2007-8-14 10:04 发表


X86是可以的.指令手册上写得很清楚.
arm系列更可以了.
别的就不知道.


请给出出处.谢谢.

论坛徽章:
0
16 [报告]
发表于 2007-08-14 10:10 |只看该作者
原帖由 思一克 于 2007-8-14 10:06 发表
你的意思是说,如果a++是一条汇编,不会被中断打断,那么就一定是原子操作了?




我没说,不要误读!
但是如果不是一条一定会被打断,对么?

论坛徽章:
0
17 [报告]
发表于 2007-08-14 10:11 |只看该作者
原帖由 rtp 于 2007-8-14 10:06 发表


请给出出处.谢谢.


给出出处,我怎么没看到?

论坛徽章:
0
18 [报告]
发表于 2007-08-14 10:12 |只看该作者
原帖由 rtp 于 2007-8-14 10:06 发表


请给出出处.谢谢.

B.4.3 ADD: Add Integers

--------------------------------------------------------------------------------

ADD r/m8,reg8                 ; 00 /r                [8086]
ADD r/m16,reg16               ; o16 01 /r            [8086]
ADD r/m32,reg32               ; o32 01 /r            [386]

ADD reg8,r/m8                 ; 02 /r                [8086]
ADD reg16,r/m16               ; o16 03 /r            [8086]
ADD reg32,r/m32               ; o32 03 /r            [386]

ADD r/m8,imm8                 ; 80 /7 ib             [8086]
ADD r/m16,imm16               ; o16 81 /7 iw         [8086]
ADD r/m32,imm32               ; o32 81 /7 id         [386]

ADD r/m16,imm8                ; o16 83 /7 ib         [8086]
ADD r/m32,imm8                ; o32 83 /7 ib         [386]

ADD AL,imm8                   ; 04 ib                [8086]
ADD AX,imm16                  ; o16 05 iw            [8086]
ADD EAX,imm32                 ; o32 05 id            [386]ADD performs integer addition: it adds its two operands together, and leaves the result in its destination (first) operand. The destination operand can be a register or a memory location. The source operand can be a register, a memory location or an immediate value.

The flags are set according to the result of the operation: in particular, the carry flag is affected and can be used by a subsequent ADC instruction.

In the forms with an 8-bit immediate second operand and a longer first operand, the second operand is considered to be signed, and is sign-extended to the length of the first operand. In these cases, the BYTE qualifier is necessary to force NASM to generate this form of the instruction.


B.4.120 INC: Increment Integer

--------------------------------------------------------------------------------

INC reg16                     ; o16 40+r             [8086]
INC reg32                     ; o32 40+r             [386]
INC r/m8                      ; FE /0                [8086]
INC r/m16                     ; o16 FF /0            [8086]
INC r/m32                     ; o32 FF /0            [386]
---------------------------------------------------------------------------------
nasm x86 Instruction Reference

论坛徽章:
0
19 [报告]
发表于 2007-08-14 10:14 |只看该作者
大哥,我说的是全局变量好不好。

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
20 [报告]
发表于 2007-08-14 10:16 |只看该作者
原帖由 escapedog 于 2007-8-14 10:14 发表
大哥,我说的是全局变量好不好。

哦?莫非你认为“a++ 是不是一条汇编语句”这个命题的正确性会因为
a 是全局变量还是未优化成 register 型的局部变量而有所不同
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP