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

  /external/llvm/lib/Target/ARM/
ARMTargetTransformInfo.cpp 96 EVT DstTy = TLI->getValueType(DL, Dst);
98 if (!SrcTy.isSimple() || !DstTy.isSimple())
181 DstTy.getSimpleVT(),
211 DstTy.getSimpleVT(),
242 ISD, DstTy.getSimpleVT(),
261 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/spirv-llvm/lib/SPIRV/
OCLUtil.cpp 551 Type *DstTy = BIC->getDestTy();
554 if (DstTy->isPointerTy())
555 DstTy = DstTy->getPointerElementType();
557 auto DstST = dyn_cast<StructType>(DstTy);
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
InstructionSimplify.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/IR/
AutoUpgrade.cpp 699 VectorType *DstTy = cast<VectorType>(CI->getType());
702 unsigned NumDstElts = DstTy->getNumElements();
712 Rep = Builder.CreateSIToFP(Rep, DstTy, "cvtdq2pd");
714 Rep = Builder.CreateFPExt(Rep, DstTy, "cvtps2pd");
719 VectorType *DstTy = cast<VectorType>(CI->getType());
720 Rep = Builder.CreateFPToSI(Src, DstTy, "cvtt");
    [all...]
  /external/llvm/lib/Linker/
IRMover.cpp 57 void addTypeMapping(Type *DstTy, Type *SrcTy);
77 bool areTypesIsomorphic(Type *DstTy, Type *SrcTy);
81 void TypeMapTy::addTypeMapping(Type *DstTy, Type *SrcTy) {
87 if (!areTypesIsomorphic(DstTy, SrcTy)) {
109 bool TypeMapTy::areTypesIsomorphic(Type *DstTy, Type *SrcTy) {
111 if (DstTy->getTypeID() != SrcTy->getTypeID())
117 return Entry == DstTy;
121 if (DstTy == SrcTy) {
122 Entry = DstTy;
132 Entry = DstTy;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCalls.cpp 768 Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
769 if (!SrcTy->isSized() || !DstTy->isSized())
771 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
DependenceAnalysis.cpp 788 IntegerType *DstTy = dyn_cast<IntegerType>(Dst->getType());
789 if (SrcTy == nullptr || DstTy == nullptr) {
790 assert(SrcTy == DstTy && "This function only unify integer types and "
799 if (DstTy->getBitWidth() > widestWidthSeen) {
800 widestWidthSeen = DstTy->getBitWidth();
801 widestType = DstTy;
813 IntegerType *DstTy = dyn_cast<IntegerType>(Dst->getType());
814 if (SrcTy == nullptr || DstTy == nullptr) {
815 assert(SrcTy == DstTy && "This function only unify integer types and "
823 if (DstTy->getBitWidth() < widestWidthSeen)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp 212 void printCast(unsigned opcode, Type *SrcTy, Type *DstTy);
687 void CWriter::printCast(unsigned opc, Type *SrcTy, Type *DstTy) {
696 case Instruction::FPTrunc: // For these the DstTy sign doesn't matter
698 printType(Out, DstTy);
705 printSimpleType(Out, DstTy, false);
711 printSimpleType(Out, DstTy, true);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instructions.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 4137 milliseconds