Searched refs:getTypeAction (Results 1 – 10 of 10) sorted by relevance
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 266 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function 284 LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const { in getTypeAction() function 287 LegalizeTypeAction getTypeAction(MVT VT) const { in getTypeAction() function 288 return ValueTypeActions.getTypeAction(VT); in getTypeAction() 308 switch (getTypeAction(Context, VT)) { in getTypeToExpandTo() 1949 LegalizeTypeAction LA = ValueTypeActions.getTypeAction(VT.getSimpleVT()); in getTypeConversion() 1953 ValueTypeActions.getTypeAction(NVT.getSimpleVT()) != TypePromoteInteger) in getTypeConversion() 2023 if (NVT != MVT() && ValueTypeActions.getTypeAction(NVT) == TypeLegal) in getTypeConversion() 2043 if (ValueTypeActions.getTypeAction(LargerVector) == TypeLegal) in getTypeConversion()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 604 switch (getTypeAction(InVT)) { in SplitVecRes_BITCAST() 858 if (getTypeAction(InVT) == TargetLowering::TypeSplitVector) { in SplitVecRes_UnaryOp() 1540 if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_Convert() 1616 if (getTypeAction(ShVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_Shift() 1659 switch (getTypeAction(InVT)) { in WidenVecRes_BITCAST() 1763 if (getTypeAction(InVT) != TargetLowering::TypeWidenVector) { in WidenVecRes_CONCAT_VECTORS() 1841 if (getTypeAction(InVT) == TargetLowering::TypeWidenVector) { in WidenVecRes_CONVERT_RNDSAT() 1909 if (getTypeAction(InOp.getValueType()) == TargetLowering::TypeWidenVector) in WidenVecRes_EXTRACT_SUBVECTOR() 1991 if (getTypeAction(CondVT) == TargetLowering::TypeWidenVector) in WidenVecRes_SELECT() 2145 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 | LegalizeTypes.cpp | 224 switch (getTypeAction(ResultVT)) { in run() 275 switch (getTypeAction(OpVT)) { in run()
|
D | LegalizeIntegerTypes.cpp | 214 switch (getTypeAction(InVT)) { in PromoteIntRes_BITCAST() 389 if (getTypeAction(N->getOperand(0).getValueType()) in PromoteIntRes_INT_EXTEND() 576 switch (getTypeAction(InOp.getValueType())) { in PromoteIntRes_TRUNCATE() 1637 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_ANY_EXTEND() 2156 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_SIGN_EXTEND() 2388 assert(getTypeAction(Op.getValueType()) == in ExpandIntRes_ZERO_EXTEND()
|
D | LegalizeTypesGeneric.cpp | 47 switch (getTypeAction(InVT)) { in ExpandRes_BITCAST()
|
D | LegalizeDAG.cpp | 1138 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) == in LegalizeOp() 1143 assert((TLI.getTypeAction(*DAG.getContext(), in LegalizeOp()
|
D | TargetLowering.cpp | 930 LegalizeTypeAction TA = getTypeAction(Context, VT); in getVectorTypeBreakdown()
|
D | SelectionDAG.cpp | 999 if (VT.isVector() && TLI.getTypeAction(*getContext(), EltVT) == in getConstant()
|
/external/llvm/lib/Transforms/Scalar/ |
D | CodeGenPrepare.cpp | 463 if (TLI.getTypeAction(CI->getContext(), SrcVT) == in OptimizeNoopCopyExpression() 466 if (TLI.getTypeAction(CI->getContext(), DstVT) == in OptimizeNoopCopyExpression()
|