/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 408 SDVTList getVTList(EVT VT1, EVT VT2); 409 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3); 410 SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4); 901 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, EVT VT2); 902 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, 904 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, 906 SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1, 908 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, 910 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, 912 SDNode *SelectNodeTo(SDNode *N, unsigned TargetOpc, EVT VT1, [all …]
|
/external/eigen/unsupported/test/ |
D | FFTW.cpp | 28 template <typename VT1,typename VT2> 29 long double fft_rmse( const VT1 & fftbuf,const VT2 & timebuf) in fft_rmse() 50 template <typename VT1,typename VT2> 51 long double dif_rmse( const VT1 buf1,const VT2 buf2) in dif_rmse()
|
/external/llvm/include/llvm/IR/ |
D | LegacyPassNameParser.h | 90 static int ValLessThan(const PassNameParser::OptionInfo *VT1, in ValLessThan() argument 92 return std::strcmp(VT1->Name, VT2->Name); in ValLessThan()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.h | 109 bool isTruncateFree(EVT VT1, EVT VT2) const override; 120 bool isZExtFree(EVT VT1, EVT VT2) const override;
|
D | MSP430ISelLowering.cpp | 1167 bool MSP430TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() argument 1168 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 1171 return (VT1.getSizeInBits() > VT2.getSizeInBits()); in isTruncateFree() 1179 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() argument 1181 return 0 && VT1 == MVT::i8 && VT2 == MVT::i16; in isZExtFree()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1819 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { in CreateStackTemporary() argument 1820 unsigned Bytes = std::max(VT1.getStoreSizeInBits(), in CreateStackTemporary() 1822 Type *Ty1 = VT1.getTypeForEVT(*getContext()); in CreateStackTemporary() 5287 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { in getVTList() argument 5290 ID.AddInteger(VT1.getRawBits()); in getVTList() 5297 Array[0] = VT1; in getVTList() 5305 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { in getVTList() argument 5308 ID.AddInteger(VT1.getRawBits()); in getVTList() 5316 Array[0] = VT1; in getVTList() 5325 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { in getVTList() argument [all …]
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | termbits.h | 106 #define VT1 0040000 macro
|
/external/kernel-headers/original/uapi/asm-mips/asm/ |
D | termbits.h | 126 #define VT1 0040000 macro
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.h | 742 bool isTruncateFree(EVT VT1, EVT VT2) const override; 755 bool isZExtFree(EVT VT1, EVT VT2) const override; 770 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
D | X86ISelLowering.cpp | 17778 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() argument 17779 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 17781 unsigned NumBits1 = VT1.getSizeInBits(); in isTruncateFree() 17791 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() argument 17793 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit(); in isZExtFree() 17797 EVT VT1 = Val.getValueType(); in isZExtFree() local 17798 if (isZExtFree(VT1, VT2)) in isZExtFree() 17804 if (!VT1.isSimple() || !VT1.isInteger() || in isZExtFree() 17808 switch (VT1.getSimpleVT().SimpleTy) { in isZExtFree() 17843 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const { in isNarrowingProfitable() argument [all …]
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.h | 296 bool isTruncateFree(EVT VT1, EVT VT2) const override; 301 bool isZExtFree(EVT VT1, EVT VT2) const override;
|
D | AArch64ISelLowering.cpp | 6556 bool AArch64TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() argument 6557 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 6559 unsigned NumBits1 = VT1.getSizeInBits(); in isTruncateFree() 6601 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() argument 6602 if (VT1.isVector() || VT2.isVector() || !VT1.isInteger() || !VT2.isInteger()) in isZExtFree() 6604 unsigned NumBits1 = VT1.getSizeInBits(); in isZExtFree() 6610 EVT VT1 = Val.getValueType(); in isZExtFree() local 6611 if (isZExtFree(VT1, VT2)) { in isZExtFree() 6619 return (VT1.isSimple() && !VT1.isVector() && VT1.isInteger() && in isZExtFree() 6621 VT1.getSizeInBits() <= 32); in isZExtFree()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonISelLowering.h | 136 bool isTruncateFree(EVT VT1, EVT VT2) const override;
|
D | HexagonISelLowering.cpp | 1865 bool HexagonTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() argument 1866 if (!VT1.isSimple() || !VT2.isSimple()) { in isTruncateFree() 1869 return ((VT1.getSimpleVT() == MVT::i64) && (VT2.getSimpleVT() == MVT::i32)); in isTruncateFree()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 750 EVT VT1; in getRegisterType() local 753 (void)getVectorTypeBreakdown(Context, VT, VT1, in getRegisterType() 778 EVT VT1; in getNumRegisters() local 781 return getVectorTypeBreakdown(Context, VT, VT1, NumIntermediates, VT2); in getNumRegisters()
|
/external/llvm/lib/Target/R600/ |
D | AMDGPUISelLowering.h | 124 bool isNarrowingProfitable(EVT VT1, EVT VT2) const override;
|
/external/llvm/lib/Target/XCore/ |
D | XCoreISelLowering.cpp | 193 EVT VT1 = Val.getValueType(); in isZExtFree() local 194 if (!VT1.isSimple() || !VT1.isInteger() || in isZExtFree() 198 switch (VT1.getSimpleVT().SimpleTy) { in isZExtFree()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.h | 562 bool isTruncateFree(EVT VT1, EVT VT2) const override;
|
D | PPCISelLowering.cpp | 11119 bool PPCTargetLowering::isTruncateFree(EVT VT1, EVT VT2) const { in isTruncateFree() argument 11120 if (!VT1.isInteger() || !VT2.isInteger()) in isTruncateFree() 11122 unsigned NumBits1 = VT1.getSizeInBits(); in isTruncateFree()
|
/external/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 50 for (MVT VT1 : MVT::vector_valuetypes()) { in MipsSETargetLowering() local 51 setTruncStoreAction(VT0, VT1, Expand); in MipsSETargetLowering() 52 setLoadExtAction(ISD::SEXTLOAD, VT0, VT1, Expand); in MipsSETargetLowering() 53 setLoadExtAction(ISD::ZEXTLOAD, VT0, VT1, Expand); in MipsSETargetLowering() 54 setLoadExtAction(ISD::EXTLOAD, VT0, VT1, Expand); in MipsSETargetLowering()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | BBVectorize.cpp | 1034 Type *VT1 = getVecTypeForPair(IT1, JT1), in areInstsCompatible() local 1078 unsigned VCost = getInstrCost(I->getOpcode(), VT1, VT2, Op1VK, Op2VK); in areInstsCompatible() 1086 unsigned VParts1 = TTI->getNumberOfParts(VT1), in areInstsCompatible()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 9941 EVT VT1 = Val.getValueType(); in isZExtFree() local 9942 if (!VT1.isSimple() || !VT1.isInteger() || in isZExtFree() 9946 switch (VT1.getSimpleVT().SimpleTy) { in isZExtFree()
|