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

  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 194 Record *DestTy = Action->getValueAsDef("DestTy");
195 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
203 Record *DestTy = Action->getValueAsDef("DestTy");
204 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
207 Record *DestTy = Action->getValueAsDef("DestTy");
208 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 298 PointerType *DestTy = cast<PointerType>(CI->getType());
299 Type *DestPTy = DestTy->getElementType();
303 if (DestTy->getAddressSpace() != SrcTy->getAddressSpace())
InstCombineCasts.cpp 437 Type *DestTy = CI.getType(), *SrcTy = Src->getType();
443 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &&
444 CanEvaluateTruncated(Src, DestTy)) {
450 Value *Res = EvaluateInDifferentType(Src, DestTy, false);
451 assert(Res->getType() == DestTy);
456 if (DestTy->getScalarSizeInBits() == 1) {
754 Type *SrcTy = Src->getType(), *DestTy = CI.getType();
761 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &
    [all...]
InstCombineCompares.cpp     [all...]
InstructionCombining.cpp 577 VectorType *DestTy = dyn_cast<VectorType>(BC->getDestTy());
581 if ((SrcTy == NULL) != (DestTy == NULL)) return 0;
583 if (SrcTy && SrcTy->getNumElements() != DestTy->getNumElements())
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 662 Type* DestTy = CE->getType();
666 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
667 if (DestTy->isFloatTy())
669 else if (DestTy->isDoubleTy())
673 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
677 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
681 assert(DestTy->isPointerTy() && "Invalid bitcast");
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 477 Type *DestTy = pickScalarType();
482 DestTy = pickVectorType(VecTy->getNumElements());
486 if (VTy == DestTy) return;
490 if (!DestTy->isPointerTy())
491 DestTy = PointerType::get(DestTy, 0);
493 new BitCastInst(V, DestTy, "PC", BB->getTerminator()));
497 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits();
502 new BitCastInst(V, DestTy, "BC", BB->getTerminator()));
507 DestTy->getScalarType()->isIntegerTy())
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp     [all...]
SemaStmt.cpp     [all...]
SemaChecking.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGExprConstant.cpp     [all...]
CGObjC.cpp     [all...]
CGExprScalar.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/llvm/lib/VMCore/
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 327 milliseconds