Searched refs:getTypeAction (Results 1 – 11 of 11) sorted by relevance
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 287 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function 305 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const { in getTypeAction() function 308 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function 309 return ValueTypeActions.getTypeAction(VT); in getTypeAction() 329 switch (getTypeAction(Context, VT)) { in getTypeToExpandTo() 1431 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(SVT); in getTypeConversion() 1435 ValueTypeActions.getTypeAction(NVT) != TypePromoteInteger) in getTypeConversion() 1512 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal) in getTypeConversion() 1536 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal) in getTypeConversion()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 625 switch (getTypeAction(InVT)) { in SplitVecRes_BITCAST() 883 if (getTypeAction(InVT) == TargetLowering::TypeSplitVector) { in SplitVecRes_UnaryOp() 1689 if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_Convert() 1766 if (getTypeAction(ShVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_Shift() 1809 switch (getTypeAction(InVT)) { in WidenVecRes_BITCAST() 1915 if (getTypeAction(InVT) != TargetLowering::TypeWidenVector) { in WidenVecRes_CONCAT_VECTORS() 1993 if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_CONVERT_RNDSAT() 2061 if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector) in WidenVecRes_EXTRACT_SUBVECTOR() 2143 if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector) in WidenVecRes_SELECT() 2301 if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector) in WidenVecOp_Convert() [all …]
|
D | LegalizeTypes.h | 67 TargetLowering::LegalizeTypeAction getTypeAction(EVT VT) const { in getTypeAction() function 68 return TLI.getTypeAction(*DAG.getContext(), VT); in getTypeAction() 73 return TLI.getTypeAction(*DAG.getContext(), VT) == TargetLowering::TypeLegal; in isTypeLegal()
|
D | LegalizeIntegerTypes.cpp | 214 switch (getTypeAction(InVT)) { in PromoteIntRes_BITCAST() 389 if (getTypeAction(N->getOperand(0).getValueType()) in PromoteIntRes_INT_EXTEND() 527 if (getTypeAction(LHS.getValueType()) == TargetLowering::TypePromoteInteger && in PromoteIntRes_SETCC() 530 if (getTypeAction(RHS.getValueType()) == TargetLowering::TypePromoteInteger && in PromoteIntRes_SETCC() 589 switch (getTypeAction(InOp.getValueType())) { in PromoteIntRes_TRUNCATE() 1648 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_ANY_EXTEND() 2181 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_SIGN_EXTEND() 2416 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_ZERO_EXTEND()
|
D | LegalizeTypes.cpp | 224 switch (getTypeAction(ResultVT)) { in run() 275 switch (getTypeAction(OpVT)) { in run()
|
D | LegalizeTypesGeneric.cpp | 47 switch (getTypeAction(InVT)) { in ExpandRes_BITCAST()
|
D | LegalizeDAG.cpp | 1145 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) == in LegalizeOp() 1150 assert((TLI.getTypeAction(*DAG.getContext(), in LegalizeOp()
|
D | DAGCombiner.cpp | 1623 if (LegalTypes && TLI.getTypeAction(*DAG.getContext(), ElemTy) == in tryFoldToZero() 8085 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) == in MergeConsecutiveStores() 8276 else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) == in MergeConsecutiveStores()
|
D | SelectionDAG.cpp | 980 if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) == in getConstant()
|
/external/llvm/lib/Transforms/Scalar/ |
D | CodeGenPrepare.cpp | 478 if (TLI.getTypeAction(CI->getContext(), SrcVT) == in OptimizeNoopCopyExpression() 481 if (TLI.getTypeAction(CI->getContext(), DstVT) == in OptimizeNoopCopyExpression()
|
/external/llvm/lib/CodeGen/ |
D | TargetLoweringBase.cpp | 1065 LegalizeTypeAction TA = getTypeAction(Context, VT); in getVectorTypeBreakdown()
|