summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MicroMipsInstrFormats.td
diff options
context:
space:
mode:
authorZoran Jovanovic <zoran.jovanovic@imgtec.com>2013-11-07 14:35:24 +0000
committerZoran Jovanovic <zoran.jovanovic@imgtec.com>2013-11-07 14:35:24 +0000
commit9f471750fa6f34120d4758d5d14f54f899e34a54 (patch)
treed08eeb9c4058e3ca1535e379676169090217b467 /lib/Target/Mips/MicroMipsInstrFormats.td
parent0f0f1ac011627aa5f90d739b4e0ccffeeb721f50 (diff)
downloadllvm-9f471750fa6f34120d4758d5d14f54f899e34a54.tar.gz
llvm-9f471750fa6f34120d4758d5d14f54f899e34a54.tar.bz2
llvm-9f471750fa6f34120d4758d5d14f54f899e34a54.tar.xz
Support for microMIPS trap instructions 1.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194205 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MicroMipsInstrFormats.td')
-rw-r--r--lib/Target/Mips/MicroMipsInstrFormats.td15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Target/Mips/MicroMipsInstrFormats.td b/lib/Target/Mips/MicroMipsInstrFormats.td
index 4981608bf2..8b7fb8159e 100644
--- a/lib/Target/Mips/MicroMipsInstrFormats.td
+++ b/lib/Target/Mips/MicroMipsInstrFormats.td
@@ -275,3 +275,18 @@ class BGEZAL_FM_MM<bits<5> funct> : MMArch {
let Inst{20-16} = rs;
let Inst{15-0} = offset;
}
+
+class TEQ_FM_MM<bits<6> funct> : MMArch {
+ bits<5> rs;
+ bits<5> rt;
+ bits<4> code_;
+
+ bits<32> Inst;
+
+ let Inst{31-26} = 0x00;
+ let Inst{25-21} = rt;
+ let Inst{20-16} = rs;
+ let Inst{15-12} = code_;
+ let Inst{11-6} = funct;
+ let Inst{5-0} = 0x3c;
+}