Added support for MULLI

This commit is contained in:
S Gopal Rajagopal 2014-09-15 19:56:36 +05:30
parent eaa644dc20
commit ac86ee8fa9
2 changed files with 74 additions and 2 deletions

View file

@ -466,6 +466,12 @@ private:
/// Disassembler
LLVMDisasmContextRef m_disassembler;
/// Load GPR and convert it to a i64
llvm::Value * GetGpr(u32 r);
/// Set GPR to specified value
llvm::Value * SetGpr(u32 r, llvm::Value * val);
/// Load VR and convert it to an integer vector
llvm::Value * GetVrAsIntVec(u32 vr, u32 vec_elt_num_bits);