Searched refs:getType (Results 151 - 175 of 671) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp40 if (MigrateCtx.isGCOwnedNonObjC(E->getType())) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCUDARuntime.cpp48 CGF.EmitCall(E->getCallee()->getType(), Callee, E, ReturnValue, TargetDecl);
H A DCGStmtOpenMP.cpp88 QualType ArgType = FD->getType();
142 if (I->capturesVariableByCopy() && FD->getType()->isAnyPointerType()) {
149 MakeAddrLValue(GetAddrOfLocalVar(Args[Cnt]), Args[Cnt]->getType(),
153 MakeAddrLValue(castValueFromUintptr(*this, FD->getType(),
155 FD->getType(), AlignmentSource::Decl);
162 QualType VarTy = Var->getType();
166 ArgAddr, ArgLVal.getType()->castAs<ReferenceType>());
171 assert(!FD->getType()->isAnyPointerType() &&
174 QualType VarTy = Var->getType();
176 castValueFromUintptr(*this, FD->getType(),
[all...]
H A DCGDeclCXX.cpp29 assert(!D.getType()->isReferenceType() &&
32 QualType type = D.getType();
69 QualType type = D.getType();
125 CharUnits WidthChars = CGF.getContext().getTypeSizeInChars(D.getType());
137 QualType T = D.getType();
155 unsigned ActualAddrSpace = DeclPtr->getType()->getPointerAddressSpace();
171 if (CGM.isTypeConstant(D.getType(), true))
227 llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
293 TheModule, InitFunc->getType(), /*isConstant=*/true,
528 Builder.CreateStore(llvm::ConstantInt::get(GuardVal->getType(),
[all...]
H A DCGCXXABI.cpp106 return GetBogusMemberPointer(E->getType());
111 return GetBogusMemberPointer(E->getType());
139 MD->getType(), MD->getParent()->getTypeForDecl()));
271 derivedType = E->getSubExpr()->getType();
273 derivedType = E->getType();
H A DCGClass.cpp162 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
280 cast<CXXRecordDecl>((*Start)->getType()->getAs<RecordType>()->getDecl());
302 ConvertType((PathEnd[-1])->getType())->getPointerTo();
415 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
417 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
580 llvm::Value *Next = llvm::ConstantInt::get(ArrayIndex->getType(), 1);
633 llvm::ConstantInt::get(Counter->getType(), NumElements);
651 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
706 QualType FieldType = Field->getType();
754 QualType FieldType = Field->getType();
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCSectionELF.h75 unsigned getType() const { return Type; } function in class:llvm::final
H A DMCSectionMachO.h58 MachO::SectionType getType() const { function in class:llvm::final
/freebsd-11.0-release/contrib/llvm/include/llvm/Object/
H A DCOFFImportFile.h67 return getCOFFImportHeader()->getType() == COFF::IMPORT_CODE;
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DMachineFunction.cpp832 Type *MachineConstantPoolEntry::getType() const { function in class:MachineConstantPoolEntry
834 return Val.MachineCPVal->getType();
835 return Val.ConstVal->getType();
848 switch (DL->getTypeAllocSize(getType())) {
879 if (A->getType() == B->getType()) return false;
882 if (isa<StructType>(A->getType()) || isa<ArrayType>(A->getType()) ||
883 isa<StructType>(B->getType()) || isa<ArrayType>(B->getType()))
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DPaddingChecker.cpp99 const ArrayType *ArrTy = VD->getType()->getAsArrayTypeUnsafe();
155 QualType Ty = FD->getType();
176 CharUnits FieldSize = ASTContext.getTypeSizeInChars(FD->getType());
220 Ctx.getTypeInfoInChars(FD->getType());
/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp119 Function::Create(cast<FunctionType>(F.getType()->getElementType()),
157 Dst, GV.getType()->getElementType(), GV.isConstant(),
159 GV.getThreadLocalMode(), GV.getType()->getAddressSpace());
188 OrigA.getType()->getPointerAddressSpace(),
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp229 Basis.Ins->getType() == C.Ins->getType() &&
273 return TTI->isLegalAddressingMode(GEP->getType()->getElementType(), BaseGV,
280 return TTI->isLegalAddressingMode(Base->getType(), nullptr, 0, true,
383 if (!isa<IntegerType>(I->getType()))
407 ConstantInt *One = ConstantInt::get(cast<IntegerType>(I->getType()), 1);
441 ConstantInt *Zero = ConstantInt::get(cast<IntegerType>(I->getType()), 0);
451 if (!isa<IntegerType>(I->getType()))
470 IntegerType *IntPtrTy = cast<IntegerType>(DL->getIntPtrType(I->getType()));
482 Base, ConstantInt::get(cast<IntegerType>(ArrayIdx->getType()),
[all...]
H A DConstantHoisting.cpp284 ConstInt->getValue(), ConstInt->getType());
287 ConstInt->getType());
392 Type *Ty = ConstInfo.BaseConstant->getType();
411 if (LHS.ConstInt->getType() != RHS.ConstInt->getType())
412 return LHS.ConstInt->getType()->getBitWidth() <
413 RHS.ConstInt->getType()->getBitWidth();
422 if (MinValItr->ConstInt->getType() == CC->ConstInt->getType()) {
546 IntegerType *Ty = ConstInfo.BaseConstant->getType();
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/BPF/
H A DBPFAsmPrinter.cpp53 switch (MO.getType()) {
H A DBPFMCInstLower.cpp51 switch (MO.getType()) {
/freebsd-11.0-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp21 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {}
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprCXX.cpp383 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
403 if (E->getType()->isPlaceholderType()) {
409 QualType T = E->getType();
448 if (E->getType()->isVariablyModifiedType())
450 << E->getType());
516 if (!Operand->getType()->isDependentType()) {
518 if (!CXXUuidofExpr::GetUuidAttrOfType(Operand->getType(),
536 if (!E->getType()->isDependentType()) {
538 if (!CXXUuidofExpr::GetUuidAttrOfType(E->getType(), &HasMultipleGUIDs) &&
618 if (Var->hasLocalStorage() && !Var->getType()
[all...]
H A DSemaChecking.cpp79 QualType Ty = ValArg->getType();
122 QualType Ty = Arg->getType();
135 QualType Ty = Arg->getType();
192 if (CE->getCallee()->getType()->isBlockPointerType()) {
215 if (!ChainResult.get()->getType()->isPointerType()) {
222 QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() };
230 BuiltinCall->setType(CE->getType());
560 Context.getExceptionObjectType(FDecl->getParamDecl(0)->getType()),
716 QualType RHSTy = RHS.get()->getType();
782 const PointerType *pointerType = PointerArg->getType()
[all...]
/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp280 Type *Ty = I.getOperand(0)->getType();
612 Type *Ty = I.getOperand(0)->getType();
683 Type *Ty = I.getOperand(0)->getType();
808 Type * Ty = I.getOperand(0)->getType();
854 if (!CallingSF.Caller.getType()->isVoidTy())
870 RetTy = I.getReturnValue()->getType();
897 Type *ElTy = Cond->getType();
965 Type *Ty = I.getType()->getElementType(); // Type to be allocated
996 assert(Ptr->getType()->isPointerTy() &&
1016 cast<IntegerType>(I.getOperand()->getType())
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp116 QualType T = Ex->getType();
123 QualType ExType = Ex->getType();
172 QualType T = E->getType();
257 return makeZeroVal(E->getType());
273 return makeIntVal(C->getValue(), C->getType());
281 return makeTruthVal(TE->getValue(), TE->getType());
304 return evalCast(*Val, CE->getType(), SE->getType());
321 if (Loc::isLocType(E->getType()))
485 return makeNonLoc(Sym, BO_NE, BVF.getValue(0, Sym->getType()), castT
[all...]
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp705 Type *AliaseeType = Aliasee->getType();
748 if (GVal->getType() != GA->getType())
1103 if (Val->getType() == Ty) return Val;
1105 getTypeString(Val->getType()) + "'");
1134 if (Val->getType() == Ty) return Val;
1136 getTypeString(Val->getType()) + "'");
2294 UndefValue::get(P.second.first->getType()));
2302 UndefValue::get(P.second.first->getType()));
2338 if (Val->getType()
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DValueTracking.cpp145 assert(LHS->getType() == RHS->getType() &&
147 assert(LHS->getType()->isIntOrIntVectorTy() &&
149 IntegerType *IT = cast<IntegerType>(LHS->getType()->getScalarType());
1164 Type *SrcTy = I->getOperand(0)->getType();
1183 Type *SrcTy = I->getOperand(0)->getType();
1188 !I->getType()->isVectorTy()) {
1196 unsigned SrcBitWidth = I->getOperand(0)->getType()->getScalarSizeInBits();
1341 Align = DL.getABITypeAlignment(AI->getType()->getElementType());
1366 if (CIndex->getType()
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DOperator.h308 return I->getType()->isFPOrFPVectorTy() ||
400 return getPointerOperand()->getType();
471 return getPointerOperand()->getType();
487 return getOperand(0)->getType();
491 return getType();
H A DIRBuilder.h903 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
908 return CreateShl(LHS, ConstantInt::get(LHS->getType(), RHS), Name,
923 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
927 return CreateLShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
941 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
945 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
958 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
961 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
974 return CreateOr(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
977 return CreateOr(LHS, ConstantInt::get(LHS->getType(), RH
[all...]

Completed in 279 milliseconds

1234567891011>>