码迷,mamicode.com
首页 > 其他好文 > 详细

[原]__ASSEMBLY__的用途

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

标签:http   使用   os   for   io   html   

在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   使用   os   for   io   html   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!