首页 > 其他 > 详细

[原]__ASSEMBLY__的用途

时间:2014-07-12 14:07:50      阅读:334      评论:0      收藏:0      [点我收藏+]

在Linux Kernel中有些constant需要被C code 跟 assembler共同使用

在用constant的時候,不能單方面給0x1000UL因為assembler無法看這東西。

但是C compiler卻可以。所以使用這個gcc feature.

讓C compiler看到的constant是0x1000UL.

而assembler看起來是0x1000.

6 /* Some constant macros are used in both assembler and
7 * C code. Therefore we cannot annotate them always with
8 * ‘UL‘ and other type specifiers unilaterally. We
9 * use the following macros to deal with this.
10 *
11 * Similarly, _AT() will cast an expression with a type in C, but
12 * leave it unchanged in asm.
13 */

ref.

[1] http://code.woboq.org/linux/linux/include/uapi/linux/const.h.html

[原]__ASSEMBLY__的用途,布布扣,bubuko.com

[原]__ASSEMBLY__的用途

原文:http://www.cnblogs.com/bittorrent/p/3839849.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!