Home
last modified time | relevance | path

Searched refs:getTypeAction (Results 1 – 13 of 13) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp257 if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) { in ScalarizeVecRes_UnaryOp()
390 if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) { in ScalarizeVecRes_VSETCC()
745 switch (getTypeAction(InVT)) { in SplitVecRes_BITCAST()
894 if (getTypeAction(RHSVT) == TargetLowering::TypeSplitVector) in SplitVecRes_FCOPYSIGN()
1049 if (getTypeAction(Mask.getValueType()) == TargetLowering::TypeSplitVector) in SplitVecRes_MLOAD()
1059 if (getTypeAction(Src0.getValueType()) == TargetLowering::TypeSplitVector) in SplitVecRes_MLOAD()
1111 if (getTypeAction(Mask.getValueType()) == TargetLowering::TypeSplitVector) in SplitVecRes_MGATHER()
1122 if (getTypeAction(Src0.getValueType()) == TargetLowering::TypeSplitVector) in SplitVecRes_MGATHER()
1128 if (getTypeAction(Index.getValueType()) == TargetLowering::TypeSplitVector) in SplitVecRes_MGATHER()
1185 if (getTypeAction(InVT) == TargetLowering::TypeSplitVector) in SplitVecRes_UnaryOp()
[all …]
DLegalizeIntegerTypes.cpp252 switch (getTypeAction(InVT)) { in PromoteIntRes_BITCAST()
446 if (getTypeAction(N->getOperand(0).getValueType()) in PromoteIntRes_INT_EXTEND()
606 if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger && in PromoteIntRes_SETCC()
609 if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger && in PromoteIntRes_SETCC()
626 if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger) in PromoteIntRes_SHL()
628 if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger) in PromoteIntRes_SHL()
669 if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger) in PromoteIntRes_SRA()
671 if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger) in PromoteIntRes_SRA()
680 if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger) in PromoteIntRes_SRL()
682 if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger) in PromoteIntRes_SRL()
[all …]
DLegalizeTypesGeneric.cpp49 switch (getTypeAction(InVT)) { in ExpandRes_BITCAST()
535 if (getTypeAction(Cond.getValueType()) == TargetLowering::TypeSplitVector) in SplitRes_SELECT()
DLegalizeTypes.h66 TargetLowering::LegalizeTypeAction getTypeAction(EVT VT) const { in getTypeAction() function
67 return TLI.getTypeAction(*DAG.getContext(), VT); in getTypeAction()
72 return TLI.getTypeAction(*DAG.getContext(), VT) == TargetLowering::TypeLegal; in isTypeLegal()
DLegalizeTypes.cpp224 switch (getTypeAction(ResultVT)) { in run()
283 switch (getTypeAction(OpVT)) { in run()
DLegalizeFloatTypes.cpp444 if (getTypeAction(MVT::f32) == TargetLowering::TypeSoftenFloat) in SoftenFloatRes_FP_EXTEND()
448 if (getTypeAction(Op.getValueType()) == TargetLowering::TypePromoteFloat) { in SoftenFloatRes_FP_EXTEND()
458 if (getTypeAction(Op.getValueType()) == TargetLowering::TypeSoftenFloat) in SoftenFloatRes_FP_EXTEND()
1946 switch (getTypeAction(VecVT)) { in PromoteFloatRes_EXTRACT_VECTOR_ELT()
DDAGCombiner.cpp5289 if (TLI.getTypeAction(*DAG.getContext(), Data.getValueType()) != in visitMSCATTER()
5349 if (TLI.getTypeAction(*DAG.getContext(), Data.getValueType()) != in visitMSTORE()
5426 if (TLI.getTypeAction(*DAG.getContext(), VT) != in visitMGATHER()
5501 if (TLI.getTypeAction(*DAG.getContext(), VT) != in visitMLOAD()
5617 if (TLI.getTypeAction(*DAG.getContext(), VT) != in visitVSELECT()
11462 } else if (TLI.getTypeAction(Context, StoreTy) == in MergeConsecutiveStores()
11634 else if (TLI.getTypeAction(Context, StoreTy) == in MergeConsecutiveStores()
DLegalizeDAG.cpp1210 assert((TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) == in LegalizeOp()
1216 assert((TLI.getTypeAction(*DAG.getContext(), Op.getValueType()) == in LegalizeOp()
DSelectionDAG.cpp1131 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) == in getConstant()
1144 TLI->getTypeAction(*getContext(), EltVT) == in getConstant()
DSelectionDAGBuilder.cpp2459 while (TLI.getTypeAction(Ctx, VT) != TargetLoweringBase::TypeLegal && in visitSelect()
/external/llvm/include/llvm/Target/
DTargetLowering.h424 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function
441 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const { in getTypeAction() function
444 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function
445 return ValueTypeActions.getTypeAction(VT); in getTypeAction()
465 switch (getTypeAction(Context, VT)) { in getTypeToExpandTo()
1182 LegalizeTypeAction Action = getTypeAction(Context, VT); in shouldNormalizeToSelectSequence()
/external/llvm/lib/CodeGen/
DTargetLoweringBase.cpp907 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT); in getTypeConversion()
910 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) && in getTypeConversion()
992 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal) in getTypeConversion()
1018 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal) in getTypeConversion()
1396 LegalizeTypeAction TA = getTypeAction(Context, VT); in getVectorTypeBreakdown()
DCodeGenPrepare.cpp789 if (TLI.getTypeAction(CI->getContext(), SrcVT) == in OptimizeNoopCopyExpression()
792 if (TLI.getTypeAction(CI->getContext(), DstVT) == in OptimizeNoopCopyExpression()
5133 TLI->getTypeAction(CI->getContext(), in optimizeInst()