免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3456 | 回复: 3
打印 上一主题 下一主题

[X86]为啥我不能设置FPU中的控制寄存器? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-03-11 14:12 |只看该作者 |倒序浏览
代码如下:

  1.       1 .section .data
  2.       2 newvalue:
  3.       3         .byte 0x7f, 0x00
  4.       4 output:
  5.       5         .asciz "The control register is 0x%x\n"
  6.       6 .section .bss
  7.       7
  8.       8         .lcomm control, 2
  9.       9
  10.      10 .section .text
  11.      11 .global _start
  12.      12 _start:
  13.      13         nop
  14.      14         fstcw control
  15.      15         movl control, %eax
  16.      16         pushl %eax
  17.      17         pushl $output
  18.      18         call printf
  19.      19         addl $8, %esp
  20.      20
  21.      21         fldcw newvalue
  22.      22         fstcw control
  23.      23         movl control, %eax
  24.      24         pushl %eax
  25.      25         pushl $output
  26.      26         call printf
  27.      27         addl $8, %esp
  28.      28
  29.      29         movl $1, %eax
  30.      30         movl $0, %ebx
  31.      31         int $0x80
  32.      32
复制代码
编译命令:

  1. as -gstabs -o mysetprec.o mysetprec.s
  2. ld -o mysetprec -dynamic-linker /lib/ld-linux.so.2 -lc mysetprec.o
复制代码
查看结果:
[root@test llz]# ./mysetprec
The control register is 0x37f
The control register is 0x7f /*这里说明已经设置好了*/
[root@test lz]# ./mysetprec
The control register is 0x37f /*为什么这里读出来还是原始的值,而不是上面设置好的0x7f??*/
The control register is 0x7f
[root@test lz]#


有什么地方没理解对?
望指正,谢谢!

论坛徽章:
7
丑牛
日期:2013-10-18 14:43:21技术图书徽章
日期:2013-11-03 09:58:03辰龙
日期:2014-01-15 22:57:50午马
日期:2014-09-15 07:04:39丑牛
日期:2014-10-16 14:25:222015年亚洲杯之伊朗
日期:2015-03-16 10:24:352015亚冠之城南
日期:2015-05-31 09:52:32
2 [报告]
发表于 2011-03-11 15:24 |只看该作者
`想起你以前问的那个 内核关中断 用户态仍开
想来这个进程结束 无论回内核还是其它进程都重新来过吧

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-04 09:56:11数据库技术版块每日发帖之星
日期:2016-08-03 06:20:00数据库技术版块每日发帖之星
日期:2016-08-04 06:20:00
3 [报告]
发表于 2011-03-13 12:42 |只看该作者
都换了一个进程了,对于这个进程来说,这些寄存器都重新设过啦

论坛徽章:
0
4 [报告]
发表于 2011-03-14 12:38 |只看该作者
低级错误了
忘了FPU也属于task context的一部分。。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP