Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DValueTypes.h147 MVT(SimpleValueType SVT) : SimpleTy(SVT) { } in MVT() argument
451 EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { } in EVT()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp553 EVT SVT = VT.getScalarType(); in ExpandUINT_TO_FLOAT() local
554 assert((SVT.getSizeInBits() == 64 || SVT.getSizeInBits() == 32) && in ExpandUINT_TO_FLOAT()
557 unsigned BW = SVT.getSizeInBits(); in ExpandUINT_TO_FLOAT()
563 uint64_t HWMask = (SVT.getSizeInBits()==64)?0x00000000FFFFFFFF:0x0000FFFF; in ExpandUINT_TO_FLOAT()
DTargetLowering.cpp828 EVT SVT = (MVT::SimpleValueType)nVT; in computeRegisterProperties() local
831 if (SVT.getVectorElementType().getSizeInBits() > EltVT.getSizeInBits() in computeRegisterProperties()
832 && SVT.getVectorNumElements() == NElts && in computeRegisterProperties()
833 isTypeLegal(SVT) && SVT.getScalarType().isInteger()) { in computeRegisterProperties()
834 TransformToType[i] = SVT; in computeRegisterProperties()
835 RegisterTypeForVT[i] = SVT; in computeRegisterProperties()
847 EVT SVT = (MVT::SimpleValueType)nVT; in computeRegisterProperties() local
848 if (SVT.getVectorElementType() == EltVT && in computeRegisterProperties()
849 SVT.getVectorNumElements() > NElts && in computeRegisterProperties()
850 isTypeLegal(SVT)) { in computeRegisterProperties()
[all …]
DLegalizeIntegerTypes.cpp511 EVT SVT = TLI.getSetCCResultType(N->getOperand(0).getValueType()); in PromoteIntRes_SETCC() local
517 if (!TLI.isTypeLegal(SVT)) in PromoteIntRes_SETCC()
518 SVT = NVT; in PromoteIntRes_SETCC()
521 assert(SVT.isVector() == N->getOperand(0).getValueType().isVector() && in PromoteIntRes_SETCC()
525 SDValue SetCC = DAG.getNode(N->getOpcode(), dl, SVT, N->getOperand(0), in PromoteIntRes_SETCC()
528 assert(NVT.bitsLE(SVT) && "Integer type overpromoted?"); in PromoteIntRes_SETCC()
875 EVT SVT = TLI.getSetCCResultType(MVT::Other); in PromoteIntOp_BRCOND() local
876 SDValue Cond = PromoteTargetBoolean(N->getOperand(1), SVT); in PromoteIntOp_BRCOND()
978 EVT SVT = TLI.getSetCCResultType(N->getOpcode() == ISD::SELECT ? in PromoteIntOp_SELECT() local
980 Cond = PromoteTargetBoolean(Cond, SVT); in PromoteIntOp_SELECT()
DLegalizeFloatTypes.cpp541 EVT SVT = N->getOperand(0).getValueType(); in SoftenFloatRes_XINT_TO_FP() local
554 if (NVT.bitsGE(SVT)) in SoftenFloatRes_XINT_TO_FP()
702 EVT SVT = N->getOperand(0).getValueType(); in SoftenFloatOp_FP_ROUND() local
705 RTLIB::Libcall LC = RTLIB::getFPROUND(SVT, RVT); in SoftenFloatOp_FP_ROUND()
DSelectionDAG.cpp4414 EVT SVT,bool isVolatile, bool isNonTemporal, in getTruncStore() argument
4420 Alignment = getEVTAlignment(SVT); in getTruncStore()
4433 MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment, in getTruncStore()
4436 return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO); in getTruncStore()
4440 SDValue Ptr, EVT SVT, in getTruncStore() argument
4446 if (VT == SVT) in getTruncStore()
4449 assert(SVT.getScalarType().bitsLT(VT.getScalarType()) && in getTruncStore()
4451 assert(VT.isInteger() == SVT.isInteger() && in getTruncStore()
4453 assert(VT.isVector() == SVT.isVector() && in getTruncStore()
4456 VT.getVectorNumElements() == SVT.getVectorNumElements()) && in getTruncStore()
[all …]
DLegalizeDAG.cpp264 EVT SVT = VT; in ExpandConstantFP() local
265 while (SVT != MVT::f32) { in ExpandConstantFP()
266 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1); in ExpandConstantFP()
267 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) && in ExpandConstantFP()
270 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) && in ExpandConstantFP()
272 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); in ExpandConstantFP()
274 VT = SVT; in ExpandConstantFP()
DLegalizeVectorTypes.cpp2250 EVT SVT = TLI.getSetCCResultType(InOp0.getValueType()); in WidenVecOp_SETCC() local
2252 SVT, InOp0, InOp1, N->getOperand(2)); in WidenVecOp_SETCC()
2256 SVT.getVectorElementType(), in WidenVecOp_SETCC()
DDAGCombiner.cpp4411 EVT SVT = TLI.getSetCCResultType(N0VT); in visitSIGN_EXTEND() local
4418 if (VT.getSizeInBits() == SVT.getSizeInBits()) in visitSIGN_EXTEND()
4433 if (SVT == MatchingVectorType) { in visitSIGN_EXTEND()
7458 EVT SVT = Value.getOperand(0).getValueType(); in visitSTORE() local
7460 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext())); in visitSTORE()
7463 TLI.isOperationLegalOrCustom(ISD::STORE, SVT))) in visitSTORE()
/external/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp933 EVT SVT = OpNode->getValueType(0); in LowerSELECT_CC() local
936 return DAG.getNode(ISD::SELECT, dl, SVT, Cond, TrueVal, FalseVal); in LowerSELECT_CC()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp311 MVT::SimpleValueType SVT = VT.getSimpleVT().SimpleTy; in allowsUnalignedMemoryAccesses() local
313 switch (SVT) { in allowsUnalignedMemoryAccesses()
/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