Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1406755
  • 博文数量: 143
  • 博客积分: 10005
  • 博客等级: 上将
  • 技术积分: 1535
  • 用 户 组: 普通用户
  • 注册时间: 2006-10-23 17:25
个人简介

淡泊明志 宁静致远

文章分类

全部博文(143)

文章存档

2011年(2)

2009年(1)

2007年(22)

2006年(118)

我的朋友

分类: LINUX

2007-12-08 11:40:42

ARM 汇编指令条件执行详解

【本文主要内容来源于S3C2410X用户手册】

ALU状态标志

CPSR寄存器包含下面的ALU状态标志:

The CPSR contains the following ALU status flag:

N     Set when the result of the operation was Negative.

Z     Set when the result of the operation was Zeto.

C     Set when the operation resulted in a Carry.

V     Set when the operation caused Overflow.

Q     ARM architecture v5E only.

执行条件

NZCV相关的条件码后缀如下表所列:

Condition Code Summary

Code  Suffix  Flags              Meaning

0000  EQ     Z set               equal                    (= =)

0001  NE     Z clear             not equal                (! =)

0010  CS/HS  C set               unsigned higher or same  (>=) unsigned

0011  CC/LO  C clear             unsigned lower           (<)  unsigned

0100  MI     N set               negative                             

0101  PL     N clear             positive or zero

0110  VS     V set               overflow

0111  VC     V clear             no overflow

1000  HI     C set and Z clear   unsigned higher           (>) unsigned

1001  LS     C clear or Z set    unsigned lower or same    (<=) unsigned

1010  GE     N equals V          greater or equal          (>=) signed

1011  LT     N not equal to V    less than                 (<) signed

1100  GT     Z clear & (N ==V)  greater than             (>) signed

1101  LE     Z set | (N != V)    less than or equal        (<=) signed

1110  AL     (ignored) always    This suffix is normally omitted.

阅读(3811) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~