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

1 2

  /external/swiftshader/third_party/LLVM/utils/TableGen/
CallingConvEmitter.cpp 179 Record *DestTy = Action->getValueAsDef("DestTy");
180 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
188 Record *DestTy = Action->getValueAsDef("DestTy");
189 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
192 Record *DestTy = Action->getValueAsDef("DestTy");
193 O << IndentStr << "LocVT = " << getEnumName(getValueType(DestTy)) <<";\n";
  /external/llvm/lib/Target/NVPTX/
NVPTXFavorNonGenericAddrSpaces.cpp 134 PointerType *DestTy = cast<PointerType>(Cast->getType());
139 if (SrcTy->getElementType() != DestTy->getElementType())
145 DestTy->getAddressSpace() == AddressSpace::ADDRESS_SPACE_GENERIC);
NVPTXGenericToNVVM.cpp 180 Type *DestTy = PointerType::get(Type::getInt8Ty(Context), AddrSpace);
181 CVTA = Builder.CreateBitCast(GV, DestTy, "cvta");
186 M, Intrinsic::nvvm_ptr_global_to_gen, {ResultType, DestTy});
190 DestTy =
192 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/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 94 PointerType *DestTy = cast<PointerType>(CI->getType());
95 Type *DestPTy = DestTy->getElementType();
99 if (DestTy->getAddressSpace() != SrcTy->getAddressSpace())
InstCombineCasts.cpp 439 Type *DestTy = CI.getType(), *SrcTy = Src->getType();
445 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &&
446 CanEvaluateTruncated(Src, DestTy)) {
452 Value *Res = EvaluateInDifferentType(Src, DestTy, false);
453 assert(Res->getType() == DestTy);
458 if (DestTy->getScalarSizeInBits() == 1) {
762 Type *SrcTy = Src->getType(), *DestTy = CI.getType();
769 if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) &
    [all...]
InstCombineCompares.cpp     [all...]
InstructionCombining.cpp 568 VectorType *DestTy = dyn_cast<VectorType>(BC->getDestTy());
572 if ((SrcTy == NULL) != (DestTy == NULL)) return 0;
574 if (SrcTy && SrcTy->getNumElements() != DestTy->getNumElements())
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 488 Type *DestTy = pickScalarType();
493 DestTy = pickVectorType(VecTy->getNumElements());
497 if (VTy == DestTy) return;
501 if (!DestTy->isPointerTy())
502 DestTy = PointerType::get(DestTy, 0);
504 new BitCastInst(V, DestTy, "PC", BB->getTerminator()));
508 unsigned DestSize = DestTy->getScalarType()->getPrimitiveSizeInBits();
513 new BitCastInst(V, DestTy, "BC", BB->getTerminator()));
518 DestTy->getScalarType()->isIntegerTy())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngine.cpp 652 Type* DestTy = CE->getType();
656 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
657 if (DestTy->isFloatTy())
659 else if (DestTy->isDoubleTy())
663 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
667 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
671 assert(DestTy->isPointerTy() && "Invalid bitcast");
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 752 Type* DestTy = CE->getType();
756 assert(DestTy->isFloatingPointTy() && "invalid bitcast");
757 if (DestTy->isFloatTy())
759 else if (DestTy->isDoubleTy())
763 assert(DestTy->isIntegerTy(32) && "Invalid bitcast");
767 assert(DestTy->isIntegerTy(64) && "Invalid bitcast");
771 assert(DestTy->isPointerTy() && "Invalid bitcast");
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 766 Type *DestTy =
770 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 749 VectorType *DestTy = dyn_cast<VectorType>(BC->getDestTy());
753 if ((SrcTy == nullptr) != (DestTy == nullptr)) return nullptr;
755 if (SrcTy && SrcTy->getNumElements() != DestTy->getNumElements())
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGClass.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Verifier.cpp 855 Type *DestTy = I.getType();
859 unsigned DestBitSize = DestTy->getScalarSizeInBits();
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 1764 milliseconds

1 2