Chinaunix首页 | 论坛 | 博客
  • 博客访问: 150100
  • 博文数量: 34
  • 博客积分: 2000
  • 博客等级: 大尉
  • 技术积分: 410
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-03 09:44
文章分类

全部博文(34)

文章存档

2011年(1)

2008年(33)

我的朋友

分类: LINUX

2008-07-02 17:50:47

.set
Sets (and clears) various flags that affect generated code. The following table may not be a complete list.
Flag
noreorder
        Turns off reordering of instructions. When on, t.i. when the assembler is reordering, it will put the last instruction before j or jr after the jump so it'll be in the branch delay slot. When off, you'll have to do it yourself.
mips3
        Tells the assembler that it can use the MIPS III instructions. Withouth it as simulates 64 bit instructions, and believe me, that's something you don't want.
reorder
        Allows the assembler to reorder instructions; see noreorder
pop
        Not really a flag but restores the state of the flags to what it was before the last .set push; see push.
push
        Nor really a flag but saves the status of the flags so it can be restored with .set pop. Not really useful (I think) outside inline assembly. Use in pairs with .set pop.
阅读(2046) | 评论(0) | 转发(0) |
0

上一篇:MIPS TLB 的结构

下一篇:mips 地址空间

给主人留下些什么吧!~~