#include <PPC64Decoder.h>
Public メソッド | |
void | clear () |
DecodedInsn () | |
Public 変数 | |
u32 | CodeWord |
boost::array< u64, 4 > | Imm |
boost::array< int, 4 > | Reg |
PPC64Decoder.h の 52 行で定義されています。
PPC64Decoder::DecodedInsn::DecodedInsn | ( | ) |
void PPC64Decoder::DecodedInsn::clear | ( | ) |
PPC64Decoder.cpp の 597 行で定義されています。
参照元 Onikiri::PPC64Linux::PPC64Decoder::Decode()・DecodedInsn().
00598 { 00599 CodeWord = 0; 00600 00601 std::fill(Imm.begin(), Imm.end(), 0); 00602 std::fill(Reg.begin(), Reg.end(), -1); 00603 }
Here is the caller graph for this function:
boost::array<u64, 4> Onikiri::PPC64Linux::PPC64Decoder::DecodedInsn::Imm |
boost::array<int, 4> Onikiri::PPC64Linux::PPC64Decoder::DecodedInsn::Reg |