[mips][msa] Added bnz.df, bnz.v, bz.df, and bz.v
authorDaniel Sanders <daniel.sanders@imgtec.com>
Wed, 28 Aug 2013 12:14:50 +0000 (12:14 +0000)
committerDaniel Sanders <daniel.sanders@imgtec.com>
Wed, 28 Aug 2013 12:14:50 +0000 (12:14 +0000)
commit3c380d5e28f86984b147fcd424736c498773f37e
tree6547be0e03066ec1127d97f804ca339c7bfb3bdb
parent2fd3e67dc6438cee5e32e0d7d7d42891df7edd96
[mips][msa] Added bnz.df, bnz.v, bz.df, and bz.v

These intrinsics are legalized to V(ALL|ANY)_(NON)?ZERO nodes,
are matched as SN?Z_[BHWDV]_PSEUDO pseudo's, and emitted as
a branch/mov sequence to evaluate to 0 or 1.

Note: The resulting code is sub-optimal since it doesnt seem to be possible
to feed the result of an intrinsic directly into a brcond. At the moment
it uses (SETCC (VALL_ZERO $ws), 0, SETEQ) and similar which unnecessarily
evaluates the boolean twice.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189478 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/IR/IntrinsicsMips.td
lib/Target/Mips/MipsISelLowering.cpp
lib/Target/Mips/MipsISelLowering.h
lib/Target/Mips/MipsMSAInstrFormats.td
lib/Target/Mips/MipsMSAInstrInfo.td
lib/Target/Mips/MipsSEISelLowering.cpp
lib/Target/Mips/MipsSEISelLowering.h
test/CodeGen/Mips/msa/i10.ll [new file with mode: 0644]
test/CodeGen/Mips/msa/vecs10.ll [new file with mode: 0644]