gcc-8.3/gcc/ssa_use_operand_t
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#df2ffe0b]
#backlinks
*説明 [#xe2d8aad]
-パス: [[gcc-8.3/gcc/tree-core.h]]
-FIXME: これは何?
--説明
**参考 [#ad79c306]
*実装 [#f2271853]
/* Immediate use linking structure. This structure is u...
a doubly linked list of uses of an SSA_NAME. */
struct GTY(()) ssa_use_operand_t {
struct ssa_use_operand_t* GTY((skip(""))) prev;
struct ssa_use_operand_t* GTY((skip(""))) next;
/* Immediate uses for a given SSA name are maintained ...
list. To recognize the root of this list, the loca...
needs to point to the original SSA name. Since sta...
SSA names are of different data types, we need this...
the explanation in struct imm_use_iterator. */
union { gimple *stmt; tree ssa_name; } GTY((skip("")))...
tree *GTY((skip(""))) use;
};
-
--[[gcc-8.3/gcc/gimple]]
--[[gcc-8.3/gcc/tree]]
*コメント [#s82d33fa]
終了行:
*参照元 [#df2ffe0b]
#backlinks
*説明 [#xe2d8aad]
-パス: [[gcc-8.3/gcc/tree-core.h]]
-FIXME: これは何?
--説明
**参考 [#ad79c306]
*実装 [#f2271853]
/* Immediate use linking structure. This structure is u...
a doubly linked list of uses of an SSA_NAME. */
struct GTY(()) ssa_use_operand_t {
struct ssa_use_operand_t* GTY((skip(""))) prev;
struct ssa_use_operand_t* GTY((skip(""))) next;
/* Immediate uses for a given SSA name are maintained ...
list. To recognize the root of this list, the loca...
needs to point to the original SSA name. Since sta...
SSA names are of different data types, we need this...
the explanation in struct imm_use_iterator. */
union { gimple *stmt; tree ssa_name; } GTY((skip("")))...
tree *GTY((skip(""))) use;
};
-
--[[gcc-8.3/gcc/gimple]]
--[[gcc-8.3/gcc/tree]]
*コメント [#s82d33fa]
ページ名: