Searched refs:ResultTy (Results 1 - 25 of 25) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp92 Type *ResultTy = NULL;
100 return FunctionType::get(ResultTy, ArgTys, IsVarArg);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DBodyFarm.cpp282 QualType ResultTy = D->getResultType();
283 bool isBoolean = ResultTy->isBooleanType();
284 if (!isBoolean && !ResultTy->isIntegralType(C))
326 : M.makeIntegralCast(BoolVal, ResultTy);
333 : M.makeIntegralCast(BoolVal, ResultTy);
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp1571 Type *ResultTy; local
1573 ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()),
1576 ResultTy = Type::getInt1Ty(C1->getContext());
1580 return Constant::getNullValue(ResultTy);
1583 return Constant::getAllOnesValue(ResultTy);
1592 return UndefValue::get(ResultTy);
1595 return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(pred));
1639 case ICmpInst::ICMP_EQ: return ConstantInt::get(ResultTy, V1 == V2);
1640 case ICmpInst::ICMP_NE: return ConstantInt::get(ResultTy, V1 != V2);
1641 case ICmpInst::ICMP_SLT: return ConstantInt::get(ResultTy, V
[all...]
H A DFunction.cpp637 Type *ResultTy = DecodeFixedType(TableRef, Tys, Context);
643 return FunctionType::get(ResultTy, ArgTys, false);
H A DConstants.cpp1871 Type *ResultTy = Type::getInt1Ty(LHS->getContext()); local
1873 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1876 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
1892 Type *ResultTy = Type::getInt1Ty(LHS->getContext()); local
1894 ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1897 return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
/freebsd-10.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp620 Type *ResultTy = 0; local
631 ResultTy = Type::getVoidTy(Context);
634 ResultTy = Type::getHalfTy(Context);
637 ResultTy = Type::getFloatTy(Context);
640 ResultTy = Type::getDoubleTy(Context);
643 ResultTy = Type::getX86_FP80Ty(Context);
646 ResultTy = Type::getFP128Ty(Context);
649 ResultTy = Type::getPPC_FP128Ty(Context);
652 ResultTy = Type::getLabelTy(Context);
655 ResultTy
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp294 QualType ResultTy) {
306 return makeNonLoc(symLHS, Op, symRHS, ResultTy);
310 return makeNonLoc(symLHS, Op, rInt->getValue(), ResultTy);
314 return makeNonLoc(lInt->getValue(), Op, symRHS, ResultTy);
291 makeSymExprValNN(ProgramStateRef State, BinaryOperator::Opcode Op, NonLoc LHS, NonLoc RHS, QualType ResultTy) argument
H A DCallEvent.cpp30 QualType ResultTy = E->getType(); local
39 ResultTy = Ctx.getLValueReferenceType(ResultTy);
42 ResultTy = Ctx.getRValueReferenceType(ResultTy);
49 return ResultTy;
H A DExprEngineCallAndReturn.cpp562 QualType ResultTy = Call.getResultType(); local
565 SVal R = SVB.conjureSymbolVal(0, E, LCtx, ResultTy, Count);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp601 Type *ResultTy, const DataLayout *TD,
604 Type *IntPtrTy = TD->getIntPtrType(ResultTy->getContext());
651 Type *ResultTy, const DataLayout *TD,
668 cast<PointerType>(ResultTy)->getElementType()->isIntegerTy(8)) {
676 Res = ConstantExpr::getIntToPtr(Res, ResultTy);
722 return ConstantExpr::getIntToPtr(C, ResultTy);
781 } while (Ty != cast<PointerType>(ResultTy)->getElementType());
797 if (Ty != cast<PointerType>(ResultTy)->getElementType())
798 C = FoldBitCast(C, ResultTy, *TD);
600 CastGEPIndices(ArrayRef<Constant *> Ops, Type *ResultTy, const DataLayout *TD, const TargetLibraryInfo *TLI) argument
650 SymbolicallyEvaluateGEP(ArrayRef<Constant *> Ops, Type *ResultTy, const DataLayout *TD, const TargetLibraryInfo *TLI) argument
H A DLazyValueInfo.cpp713 IntegerType *ResultTy = cast<IntegerType>(BBI->getType()); local
747 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
750 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
753 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
H A DScalarEvolution.cpp682 Type *ResultTy) {
685 return SE.getTruncateOrZeroExtend(It, ResultTy);
741 unsigned W = SE.getTypeSizeInBits(ResultTy);
787 SE.getTruncateOrZeroExtend(DivResult, ResultTy));
680 BinomialCoefficient(const SCEV *It, unsigned K, ScalarEvolution &SE, Type *ResultTy) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOverload.cpp1317 QualType &ResultTy) {
1358 ResultTy = ToType;
6059 /// operator. ResultTy and ParamTys are the result and parameter types
6066 void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys, argument
6080 Candidate.BuiltinTypes.ResultTy = ResultTy;
7426 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType); local
7429 S.AddBuiltinCandidate(ResultTy, ParamTypes, Args, CandidateSet);
7441 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType); local
7444 S.AddBuiltinCandidate(ResultTy, ParamType
1316 IsNoReturnConversion(QualType FromType, QualType ToType, QualType &ResultTy) argument
7494 QualType ResultTy = S.Context.getLValueReferenceType(T); local
10184 QualType ResultTy = FnDecl->getResultType(); local
10418 QualType ResultTy = FnDecl->getResultType(); local
10625 QualType ResultTy = FnDecl->getResultType(); local
11413 QualType ResultTy = FD->getResultType(); local
[all...]
H A DSemaExpr.cpp5154 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual); local
5155 ResultTy = S.Context.getPointerType(ResultTy);
5157 LHS = S.ImpCastExprToType(LHS.take(), ResultTy, CK_BitCast);
5158 RHS = S.ImpCastExprToType(RHS.take(), ResultTy, CK_BitCast);
5159 return ResultTy;
7356 QualType ResultTy = Context.getLogicalOperationType(); local
7360 return ResultTy;
7367 return ResultTy;
7385 return ResultTy;
8663 QualType ResultTy; // Result type of the binary operator. local
[all...]
H A DSemaTemplateDeduction.cpp2556 QualType ResultTy; local
2560 S.IsNoReturnConversion(A, DeducedA, ResultTy)))
H A DTreeTransform.h1668 QualType ResultTy) {
1671 if (Result.isInvalid() || ResultTy->isDependentType())
1677 ILE->setType(ResultTy);
1665 RebuildInitList(SourceLocation LBraceLoc, MultiExprArg Inits, SourceLocation RBraceLoc, QualType ResultTy) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTContext.h991 QualType getFunctionNoProtoType(QualType ResultTy,
994 QualType getFunctionNoProtoType(QualType ResultTy) const {
995 return getFunctionNoProtoType(ResultTy, FunctionType::ExtInfo());
999 QualType getFunctionType(QualType ResultTy, ArrayRef<QualType> Args,
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DOverload.h615 QualType ResultTy; member in struct:clang::OverloadCandidate::__anon2870
H A DSema.h1896 QualType &ResultTy);
2073 void AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,
/freebsd-10.0-release/contrib/llvm/lib/AsmParser/
H A DLLParser.h257 Type *&ResultTy);
H A DLLParser.cpp1818 Type *&ResultTy) {
1832 ResultTy = Entry.first;
1846 ResultTy = 0;
1848 return ParseArrayVectorType(ResultTy, true);
1849 return ParseType(ResultTy);
1867 ResultTy = STy;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp2677 ASTContext::getFunctionNoProtoType(QualType ResultTy, argument
2685 FunctionNoProtoType::Profile(ID, ResultTy, Info);
2693 if (!ResultTy.isCanonical() ||
2696 getFunctionNoProtoType(getCanonicalType(ResultTy),
2707 FunctionNoProtoType(ResultTy, Canonical, newInfo);
2723 ASTContext::getFunctionType(QualType ResultTy, ArrayRef<QualType> ArgArray, argument
2730 FunctionProtoType::Profile(ID, ResultTy, ArgArray.begin(), NumArgs, EPI,
2740 EPI.ExceptionSpecType == EST_None && isCanonicalResultType(ResultTy) &&
2767 QualType CanResultTy = getCanonicalType(ResultTy);
2768 if (ResultTy
[all...]
H A DASTImporter.cpp3227 QualType ResultTy = Importer.Import(D->getResultType()); local
3228 if (ResultTy.isNull())
3238 ResultTy, ResultTInfo, DC,
H A DExprConstant.cpp6303 QualType ResultTy,
6310 const llvm::fltSemantics &Sem = Context.getFloatTypeSemantics(ResultTy);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp773 QualType ResultTy = MD->getResultType(); local
781 return getMethodSummary(S, ID, MD, ResultTy, *CachedSummaries);
2736 QualType ResultTy = Ex->getType(); local
2738 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2763 QualType ResultTy = Ex->getType(); local
2765 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
2927 QualType ResultTy = CallOrMsg.getResultType(); local
2929 ResultTy));
2945 QualType ResultTy = GetReturnType(Ex, C.getASTContext()); local
2947 ResultTy));
3190 QualType ResultTy = CE->getCallReturnType(); local
[all...]

Completed in 631 milliseconds