summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSEISelLowering.h
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2013-10-23 10:36:52 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2013-10-23 10:36:52 +0000
commit09c7f4026afa46ca7ca67d47179013a340a5e944 (patch)
treea7a44aa0bff24077684577eada4bbcdac09ddbfd /lib/Target/Mips/MipsSEISelLowering.h
parentb161955ffbda5ccb5293e0c76ef982acb6ec6661 (diff)
downloadllvm-09c7f4026afa46ca7ca67d47179013a340a5e944.tar.gz
llvm-09c7f4026afa46ca7ca67d47179013a340a5e944.tar.bz2
llvm-09c7f4026afa46ca7ca67d47179013a340a5e944.tar.xz
[mips][msa] Added support for matching fexp2 from normal IR (i.e. not intrinsics)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193239 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSEISelLowering.h')
-rw-r--r--lib/Target/Mips/MipsSEISelLowering.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Target/Mips/MipsSEISelLowering.h b/lib/Target/Mips/MipsSEISelLowering.h
index c20cbffbb2..c5210d94b3 100644
--- a/lib/Target/Mips/MipsSEISelLowering.h
+++ b/lib/Target/Mips/MipsSEISelLowering.h
@@ -102,6 +102,12 @@ namespace llvm {
/// \brief Emit the FILL_FD pseudo instruction
MachineBasicBlock *emitFILL_FD(MachineInstr *MI,
MachineBasicBlock *BB) const;
+ /// \brief Emit the FEXP2_W_1 pseudo instructions.
+ MachineBasicBlock *emitFEXP2_W_1(MachineInstr *MI,
+ MachineBasicBlock *BB) const;
+ /// \brief Emit the FEXP2_D_1 pseudo instructions.
+ MachineBasicBlock *emitFEXP2_D_1(MachineInstr *MI,
+ MachineBasicBlock *BB) const;
};
}