gcc-8.3/gcc/rhs_regno()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#xf4fb19b]
#backlinks
*説明 [#pe060dd7]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--説明
**引数 [#h2bbf6c5]
-const_rtx x
--
--[[gcc-8.3/gcc/const_rtx]]
**返り値 [#w3dd7bf0]
-unsigned int
--
**参考 [#u483684c]
*実装 [#ycef2c3f]
/* Force the REGNO macro to only be used on the lhs. */
static inline unsigned int
rhs_regno (const_rtx x)
{
return REG_CHECK (x)->regno;
}
-
--[[gcc-8.3/gcc/REG_CHECK()]]
--REG_CHECK() の返り値は struct reg_info * 型
--[[gcc-8.3/gcc/reg_info]]
*コメント [#wccebe39]
終了行:
*参照元 [#xf4fb19b]
#backlinks
*説明 [#pe060dd7]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--説明
**引数 [#h2bbf6c5]
-const_rtx x
--
--[[gcc-8.3/gcc/const_rtx]]
**返り値 [#w3dd7bf0]
-unsigned int
--
**参考 [#u483684c]
*実装 [#ycef2c3f]
/* Force the REGNO macro to only be used on the lhs. */
static inline unsigned int
rhs_regno (const_rtx x)
{
return REG_CHECK (x)->regno;
}
-
--[[gcc-8.3/gcc/REG_CHECK()]]
--REG_CHECK() の返り値は struct reg_info * 型
--[[gcc-8.3/gcc/reg_info]]
*コメント [#wccebe39]
ページ名: