gcc-8.3/gcc/mem_attrs
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#af2ba783]
#backlinks
*説明 [#sd532f06]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--説明
**参考 [#d68c439f]
*実装 [#ee375979]
/* Structure used to describe the attributes of a MEM. ...
so MEMs that the same attributes share a data structu...
they cannot be modified in place. */
struct GTY(()) mem_attrs
{
mem_attrs ();
-
--[[gcc-8.3/gcc/mem_attrs/mem_attrs()]]
/* The expression that the MEM accesses, or null if no...
This expression might be larger than the memory ref...
(In other words, the MEM might access only part of ...
tree expr;
-
--[[gcc-8.3/gcc/tree]]
/* The offset of the memory reference from the start o...
Only valid if OFFSET_KNOWN_P. */
poly_int64 offset;
/* The size of the memory reference in bytes. Only va...
SIZE_KNOWN_P. */
poly_int64 size;
-
--[[gcc-8.3/gcc/poly_int64]]
/* The alias set of the memory reference. */
alias_set_type alias;
-
--[[gcc-8.3/gcc/alias_set_type]]
/* The alignment of the reference in bits. Always a m...
BITS_PER_UNIT. Note that EXPR may have a stricter ...
than the memory reference itself. */
unsigned int align;
/* The address space that the memory reference uses. */
unsigned char addrspace;
/* True if OFFSET is known. */
bool offset_known_p;
/* True if SIZE is known. */
bool size_known_p;
};
*コメント [#g4cbdab3]
終了行:
*参照元 [#af2ba783]
#backlinks
*説明 [#sd532f06]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--説明
**参考 [#d68c439f]
*実装 [#ee375979]
/* Structure used to describe the attributes of a MEM. ...
so MEMs that the same attributes share a data structu...
they cannot be modified in place. */
struct GTY(()) mem_attrs
{
mem_attrs ();
-
--[[gcc-8.3/gcc/mem_attrs/mem_attrs()]]
/* The expression that the MEM accesses, or null if no...
This expression might be larger than the memory ref...
(In other words, the MEM might access only part of ...
tree expr;
-
--[[gcc-8.3/gcc/tree]]
/* The offset of the memory reference from the start o...
Only valid if OFFSET_KNOWN_P. */
poly_int64 offset;
/* The size of the memory reference in bytes. Only va...
SIZE_KNOWN_P. */
poly_int64 size;
-
--[[gcc-8.3/gcc/poly_int64]]
/* The alias set of the memory reference. */
alias_set_type alias;
-
--[[gcc-8.3/gcc/alias_set_type]]
/* The alignment of the reference in bits. Always a m...
BITS_PER_UNIT. Note that EXPR may have a stricter ...
than the memory reference itself. */
unsigned int align;
/* The address space that the memory reference uses. */
unsigned char addrspace;
/* True if OFFSET is known. */
bool offset_known_p;
/* True if SIZE is known. */
bool size_known_p;
};
*コメント [#g4cbdab3]
ページ名: