Searched refs:VecTys (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/lib/Analysis/ |
D | VFABIDemangling.cpp | 281 SmallVector<VectorType *, 2> VecTys; in verifyAllVectorsHaveSameWidth() local 283 VecTys.push_back(RetTy); in verifyAllVectorsHaveSameWidth() 286 VecTys.push_back(VTy); in verifyAllVectorsHaveSameWidth() 288 if (VecTys.size() <= 1) in verifyAllVectorsHaveSameWidth() 291 assert(VecTys.size() > 1 && "Invalid number of elements."); in verifyAllVectorsHaveSameWidth() 292 const ElementCount EC = VecTys[0]->getElementCount(); in verifyAllVectorsHaveSameWidth() 294 llvm::make_range(VecTys.begin() + 1, VecTys.end()), in verifyAllVectorsHaveSameWidth()
|
/external/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 60 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-project/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 86 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/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 86 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/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 1703 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()
|
/external/llvm-project/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 3404 SmallVector<Type *, 4> VecTys; in getVectorCallCosts() local 3406 VecTys.push_back( in getVectorCallCosts() 3410 LibCost = TTI->getCallInstrCost(nullptr, VecTy, VecTys, in getVectorCallCosts()
|