[mips][msa] Added lsa instruction

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192895 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Sanders
2013-10-17 13:38:20 +00:00
parent 2e56d575b7
commit 52244da7f2
5 changed files with 62 additions and 0 deletions

View File

@@ -314,3 +314,9 @@ class MSA_VECS10_FMT<bits<5> major, bits<6> minor>: MSAInst {
let Inst{25-21} = major;
let Inst{5-0} = minor;
}
class SPECIAL_LSA_FMT: MSAInst {
let Inst{25-21} = 0b000000;
let Inst{10-8} = 0b000;
let Inst{5-0} = 0b000101;
}