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

  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 195 Record *DestTy = Action->getValueAsDef("DestTy");
196 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
204 Record *DestTy = Action->getValueAsDef("DestTy");
205 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
208 Record *DestTy = Action->getValueAsDef("DestTy");
209 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
  /external/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 177 Type *DestTy = PointerType::get(Type::getInt8Ty(Context), AddrSpace);
178 CVTA = Builder.CreateBitCast(GV, DestTy, "cvta");
184 ParamTypes.push_back(DestTy);
190 DestTy =
192 CVTA = Builder.CreateBitCast(CVTA, DestTy, "cvta");
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 287 PointerType *DestTy = cast<PointerType>(CI->getType());
288 Type *DestPTy = DestTy->getElementType();
292 if (DestTy->getAddressSpace() != SrcTy->getAddressSpace())
InstCombineVectorOps.cpp 630 Type *DestTy =
634 return CastInst::Create(cast<CastInst>(I)->getOpcode(), NewOps[0], DestTy,
    [all...]
InstCombineCasts.cpp 446 Type *DestTy = CI.getType(), *SrcTy = Src->getType();
452 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &&
453 CanEvaluateTruncated(Src, DestTy)) {
459 Value *Res = EvaluateInDifferentType(Src, DestTy, false);
460 assert(Res->getType() == DestTy);
465 if (DestTy->getScalarSizeInBits() == 1) {
773 Type *SrcTy = Src->getType(), *DestTy = CI.getType();
780 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &
    [all...]
InstCombineCompares.cpp     [all...]
InstructionCombining.cpp 598 VectorType *DestTy = dyn_cast<VectorType>(BC->getDestTy());
602 if ((SrcTy == NULL) != (DestTy == NULL)) return 0;
604 if (SrcTy && SrcTy->getNumElements() != DestTy->getNumElements())
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 479 Type *DestTy = pickScalarType();
484 DestTy = pickVectorType(VecTy->getNumElements());
488 if (VTy == DestTy) return;
492 if (!DestTy->isPointerTy())
493 DestTy = PointerType::get(DestTy, 0);
495 new BitCastInst(V, DestTy, "PC", BB->getTerminator()));
499 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits();
504 new BitCastInst(V, DestTy, "BC", BB->getTerminator()));
509 DestTy->getScalarType()->isIntegerTy())
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp     [all...]
SemaStmt.cpp     [all...]
SemaChecking.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 686 Type* DestTy = CE->getType();
690 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
691 if (DestTy->isFloatTy())
693 else if (DestTy->isDoubleTy())
697 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
701 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
705 assert(DestTy->isPointerTy() && "Invalid bitcast");
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGExprConstant.cpp     [all...]
CGObjC.cpp     [all...]
CGExprScalar.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/IR/
Verifier.cpp 328 void VerifyBitcastType(const Value *V, Type *DestTy, Type *SrcTy);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 1906 milliseconds