Home
last modified time | relevance | path

Searched refs:SVT (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp270 EVT SVT = VT.getScalarType(); in ExpandUINT_TO_FLOAT() local
271 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) && in ExpandUINT_TO_FLOAT()
274 unsigned BW = SVT.getSizeInBits(); in ExpandUINT_TO_FLOAT()
280 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF; in ExpandUINT_TO_FLOAT()
DTargetLowering.cpp843 EVT SVT = (MVT::SimpleValueType)nVT; in computeRegisterProperties() local
846 if (SVT.getVectorElementType().getSizeInBits() > EltVT.getSizeInBits() in computeRegisterProperties()
847 && SVT.getVectorNumElements() == NElts && in computeRegisterProperties()
848 isTypeLegal(SVT) && SVT.getScalarType().isInteger()) { in computeRegisterProperties()
849 TransformToType[i] = SVT; in computeRegisterProperties()
850 RegisterTypeForVT[i] = SVT; in computeRegisterProperties()
862 EVT SVT = (MVT::SimpleValueType)nVT; in computeRegisterProperties() local
863 if (SVT.getVectorElementType() == EltVT && in computeRegisterProperties()
864 SVT.getVectorNumElements() > NElts && in computeRegisterProperties()
865 isTypeLegal(SVT)) { in computeRegisterProperties()
[all …]
DLegalizeIntegerTypes.cpp469 EVT SVT = TLI.getSetCCResultType(N->getOperand(0).getValueType()); in PromoteIntRes_SETCC() local
470 assert(isTypeLegal(SVT) && "Illegal SetCC type!"); in PromoteIntRes_SETCC()
474 SDValue SetCC = DAG.getNode(ISD::SETCC, dl, SVT, N->getOperand(0), in PromoteIntRes_SETCC()
479 assert(NVT.bitsLE(SVT) && "Integer type overpromoted?"); in PromoteIntRes_SETCC()
818 EVT SVT = TLI.getSetCCResultType(MVT::Other); in PromoteIntOp_BRCOND() local
819 SDValue Cond = PromoteTargetBoolean(N->getOperand(1), SVT); in PromoteIntOp_BRCOND()
919 EVT SVT = TLI.getSetCCResultType(N->getOperand(1).getValueType()); in PromoteIntOp_SELECT() local
920 SDValue Cond = PromoteTargetBoolean(N->getOperand(0), SVT); in PromoteIntOp_SELECT()
DLegalizeFloatTypes.cpp534 EVT SVT = N->getOperand(0).getValueType(); in SoftenFloatRes_XINT_TO_FP() local
547 if (NVT.bitsGE(SVT)) in SoftenFloatRes_XINT_TO_FP()
695 EVT SVT = N->getOperand(0).getValueType(); in SoftenFloatOp_FP_ROUND() local
698 RTLIB::Libcall LC = RTLIB::getFPROUND(SVT, RVT); in SoftenFloatOp_FP_ROUND()
DSelectionDAG.cpp4197 EVT SVT,bool isVolatile, bool isNonTemporal, in getTruncStore() argument
4203 Alignment = getEVTAlignment(SVT); in getTruncStore()
4216 MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment, in getTruncStore()
4219 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO); in getTruncStore()
4223 SDValue Ptr, EVT SVT, in getTruncStore() argument
4229 if (VT == SVT) in getTruncStore()
4232 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) && in getTruncStore()
4234 assert(VT.isInteger() == SVT.isInteger() && in getTruncStore()
4236 assert(VT.isVector() == SVT.isVector() && in getTruncStore()
4239 VT.getVectorNumElements() == SVT.getVectorNumElements()) && in getTruncStore()
[all …]
DLegalizeDAG.cpp360 EVT SVT = VT; in ExpandConstantFP() local
361 while (SVT != MVT::f32) { in ExpandConstantFP()
362 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1); in ExpandConstantFP()
363 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) && in ExpandConstantFP()
366 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) && in ExpandConstantFP()
368 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP()
370 VT = SVT; in ExpandConstantFP()
DLegalizeVectorTypes.cpp265 EVT SVT = TLI.getSetCCResultType(LHS.getValueType()); in ScalarizeVecRes_VSETCC() local
269 SDValue Res = DAG.getNode(ISD::SETCC, DL, SVT, LHS, RHS, N->getOperand(2)); in ScalarizeVecRes_VSETCC()
273 if (NVT.bitsLE(SVT)) { in ScalarizeVecRes_VSETCC()
278 Res = DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, SVT, Res, in ScalarizeVecRes_VSETCC()
DDAGCombiner.cpp6583 EVT SVT = Value.getOperand(0).getValueType(); in visitSTORE() local
6585 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext())); in visitSTORE()
6588 TLI.isOperationLegalOrCustom(ISD::STORE, SVT))) in visitSTORE()
/external/llvm/include/llvm/CodeGen/
DValueTypes.h135 MVT(SimpleValueType SVT) : SimpleTy(SVT) { } in MVT() argument
388 EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { } in EVT()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp897 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i; in X86TargetLowering() local
898 EVT VT = SVT; in X86TargetLowering()
904 setOperationAction(ISD::AND, SVT, Promote); in X86TargetLowering()
905 AddPromotedToType (ISD::AND, SVT, MVT::v2i64); in X86TargetLowering()
906 setOperationAction(ISD::OR, SVT, Promote); in X86TargetLowering()
907 AddPromotedToType (ISD::OR, SVT, MVT::v2i64); in X86TargetLowering()
908 setOperationAction(ISD::XOR, SVT, Promote); in X86TargetLowering()
909 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64); in X86TargetLowering()
910 setOperationAction(ISD::LOAD, SVT, Promote); in X86TargetLowering()
911 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64); in X86TargetLowering()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_gl0_kpdf_mgc.pkb2680 ��2�A��%��]E}xrp�|�{y��A;BGagp107+:=?*%46;921<SVT