#include <Alpha64Decoder.h>
Public メソッド | |
void | clear () |
DecodedInsn () | |
Public 変数 | |
u32 | CodeWord |
boost::array< u64, 2 > | Imm |
boost::array< int, 4 > | Reg |
Alpha64Decoder.h の 43 行で定義されています。
Alpha64Decoder::DecodedInsn::DecodedInsn | ( | ) |
void Alpha64Decoder::DecodedInsn::clear | ( | ) |
Alpha64Decoder.cpp の 106 行で定義されています。
参照元 Onikiri::AlphaLinux::Alpha64Decoder::Decode()・DecodedInsn().
00107 { 00108 CodeWord = 0; 00109 00110 std::fill(Imm.begin(), Imm.end(), 0); 00111 std::fill(Reg.begin(), Reg.end(), -1); 00112 }
Here is the caller graph for this function:
boost::array<u64, 2> Onikiri::AlphaLinux::Alpha64Decoder::DecodedInsn::Imm |
boost::array<int, 4> Onikiri::AlphaLinux::Alpha64Decoder::DecodedInsn::Reg |