gcc-8.3/gcc/get_mem_attrs()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#g70c7c19]
#backlinks
*説明 [#n1b1e670]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--説明
**引数 [#qd86a675]
-const_rtx x
--
--[[gcc-8.3/gcc/const_rtx]]
**返り値 [#rf1f5857]
-const struct mem_attrs *
--
--[[gcc-8.3/gcc/mem_attrs]]
**参考 [#r78b7327]
*実装 [#g8413f47]
#ifndef GENERATOR_FILE
/* Return the attributes of a MEM rtx. */
static inline const struct mem_attrs *
get_mem_attrs (const_rtx x)
{
struct mem_attrs *attrs;
attrs = MEM_ATTRS (x);
if (!attrs)
attrs = mode_mem_attrs[(int) GET_MODE (x)];
return attrs;
}
#endif
-
--[[gcc-8.3/gcc/MEM_ATTRS()]]
--[[gcc-8.3/gcc/mode_mem_attrs(global)]]
--[[gcc-8.3/gcc/GET_MODE()]]
*コメント [#qed6f18b]
終了行:
*参照元 [#g70c7c19]
#backlinks
*説明 [#n1b1e670]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--説明
**引数 [#qd86a675]
-const_rtx x
--
--[[gcc-8.3/gcc/const_rtx]]
**返り値 [#rf1f5857]
-const struct mem_attrs *
--
--[[gcc-8.3/gcc/mem_attrs]]
**参考 [#r78b7327]
*実装 [#g8413f47]
#ifndef GENERATOR_FILE
/* Return the attributes of a MEM rtx. */
static inline const struct mem_attrs *
get_mem_attrs (const_rtx x)
{
struct mem_attrs *attrs;
attrs = MEM_ATTRS (x);
if (!attrs)
attrs = mode_mem_attrs[(int) GET_MODE (x)];
return attrs;
}
#endif
-
--[[gcc-8.3/gcc/MEM_ATTRS()]]
--[[gcc-8.3/gcc/mode_mem_attrs(global)]]
--[[gcc-8.3/gcc/GET_MODE()]]
*コメント [#qed6f18b]
ページ名: