Searched refs:getTypeAction (Results 1 – 12 of 12) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 250 if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) { in ScalarizeVecRes_UnaryOp() 382 if (getTypeAction(OpVT) == TargetLowering::TypeScalarizeVector) { in ScalarizeVecRes_VSETCC() 723 switch (getTypeAction(InVT)) { in SplitVecRes_BITCAST() 1075 if (getTypeAction(InVT) == TargetLowering::TypeSplitVector) in SplitVecRes_UnaryOp() 2000 if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_Convert() 2076 if (getTypeAction(ShVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_Shift() 2119 switch (getTypeAction(InVT)) { in WidenVecRes_BITCAST() 2224 if (getTypeAction(InVT) != TargetLowering::TypeWidenVector) { in WidenVecRes_CONCAT_VECTORS() 2302 if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_CONVERT_RNDSAT() 2370 if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector) in WidenVecRes_EXTRACT_SUBVECTOR() [all …]
|
D | LegalizeIntegerTypes.cpp | 243 switch (getTypeAction(InVT)) { in PromoteIntRes_BITCAST() 429 if (getTypeAction(N->getOperand(0).getValueType()) in PromoteIntRes_INT_EXTEND() 583 if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger && in PromoteIntRes_SETCC() 586 if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger && in PromoteIntRes_SETCC() 645 switch (getTypeAction(InOp.getValueType())) { in PromoteIntRes_TRUNCATE() 1137 if (getTypeAction(DataVT) == TargetLowering::TypePromoteInteger) { in PromoteIntOp_MSTORE() 1144 assert(getTypeAction(DataVT) == TargetLowering::TypeWidenVector && in PromoteIntOp_MSTORE() 1148 if (getTypeAction(MaskVT) == TargetLowering::TypeWidenVector) in PromoteIntOp_MSTORE() 1732 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_ANY_EXTEND() 1860 if (getTypeAction(Op.getValueType()) == TargetLowering::TypePromoteFloat) in ExpandIntRes_FP_TO_SINT() [all …]
|
D | LegalizeTypes.h | 66 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()
|
D | LegalizeTypesGeneric.cpp | 49 switch (getTypeAction(InVT)) { in ExpandRes_BITCAST() 528 if (getTypeAction(Cond.getValueType()) == TargetLowering::TypeSplitVector) in SplitRes_SELECT()
|
D | LegalizeTypes.cpp | 226 switch (getTypeAction(ResultVT)) { in run() 281 switch (getTypeAction(OpVT)) { in run()
|
D | LegalizeFloatTypes.cpp | 410 if (getTypeAction(MVT::f32) == TargetLowering::TypeSoftenFloat) in SoftenFloatRes_FP_EXTEND() 415 if (getTypeAction(Op.getValueType()) == TargetLowering::TypeSoftenFloat) in SoftenFloatRes_FP_EXTEND() 1826 switch (getTypeAction(VecVT)) { in PromoteFloatRes_EXTRACT_VECTOR_ELT()
|
D | LegalizeDAG.cpp | 1164 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) == in LegalizeOp() 1169 assert((TLI.getTypeAction(*DAG.getContext(), in LegalizeOp()
|
D | DAGCombiner.cpp | 5013 if (TLI.getTypeAction(*DAG.getContext(), Data.getValueType()) != in visitMSTORE() 5088 if (TLI.getTypeAction(*DAG.getContext(), VT) != in visitMLOAD() 5201 if (TLI.getTypeAction(*DAG.getContext(), VT) != in visitVSELECT() 10353 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) == in MergeConsecutiveStores() 10498 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) == in MergeConsecutiveStores()
|
D | SelectionDAG.cpp | 1115 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) == in getConstant() 1128 TLI->getTypeAction(*getContext(), EltVT) == in getConstant()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 407 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function 425 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const { in getTypeAction() function 428 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function 429 return ValueTypeActions.getTypeAction(VT); in getTypeAction() 449 switch (getTypeAction(Context, VT)) { in getTypeToExpandTo() 1129 LegalizeTypeAction Action = getTypeAction(Context, VT); in shouldNormalizeToSelectSequence()
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringBase.cpp | 905 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT); in getTypeConversion() 908 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) && in getTypeConversion() 990 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal) in getTypeConversion() 1016 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal) in getTypeConversion() 1399 LegalizeTypeAction TA = getTypeAction(Context, VT); in getVectorTypeBreakdown()
|
D | CodeGenPrepare.cpp | 736 if (TLI.getTypeAction(CI->getContext(), SrcVT) == in OptimizeNoopCopyExpression() 739 if (TLI.getTypeAction(CI->getContext(), DstVT) == in OptimizeNoopCopyExpression() 4328 if (TLI && TLI->getTypeAction(CI->getContext(), in OptimizeInst()
|