Home
last modified time | relevance | path

Searched refs:VecTys (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp86 MVT::SimpleValueType VecTys[2] = {MVT::v2i16, MVT::v4i8}; in MipsSETargetLowering() local
88 for (unsigned i = 0; i < array_lengthof(VecTys); ++i) { in MipsSETargetLowering()
89 addRegisterClass(VecTys[i], &Mips::DSPRRegClass); in MipsSETargetLowering()
93 setOperationAction(Opc, VecTys[i], Expand); in MipsSETargetLowering()
95 setOperationAction(ISD::ADD, VecTys[i], Legal); in MipsSETargetLowering()
96 setOperationAction(ISD::SUB, VecTys[i], Legal); in MipsSETargetLowering()
97 setOperationAction(ISD::LOAD, VecTys[i], Legal); in MipsSETargetLowering()
98 setOperationAction(ISD::STORE, VecTys[i], Legal); in MipsSETargetLowering()
99 setOperationAction(ISD::BITCAST, VecTys[i], Legal); in MipsSETargetLowering()
/external/llvm/lib/Target/Mips/
DMipsSEISelLowering.cpp60 MVT::SimpleValueType VecTys[2] = {MVT::v2i16, MVT::v4i8}; in MipsSETargetLowering() local
62 for (unsigned i = 0; i < array_lengthof(VecTys); ++i) { in MipsSETargetLowering()
63 addRegisterClass(VecTys[i], &Mips::DSPRRegClass); in MipsSETargetLowering()
67 setOperationAction(Opc, VecTys[i], Expand); in MipsSETargetLowering()
69 setOperationAction(ISD::ADD, VecTys[i], Legal); in MipsSETargetLowering()
70 setOperationAction(ISD::SUB, VecTys[i], Legal); in MipsSETargetLowering()
71 setOperationAction(ISD::LOAD, VecTys[i], Legal); in MipsSETargetLowering()
72 setOperationAction(ISD::STORE, VecTys[i], Legal); in MipsSETargetLowering()
73 setOperationAction(ISD::BITCAST, VecTys[i], Legal); in MipsSETargetLowering()
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp1703 SmallVector<Type*, 4> ScalarTys, VecTys; in getEntryCost() local
1706 VecTys.push_back(VectorType::get(CI->getArgOperand(op)->getType(), in getEntryCost()
1717 int VecCallCost = TTI->getIntrinsicInstrCost(ID, VecTy, VecTys, FMF); in getEntryCost()