gcc-8.3/gcc/INSN_CODE()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#u95931a4]
#backlinks
*説明 [#e41ded4a]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--insn の 5番目のオペランド('i' 型)が保持する整数値を返...
--code の値はチェックしていないので、5番目のオペランドが ...
**引数 [#a790a785]
-INSN
--code が insn の RTX
**返り値 [#l7b84a01]
-int
--5番目のオペランド(整数値として解釈)
**参考 [#hebaa06d]
*実装 [#x37aec06]
/* Code number of instruction, from when it was recogniz...
-1 means this instruction has not been recognized yet...
#define INSN_CODE(INSN) XINT (INSN, 5)
-5番目のオペランドを整数値として返す。
--[[gcc-8.3/gcc/XINT()]]
*コメント [#u6eb9a3e]
終了行:
*参照元 [#u95931a4]
#backlinks
*説明 [#e41ded4a]
-パス: [[gcc-8.3/gcc/rtl.h]]
-FIXME: これは何?
--insn の 5番目のオペランド('i' 型)が保持する整数値を返...
--code の値はチェックしていないので、5番目のオペランドが ...
**引数 [#a790a785]
-INSN
--code が insn の RTX
**返り値 [#l7b84a01]
-int
--5番目のオペランド(整数値として解釈)
**参考 [#hebaa06d]
*実装 [#x37aec06]
/* Code number of instruction, from when it was recogniz...
-1 means this instruction has not been recognized yet...
#define INSN_CODE(INSN) XINT (INSN, 5)
-5番目のオペランドを整数値として返す。
--[[gcc-8.3/gcc/XINT()]]
*コメント [#u6eb9a3e]
ページ名: