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

  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 131 PointerType *DestTy = cast<PointerType>(Cast->getType());
136 if (SrcTy->getElementType() != DestTy->getElementType())
142 DestTy->getAddressSpace() == AddressSpace::ADDRESS_SPACE_GENERIC);
NVPTXGenericToNVVM.cpp 180 Type *DestTy = PointerType::get(Type::getInt8Ty(Context), AddrSpace);
181 CVTA = Builder.CreateBitCast(GV, DestTy, "cvta");
187 ParamTypes.push_back(DestTy);
193 DestTy =
195 CVTA = Builder.CreateBitCast(CVTA, DestTy, "cvta");
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 222 Record *DestTy = Action->getValueAsDef("DestTy");
223 MVT::SimpleValueType DestVT = getValueType(DestTy);
236 Record *DestTy = Action->getValueAsDef("DestTy");
237 MVT::SimpleValueType DestVT = getValueType(DestTy);
251 Record *DestTy = Action->getValueAsDef("DestTy");
252 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
255 Record *DestTy = Action->getValueAsDef("DestTy")
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 489 Type *DestTy = pickScalarType();
494 DestTy = pickVectorType(VecTy->getNumElements());
498 if (VTy == DestTy) return;
502 if (!DestTy->isPointerTy())
503 DestTy = PointerType::get(DestTy, 0);
505 new BitCastInst(V, DestTy, "PC", BB->getTerminator()));
509 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits();
514 new BitCastInst(V, DestTy, "BC", BB->getTerminator()));
519 DestTy->getScalarType()->isIntegerTy())
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 757 Type* DestTy = CE->getType();
761 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
762 if (DestTy->isFloatTy())
764 else if (DestTy->isDoubleTy())
768 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
772 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
776 assert(DestTy->isPointerTy() && "Invalid bitcast");
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 677 Type *DestTy =
681 return CastInst::Create(cast<CastInst>(I)->getOpcode(), NewOps[0], DestTy,
    [all...]
InstCombineCasts.cpp 496 Type *DestTy = CI.getType(), *SrcTy = Src->getType();
502 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &&
503 canEvaluateTruncated(Src, DestTy, *this, &CI)) {
509 Value *Res = EvaluateInDifferentType(Src, DestTy, false);
510 assert(Res->getType() == DestTy);
515 if (DestTy->getScalarSizeInBits() == 1) {
535 return ReplaceInstUsesWith(CI, Constant::getNullValue(DestTy));
542 return CastInst::CreateIntegerCast(Shift, DestTy, false);
568 ShouldChangeType(SrcTy, DestTy) &
    [all...]
InstCombineCompares.cpp     [all...]
InstructionCombining.cpp 753 VectorType *DestTy = dyn_cast<VectorType>(BC->getDestTy());
757 if ((SrcTy == nullptr) != (DestTy == nullptr)) return nullptr;
759 if (SrcTy && SrcTy->getNumElements() != DestTy->getNumElements())
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGClass.cpp     [all...]
CGExprScalar.cpp     [all...]
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
SemaChecking.cpp     [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 859 milliseconds