HomeSort by relevance Sort by last modified time
    Searched defs:DstTy (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 70 EVT DstTy = TLI->getValueType(DL, Dst);
72 if (!SrcTy.isSimple() || !DstTy.isSimple())
155 DstTy.getSimpleVT(),
185 DstTy.getSimpleVT(),
216 ISD, DstTy.getSimpleVT(),
235 DstTy.getSimpleVT(),
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 184 EVT DstTy = TLI->getValueType(DL, Dst);
186 if (!SrcTy.isSimple() || !DstTy.isSimple())
287 DstTy.getSimpleVT(),
  /external/llvm/lib/IR/
AutoUpgrade.cpp 492 VectorType *DstTy = cast<VectorType>(CI->getType());
493 unsigned NumDstElts = DstTy->getNumElements();
502 Rep = Builder.CreateSExt(SV, DstTy);
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
CGExprScalar.cpp 141 Value *EmitConversionToBool(Value *Src, QualType DstTy);
147 llvm::Type *DstTy, SourceLocation Loc);
151 Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy,
154 Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy,
160 QualType SrcTy, QualType DstTy,
599 QualType DstType, llvm::Type *DstTy, SourceLocation Loc) {
636 if (isa<llvm::IntegerType>(DstTy)) {
756 llvm::Type *DstTy = ConvertType(DstType);
761 if (DstTy->isFloatingPointTy()) {
764 CGF.CGM.getIntrinsic(llvm::Intrinsic::convert_from_fp16, DstTy),
    [all...]
MicrosoftCXXABI.cpp 646 const MemberPointerType *SrcTy, const MemberPointerType *DstTy,
659 const MemberPointerType *SrcTy, const MemberPointerType *DstTy,
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
DependenceAnalysis.cpp 793 IntegerType *DstTy = dyn_cast<IntegerType>(Dst->getType());
794 if (SrcTy == nullptr || DstTy == nullptr) {
795 assert(SrcTy == DstTy && "This function only unify integer types and "
804 if (DstTy->getBitWidth() > widestWidthSeen) {
805 widestWidthSeen = DstTy->getBitWidth();
806 widestType = DstTy;
818 IntegerType *DstTy = dyn_cast<IntegerType>(Dst->getType());
819 if (SrcTy == nullptr || DstTy == nullptr) {
820 assert(SrcTy == DstTy && "This function only unify integer types and "
828 if (DstTy->getBitWidth() < widestWidthSeen)
    [all...]
  /external/llvm/lib/Linker/
IRMover.cpp 54 void addTypeMapping(Type *DstTy, Type *SrcTy);
74 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
78 void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
84 if (!areTypesIsomorphic(DstTy, SrcTy)) {
106 bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
108 if (DstTy->getTypeID() != SrcTy->getTypeID())
114 return Entry == DstTy;
118 if (DstTy == SrcTy) {
119 Entry = DstTy;
129 Entry = DstTy;
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 314 VectorType *DstTy = cast<VectorType>(II.getType());
315 unsigned NumDstElts = DstTy->getNumElements();
324 return SignExtend ? Builder.CreateSExt(SV, DstTy)
325 : Builder.CreateZExt(SV, DstTy);
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 335 milliseconds