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

1234567891011>>

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DLocInfoType.h49 QualType getType() const { return getCanonicalTypeInternal(); } function in class:clang::LocInfoType
/freebsd-10.3-release/contrib/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp98 if (Last->getType()->isPointerTy())
126 if (SE->getEffectiveSCEVType(AS->getType()) ==
127 SE->getEffectiveSCEVType(BS->getType())) {
128 unsigned BitWidth = SE->getTypeSizeInBits(AS->getType());
/freebsd-10.3-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInst.h48 unsigned getType() const;
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp308 return new GlobalVariable(M, StrConst->getType(), /*isConstant=*/false,
538 Value *ShadowPtr = getShadowPtr(Addr, Shadow->getType(), IRB);
553 if (ClStoreCleanOrigin || isa<StructType>(Shadow->getType())) {
629 IRB.CreatePHI(Fn0->getType(), 2, "msandr.indirect_target");
639 IRB.CreateCall(MS.IndirectCallWrapperFn, Fn), Fn0->getType());
646 IRB.CreateCall(MS.IndirectCallWrapperFn, Fn), Fn0->getType());
702 return getShadowTy(V->getType());
740 Type *Ty = V->getType();
889 if (!AI->getType()->isSized()) {
894 ? MS.TD->getTypeAllocSize(AI->getType()
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaPseudoObject.cpp72 uop->getType(),
114 rebuiltExpr->getType(),
141 refExpr->getType(), refExpr->getValueKind(),
148 refExpr->getType(), refExpr->getValueKind(),
169 refExpr->getType(), refExpr->getValueKind(),
187 refExpr->isArrow(), refExpr->getType(),
341 new (S.Context) OpaqueValueExpr(GenericLoc, e->getType(),
413 opcode, capturedRHS->getType(),
429 result.get()->getType(),
432 opLHS.get()->getType(),
[all...]
H A DSemaStmtAsm.cpp119 if (RequireCompleteType(OutputExpr->getLocStart(), Exprs[i]->getType(),
158 if (InputExpr->getType()->isVoidType()) {
161 << InputExpr->getType() << Info.getConstraintStr()
173 const Type *Ty = Exprs[i]->getType().getTypePtr();
178 if (RequireCompleteType(InputExpr->getLocStart(), Exprs[i]->getType(),
254 const Type *Ty = Exprs[ConstraintIdx]->getType().getTypePtr();
283 QualType InTy = InputExpr->getType();
284 QualType OutTy = OutputExpr->getType();
396 QualType T = Result.get()->getType();
444 RT = VD->getType()
[all...]
H A DSemaExprCXX.cpp348 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
365 if (E->getType()->isPlaceholderType()) {
371 QualType T = E->getType();
466 if (!Operand->getType()->isDependentType()) {
468 if (!CXXUuidofExpr::GetUuidAttrOfType(Operand->getType(),
487 if (!E->getType()->isDependentType()) {
489 if (!CXXUuidofExpr::GetUuidAttrOfType(E->getType(), &HasMultipleGUIDs) &&
570 if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) {
617 if (E->getType().hasQualifiers())
618 E = ImpCastExprToType(E, E->getType()
[all...]
H A DSemaExpr.cpp356 QualType type = cast<ValueDecl>(D)->getType();
438 if (E->getType()->isPlaceholderType()) {
444 QualType Ty = E->getType();
479 !UO->getType().isVolatileQualified()) {
501 QualType BaseType = Base->getType();
546 if (E->getType()->isPlaceholderType()) {
557 QualType T = E->getType();
563 (E->getType() == Context.OverloadTy ||
618 E->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
659 QualType Ty = E->getType();
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp170 if (!FromPtr->getType()->isPointerTy() || !ToPtr->getType()->isPointerTy())
420 Incr->replaceAllUsesWith(UndefValue::get(Incr->getType()));
431 Value *Conv = new SIToFPInst(NewPHI, PN->getType(), "indvar.conv",
504 if (!PN->getType()->isIntegerTy() && !PN->getType()->isPointerTy())
578 Value *ExitVal = Rewriter.expandCodeFor(ExitValue, PN->getType(), Inst);
662 Type *Ty = Cast->getType();
874 if (!SE->isSCEVable(NarrowUse->getType()))
878 if (SE->getTypeSizeInBits(NarrowExpr->getType())
[all...]
H A DCodeGenPrepare.cpp456 EVT SrcVT = TLI.getValueType(CI->getOperand(0)->getType());
457 EVT DstVT = TLI.getValueType(CI->getType());
511 CastInst::Create(CI->getOpcode(), CI->getOperand(0), CI->getType(), "",
625 Type *ReturnTy = CI->getType();
995 if (I->getType() == I->getOperand(0)->getType())
997 return I->getType()->isPointerTy() || I->getType()->isIntegerTy();
1031 if (TLI.getValueType(AddrInst->getOperand(0)->getType()) ==
1032 TLI.getPointerTy(AddrInst->getType()
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp49 ArrayType *AT = ArrayType::get(RuntimeCtorInit->getType(),
55 (void)new GlobalVariable(M, NewInit->getType(), false,
H A DLoopUnrollRuntime.cpp75 PHINode *NewPN = PHINode::Create(PN->getType(), 2, PN->getName()+".unr",
82 NewPN->addIncoming(Constant::getNullValue(PN->getType()), OrigPH);
111 ConstantInt::get(TripCount->getType(), Count));
249 if (isa<SCEVCouldNotCompute>(BECount) || !BECount->getType()->isIntegerTy())
254 SE->getAddExpr(BECount, SE->getConstant(BECount->getType(), 1));
280 Value *TripCount = Expander.expandCodeFor(TripCountSC, TripCountSC->getType(),
282 Type *CountTy = TripCount->getType();
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DBodyFarm.cpp117 /* T = */ D->getType(),
133 if (Arg->getType() == Ty)
168 QualType PredicateQPtrTy = Predicate->getType();
178 QualType Ty = Block->getType();
246 QualType Ty = PV->getType();
288 QualType OldValueTy = OldValue->getType();
291 QualType NewValueTy = NewValue->getType();
296 QualType TheValueTy = TheValue->getType();
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h209 unsigned getType() const { return Type; } function in class:llvm::DIEValue
260 static bool classof(const DIEValue *I) { return I->getType() == isInteger; }
288 static bool classof(const DIEValue *E) { return E->getType() == isExpr; }
316 static bool classof(const DIEValue *L) { return L->getType() == isLabel; }
342 static bool classof(const DIEValue *D) { return D->getType() == isDelta; }
372 static bool classof(const DIEValue *D) { return D->getType() == isString; }
407 static bool classof(const DIEValue *E) { return E->getType() == isEntry; }
444 static bool classof(const DIEValue *E) { return E->getType() == isBlock; }
/freebsd-10.3-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h44 /// getType - get type of this MachineConstantPoolValue.
46 Type *getType() const { return Ty; } function in class:llvm::MachineConstantPoolValue
108 Type *getType() const;
/freebsd-10.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcMCInstLower.cpp39 switch(MO.getType()) {
72 switch(MO.getType()) {
/freebsd-10.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZMCInstLower.cpp38 switch (MO.getType()) {
78 switch (MO.getType()) {
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp55 if (Loc::isLocType(SSE->getLHS()->getType())) {
56 assert(Loc::isLocType(SSE->getRHS()->getType()));
101 QualType T = Sym->getType();
163 assert(Loc::isLocType(SSE->getLHS()->getType()));
164 assert(Loc::isLocType(SSE->getRHS()->getType()));
219 APSIntType WraparoundType = BVF.getAPSIntType(LHS->getType());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DCXXInheritance.cpp146 const RecordType *Ty = I->getType()->getAs<RecordType>();
194 QualType BaseType = Context.getCanonicalType(BaseSpec->getType())
272 = cast<CXXRecordDecl>(BaseSpec->getType()->castAs<RecordType>()
337 if (const RecordType *Record = PE->Base->getType()->getAs<RecordType>())
352 = HidingP->back().Base->getType()->getAs<RecordType>())
379 return Specifier->getType()->castAs<RecordType>()->getDecl()
389 Specifier->getType()->castAs<RecordType>()->getDecl()
397 Specifier->getType()->castAs<RecordType>()->getDecl();
414 Specifier->getType()->castAs<RecordType>()->getDecl();
433 Specifier->getType()
[all...]
H A DExprClassification.cpp93 return Lang.CPlusPlus ? ClassifyTemporary(E->getType()) : Cl::CL_PRValue;
143 return Ctx.getLangOpts().CPlusPlus ? ClassifyTemporary(E->getType())
196 if (cast<ArraySubscriptExpr>(E)->getBase()->getType()->isVectorType())
203 if (E->getType() == Ctx.UnknownAnyTy)
364 return ClassifyUnnamed(Ctx, E->getType());
372 return ClassifyUnnamed(Ctx, LastExpr->getType());
418 islvalue = NTTParm->getType()->isReferenceType();
449 if (E->getType() == Ctx.UnknownAnyTy)
472 if (Value->getType()->isReferenceType())
523 return (E->getType()
[all...]
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DAnalysis.cpp236 if (isNoopBitcast(Op->getType(), I->getType(), TLI))
246 if (!isa<VectorType>(I->getType()) &&
248 cast<IntegerType>(Op->getType())->getBitWidth())
254 if (!isa<VectorType>(I->getType()) &&
256 cast<IntegerType>(I->getType())->getBitWidth())
259 TLI.allowTruncateForTailCall(Op->getType(), I->getType())) {
260 DataBits = std::min(DataBits, I->getType()->getPrimitiveSizeInBits());
268 isNoopBitcast((*i)->getType(),
[all...]
/freebsd-10.3-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp90 Type *ElTy = GV->getType()->getElementType();
542 switch (C->getType()->getTypeID()) {
551 Result.IntVal = APInt(C->getType()->getPrimitiveSizeInBits(), 0);
555 if(StructType *STy = dyn_cast<StructType>(C->getType())) {
573 const VectorType* VTy = dyn_cast<VectorType>(C->getType());
602 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
608 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
614 uint32_t BitWidth = cast<IntegerType>(CE->getType())->getBitWidth();
632 if (CE->getType()->isFloatTy())
634 else if (CE->getType()
[all...]
/freebsd-10.3-release/contrib/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp167 if (V->getType() == Tp)
200 if (V->getType()->isPointerTy())
211 if (V->getType()->isVectorTy())
304 Type *Tp = Ptr->getType();
306 Type *ValTy = Val->getType();
322 Value *Val1 = getRandomValue(Val0->getType());
325 if (Val0->getType()->isPointerTy() ||
326 Val1->getType()->isPointerTy())
330 if (Val0->getType()->getScalarSizeInBits() == 1)
334 bool isFloat = Val0->getType()
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp506 if (I->getType()->isVectorTy())
674 Result = ConstantFP::get(Instr->getType(), 0.0);
748 Value *Zero = cast<Value>(ConstantFP::get(V->getType(), 0.0));
829 return Coeff.getValue(Instr->getType());
845 return createFMul(OpndVal, Coeff.getValue(Instr->getType()));
850 return ConstantExpr::getAdd(C, ConstantInt::get(C->getType(), 1));
865 if (!V->hasOneUse() || !V->getType()->isIntegerTy())
877 uint32_t BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
879 CST = ConstantInt::get(V->getType()->getContext(),
943 uint32_t TySizeBits = I.getType()
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h71 virtual QualType getType() const = 0;
147 QualType getType() const;
176 QualType getType() const;
214 QualType getType() const;
247 QualType getType() const;
286 QualType getType() const;
323 QualType getType() const { return ToTy; } function in class:clang::ento::SymbolCast
359 QualType getType() const { return T; } function in class:clang::ento::BinarySymExpr
396 Profile(ID, LHS, getOpcode(), RHS, getType());
431 Profile(ID, LHS, getOpcode(), RHS, getType());
544 QualType getType(const SymExpr *SE) const { function in class:clang::ento::SymbolManager
[all...]

Completed in 207 milliseconds

1234567891011>>