Searched refs:getType (Results 51 - 75 of 671) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DGlobals.cpp194 assert(InitVal->getType() == Ty &&
212 assert(InitVal->getType() == Ty &&
245 assert(InitVal->getType() == getType()->getElementType() &&
302 PointerType *PTy = Aliasee->getType();
324 assert((!Aliasee || Aliasee->getType() == getType()) &&
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp129 Dividend->getType());
132 Dividend->getType());
137 PHINode *QuoPhi = SuccessorBuilder.CreatePHI(I->getType(), 2);
140 PHINode *RemPhi = SuccessorBuilder.CreatePHI(I->getType(), 2);
162 Value *ZeroV = ConstantInt::getSigned(Dividend->getType(), 0);
232 if (!I->getType()->isIntegerTy())
236 IntegerType *T = cast<IntegerType>(I->getType());
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DGVN.cpp172 e.type = I->getType();
210 e.type = CmpInst::makeCmpResultType(LHS->getType());
226 e.type = EI->getType();
857 StoredVal->getType()->isStructTy() ||
858 StoredVal->getType()->isArrayTy())
862 if (DL.getTypeSizeInBits(StoredVal->getType()) <
882 Type *StoredValTy = StoredVal->getType();
1038 if (DepSI->getValueOperand()->getType()->isStructTy() ||
1039 DepSI->getValueOperand()->getType()->isArrayTy())
1044 uint64_t StoreSize =DL.getTypeSizeInBits(DepSI->getValueOperand()->getType());
[all...]
H A DIndVarSimplify.cpp198 if (!FromPtr->getType()->isPointerTy() || !ToPtr->getType()->isPointerTy())
457 Incr->replaceAllUsesWith(UndefValue::get(Incr->getType()));
468 Value *Conv = new SIToFPInst(NewPHI, PN->getType(), "indvar.conv",
520 if (ExistingValue->getType() == ResultTy)
585 if (!PN->getType()->isIntegerTy() && !PN->getType()->isPointerTy())
661 expandSCEVIfNeeded(Rewriter, ExitValue, L, Inst, PN->getType());
793 Type *Ty = Cast->getType();
807 Cast->getOperand(0)->getType())) {
[all...]
H A DPartiallyInlineLibCalls.cpp88 if (TTI->haveFastSqrt(Call->getType()) &&
114 if (!Call->getType()->isFloatingPointTy())
133 PHINode *Phi = Builder.CreatePHI(Call->getType(), 2);
H A DSeparateConstOffsetFromGEP.cpp535 unsigned BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
578 Current = ConstantExpr::getCast((*I)->getOpcode(), C, (*I)->getType());
641 return ConstantInt::getNullValue(UserChain[ChainIndex]->getType());
720 Type *IntPtrTy = DL->getIntPtrType(GEP->getType());
726 if ((*I)->getType() != IntPtrTy) {
771 Type *IntPtrTy = DL->getIntPtrType(Variadic->getType());
774 Builder.getInt8PtrTy(Variadic->getType()->getPointerAddressSpace());
783 if (ResultPtr->getType() != I8PtrTy)
832 if (ResultPtr->getType() != Variadic->getType())
[all...]
H A DSCCP.cpp231 if (GV->getType()->getElementType()->isSingleValueType()) {
290 assert(!V->getType()->isStructTy() && "Should use other method");
297 if (StructType *STy = dyn_cast<StructType>(V->getType()))
319 assert(!V->getType()->isStructTy() && "Should use other method");
324 assert(!V->getType()->isStructTy() && "Should use other method");
362 assert(!V->getType()->isStructTy() && "Should use other method");
371 assert(!V->getType()->isStructTy() && "Should use getStructValueState");
394 assert(V->getType()->isStructTy() && "Should use getValueState");
395 assert(i < cast<StructType>(V->getType())->getNumElements() &&
665 if (PN.getType()
[all...]
H A DScalarReplAggregates.cpp485 if (LI->getType()->isX86_MMXTy())
488 MergeInTypeForLoadOrStore(LI->getType(), Offset);
496 if (SI->getOperand(0)->getType()->isX86_MMXTy())
499 MergeInTypeForLoadOrStore(SI->getOperand(0)->getType(), Offset);
526 if (!GEPNonConstantIdx->getType()->isIntegerTy(32))
639 = ConvertScalar_ExtractValue(LoadedVal, LI->getType(), Offset,
710 PointerType* SPTy = cast<PointerType>(SrcPtr->getType());
711 PointerType* AIPTy = cast<PointerType>(NewAI->getType());
727 PointerType* DPTy = cast<PointerType>(MTI->getDest()->getType());
728 PointerType* AIPTy = cast<PointerType>(NewAI->getType());
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp84 var->getType()->isObjCObjectPointerType() &&
85 isImplicitStrong(var->getType())) {
140 bool useWeak = canApplyWeak(Pass.Ctx, var->getType());
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DInheritViz.cpp97 QualType CanonBaseType = Context.getCanonicalType(Base.getType());
105 WriteNode(Base.getType(), Base.isVirtual());
111 WriteNodeReference(Base.getType(), Base.isVirtual());
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp63 const Type *ElemType = Last->getType()->getArrayElementTypeNoTypeQual();
66 Ctx.getAsConstantArrayType(Last->getType())) {
91 QualType ToTy = Ctx.getCanonicalType(CE->getType());
H A DFixedAddressChecker.cpp43 QualType T = B->getType();
/freebsd-11.0-release/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp65 switch (MO.getType()) {
89 if (Imm->getType()->isFloatTy())
91 else if (Imm->getType()->isDoubleTy())
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp63 VectorType *VTy = dyn_cast<VectorType>(C->getType());
117 unsigned NumSrcElt = C->getType()->getVectorNumElements();
121 Type *SrcEltTy = C->getType()->getVectorElementType();
183 Src = ConstantExpr::getZExt(Src, Elt->getType());
187 ConstantInt::get(Src->getType(), ShiftAmt));
213 ConstantInt::get(Src->getType(), ShiftAmt));
240 unsigned BitWidth = DL.getPointerTypeSizeInBits(GV->getType());
259 unsigned BitWidth = DL.getPointerTypeSizeInBits(GEP->getType());
281 assert(ByteOffset <= DL.getTypeAllocSize(C->getType()) &&
308 if (CFP->getType()
[all...]
H A DScalarEvolutionAliasAnalysis.cpp44 if (SE.getEffectiveSCEVType(AS->getType()) ==
45 SE.getEffectiveSCEVType(BS->getType())) {
46 unsigned BitWidth = SE.getTypeSizeInBits(AS->getType());
104 if (Last->getType()->isPointerTy())
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp350 const AutoType *AT = cast<VarDecl>(D)->getType()->getContainedAutoType();
416 QualType type = cast<ValueDecl>(D)->getType();
499 if (E->getType()->isPlaceholderType()) {
505 QualType Ty = E->getType();
553 !UO->getType().isVolatileQualified()) {
575 QualType BaseType = Base->getType();
620 if (E->getType()->isPlaceholderType()) {
631 QualType T = E->getType();
637 (E->getType() == Context.OverloadTy ||
697 E->getType()
[all...]
H A DSemaCoroutine.cpp137 FD->getType()->isDependentType()
139 : lookupPromiseType(S, FD->getType()->castAs<FunctionProtoType>(),
165 SemaRef.LookupOverloadedOperatorName(OO_Coawait, S, E->getType(), QualType(),
183 Base, Base->getType(), Loc, /*IsPtr=*/false, SS,
202 Loc, E->getType(), VK_LValue, E->getObjectKind(), E);
216 if (E->getType()->isPlaceholderType()) {
232 if (E->getType()->isPlaceholderType()) {
238 if (E->getType()->isDependentType()) {
247 E = new (Context) MaterializeTemporaryExpr(E->getType(), E, true);
268 Promise, Promise->getType()
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp643 if (RelocatedBase->getType() != Base->getType()) {
645 Builder.CreateBitCast(RelocatedBase, Base->getType());
653 if (Replacement->getType() != ToReplace->getType()) {
655 Builder.CreateBitCast(Replacement, ToReplace->getType());
749 CI->getType(), "", &*InsertPt);
776 EVT SrcVT = TLI.getValueType(DL, CI->getOperand(0)->getType());
777 EVT DstVT = TLI.getValueType(DL, CI->getType());
815 Type *Ty = AddI->getType();
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DLocInfoType.h49 QualType getType() const { return getCanonicalTypeInternal(); } function in class:clang::LocInfoType
/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCSymbolCOFF.h32 uint16_t getType() const { function in class:llvm::MCSymbolCOFF
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DConstraintManager.cpp30 QualType Ty = Sym->getType();
H A DDynamicTypeMap.cpp36 return DynamicTypeInfo(Sym->getType());
/freebsd-11.0-release/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbolData.h27 std::unique_ptr<PDBSymbol> getType() const;
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/CodeView/
H A DMethodListRecordBuilder.cpp48 Method.getType(), Method.getVTableSlotOffset());
/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCSectionMachO.cpp104 MachO::SectionType SectionType = getType();
161 return (getType() == MachO::S_ZEROFILL ||
162 getType() == MachO::S_GB_ZEROFILL ||
163 getType() == MachO::S_THREAD_LOCAL_ZEROFILL);

Completed in 165 milliseconds

1234567891011>>