HomeSort by: relevance | last modified time | path
    Searched defs:SrcType (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPreLegalizerCombiner.cpp 63 const LLT SrcType = MRI.getType(MI.getOperand(1).getReg());
64 if (SrcType != LLT::scalar(64))
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 451 Type *SrcType = CI->getArgOperand(0)->getType()->getScalarType();
453 if (SrcType->isPPC_FP128Ty() || DstType->isPPC_FP128Ty() ||
454 isLargeIntegerTy(!TM.isPPC64(), SrcType) ||
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprCXX.cpp 767 QualType SrcType = getSubExpr()->getType();
770 if (const auto *SrcPTy = SrcType->getAs<PointerType>()) {
771 SrcType = SrcPTy->getPointeeType();
779 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
MachineIRBuilder.h 128 enum class SrcType { Ty_Reg, Ty_MIB, Ty_Predicate, Ty_Imm };
129 SrcOp(Register R) : Reg(R), Ty(SrcType::Ty_Reg) {}
130 SrcOp(const MachineOperand &Op) : Reg(Op.getReg()), Ty(SrcType::Ty_Reg) {}
131 SrcOp(const MachineInstrBuilder &MIB) : SrcMIB(MIB), Ty(SrcType::Ty_MIB) {}
132 SrcOp(const CmpInst::Predicate P) : Pred(P), Ty(SrcType::Ty_Predicate) {}
138 SrcOp(uint64_t V) : Imm(V), Ty(SrcType::Ty_Imm) {}
139 SrcOp(int64_t V) : Imm(V), Ty(SrcType::Ty_Imm) {}
143 case SrcType::Ty_Predicate:
146 case SrcType::Ty_Reg:
149 case SrcType::Ty_MIB
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCast.cpp 138 void checkAddressSpaceCast(QualType SrcType, QualType DestType);
216 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
222 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
230 QualType SrcType,
426 QualType srcType = src->getType();
427 if (!destType->isRecordType() && !srcType->isRecordType())
476 S.PDiag(msg) << CT << srcType << destType << range
622 /// Check if the pointer conversion from SrcType to DestType casts away
629 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
640 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() |
    [all...]
SemaExprObjC.cpp 4191 QualType SrcType = castExpr->getType();
4195 SrcType = PDecl->getType();
4199 SrcType = Getter->getReturnType();
4203 ARCConversionTypeClass srcExprACTC = classifyTypeForARCConversion(SrcType);
4207 CheckObjCBridgeRelatedConversions(castExpr->getBeginLoc(), castType, SrcType,
4229 QualType DestType, QualType SrcType,
4235 QualType T = CfToNs ? SrcType : DestType;
4252 << SrcType << DestType;
4263 << SrcType << DestType;
4278 << SrcType << DestType << Sel << false
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyISelLowering.cpp 2069 MVT SrcType = CastOp.getSimpleValueType();
2071 if (!SrcType.is128BitVector() ||
2072 SrcType.getVectorNumElements() != DstType.getVectorNumElements())
2075 SrcType, SDLoc(N), CastOp, DAG.getUNDEF(SrcType), Shuffle->getMask());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 2384 PointerType *SrcType = cast<PointerType>(BCI->getSrcTy());
2385 Type *SrcEltType = SrcType->getElementType();
2454 if (SrcType->getPointerAddressSpace() != GEP.getAddressSpace())
2463 if (FindElementAtOffset(SrcType, Offset.getSExtValue(), NewIndices)) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 308 Value *Src, QualType SrcType, QualType DstType,
323 void EmitIntegerTruncationCheck(Value *Src, QualType SrcType, Value *Dst,
329 void EmitIntegerSignChangeCheck(Value *Src, QualType SrcType, Value *Dst,
351 Value *EmitScalarCast(Value *Src, QualType SrcType, QualType DstType,
875 Value *ScalarExprEmitter::EmitConversionToBool(Value *Src, QualType SrcType) {
876 assert(SrcType.isCanonical() && "EmitScalarConversion strips typedefs");
878 if (SrcType->isRealFloatingType())
881 if (const MemberPointerType *MPT = dyn_cast<MemberPointerType>(SrcType))
884 assert((SrcType->isIntegerType() || isa<llvm::PointerType>(Src->getType())) &&
891 return EmitPointerToBoolConversion(Src, SrcType);
    [all...]

Completed in 34 milliseconds