mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
[mips][msa] Separate the configuration of int/float vector types since they will diverge soon
No functional change llvm-svn: 190506
This commit is contained in:
parent
534d28aa11
commit
7163c2fd6a
@ -83,13 +83,13 @@ MipsSETargetLowering::MipsSETargetLowering(MipsTargetMachine &TM)
|
||||
setOperationAction(ISD::MUL, MVT::v2i16, Legal);
|
||||
|
||||
if (Subtarget->hasMSA()) {
|
||||
addMSAType(MVT::v16i8, &Mips::MSA128BRegClass);
|
||||
addMSAType(MVT::v8i16, &Mips::MSA128HRegClass);
|
||||
addMSAType(MVT::v4i32, &Mips::MSA128WRegClass);
|
||||
addMSAType(MVT::v2i64, &Mips::MSA128DRegClass);
|
||||
addMSAType(MVT::v8f16, &Mips::MSA128HRegClass);
|
||||
addMSAType(MVT::v4f32, &Mips::MSA128WRegClass);
|
||||
addMSAType(MVT::v2f64, &Mips::MSA128DRegClass);
|
||||
addMSAIntType(MVT::v16i8, &Mips::MSA128BRegClass);
|
||||
addMSAIntType(MVT::v8i16, &Mips::MSA128HRegClass);
|
||||
addMSAIntType(MVT::v4i32, &Mips::MSA128WRegClass);
|
||||
addMSAIntType(MVT::v2i64, &Mips::MSA128DRegClass);
|
||||
addMSAFloatType(MVT::v8f16, &Mips::MSA128HRegClass);
|
||||
addMSAFloatType(MVT::v4f32, &Mips::MSA128WRegClass);
|
||||
addMSAFloatType(MVT::v2f64, &Mips::MSA128DRegClass);
|
||||
}
|
||||
|
||||
if (!Subtarget->mipsSEUsesSoftFloat()) {
|
||||
@ -148,7 +148,21 @@ llvm::createMipsSETargetLowering(MipsTargetMachine &TM) {
|
||||
}
|
||||
|
||||
void MipsSETargetLowering::
|
||||
addMSAType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
|
||||
addMSAIntType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
|
||||
addRegisterClass(Ty, RC);
|
||||
|
||||
// Expand all builtin opcodes.
|
||||
for (unsigned Opc = 0; Opc < ISD::BUILTIN_OP_END; ++Opc)
|
||||
setOperationAction(Opc, Ty, Expand);
|
||||
|
||||
setOperationAction(ISD::BITCAST, Ty, Legal);
|
||||
setOperationAction(ISD::LOAD, Ty, Legal);
|
||||
setOperationAction(ISD::STORE, Ty, Legal);
|
||||
|
||||
}
|
||||
|
||||
void MipsSETargetLowering::
|
||||
addMSAFloatType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC) {
|
||||
addRegisterClass(Ty, RC);
|
||||
|
||||
// Expand all builtin opcodes.
|
||||
|
@ -22,7 +22,9 @@ namespace llvm {
|
||||
public:
|
||||
explicit MipsSETargetLowering(MipsTargetMachine &TM);
|
||||
|
||||
void addMSAType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC);
|
||||
void addMSAIntType(MVT::SimpleValueType Ty, const TargetRegisterClass *RC);
|
||||
void addMSAFloatType(MVT::SimpleValueType Ty,
|
||||
const TargetRegisterClass *RC);
|
||||
|
||||
virtual bool allowsUnalignedMemoryAccesses(EVT VT, bool *Fast) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user