Searched refs:RetTy (Results 51 - 71 of 71) sorted by relevance

123

/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2008 Type *RetTy = Op.getValueType().getTypeForEVT(*DAG.getContext()); local
2009 Type *RetTyABI = RetTy;
2013 if (RetTy->isFP128Ty()) {
2019 Entry.Ty = PointerType::getUnqual(RetTy);
2038 if (RetTyABI == RetTy)
2041 assert (RetTy->isFP128Ty() && "Unexpected return type!");
2081 Type *RetTy = Type::getInt32Ty(*DAG.getContext()); local
2089 .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp628 llvm::DICompositeType RetTy = DBuilder.createReplaceableForwardDecl( local
630 ReplaceMap.push_back(std::make_pair(Ty, static_cast<llvm::Value *>(RetTy)));
631 return RetTy;
1931 llvm::DIType RetTy = DBuilder.createReplaceableForwardDecl( local
1934 ReplaceMap.push_back(std::make_pair(Ty, static_cast<llvm::Value *>(RetTy)));
1935 return RetTy;
H A DItaniumCXXABI.cpp1856 llvm::Type *RetTy = Var->getType();
1858 RetTy = RetTy->getPointerElementType();
1860 llvm::FunctionType *FnTy = llvm::FunctionType::get(RetTy, false);
H A DCGBuiltin.cpp1655 llvm::Type *RetTy = VoidTy; local
1657 RetTy = ConvertType(BuiltinRetType);
1659 if (RetTy != V->getType()) {
1660 assert(V->getType()->canLosslesslyBitCastTo(RetTy) &&
1662 V = Builder.CreateBitCast(V, RetTy);
H A DCodeGenFunction.h1153 QualType RetTy,
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp836 void Interpreter::popStackAndReturnValueToCaller(Type *RetTy,
842 if (RetTy && !RetTy->isVoidTy()) { // Nonvoid return type?
864 Type *RetTy = Type::getVoidTy(I.getContext());
869 RetTy = I.getReturnValue()->getType();
873 popStackAndReturnValueToCaller(RetTy, Result);
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1788 Type *RetTy = I.getType(); local
1789 if (!(RetTy->isIntOrIntVectorTy() ||
1790 RetTy->isFPOrFPVectorTy() ||
1791 RetTy->isX86_MMXTy()))
1798 if (Ty != RetTy)
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp1334 Type *RetTy = I->getType(); local
1335 if (RetTy->isVoidTy())
1337 else if (!isTypeLegal(RetTy, RetVT))
H A DAArch64ISelLowering.cpp1507 StructType *RetTy = StructType::get(ArgTy, ArgTy, NULL); local
1510 .setCallee(CallingConv::Fast, RetTy, Callee, std::move(Args), 0);
/external/llvm/include/llvm/IR/
H A DInstructions.h2286 explicit LandingPadInst(Type *RetTy, Value *PersonalityFn,
2289 explicit LandingPadInst(Type *RetTy, Value *PersonalityFn,
2297 static LandingPadInst *Create(Type *RetTy, Value *PersonalityFn,
2301 static LandingPadInst *Create(Type *RetTy, Value *PersonalityFn,
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5663 Type *RetTy = I->getType();
5664 Type *VectorTy = ToVectorTy(RetTy, VF);
5819 Type *RetTy = ToVectorTy(CI->getType(), VF);
5823 return TTI.getIntrinsicInstrCost(ID, RetTy, Tys);
5831 if (!RetTy->isVoidTy() && VF != 1) {
H A DBBVectorize.cpp1139 Type *RetTy = getVecTypeForPair(IT1, JT1); local
1140 unsigned VCost = TTI->getIntrinsicInstrCost(IID, RetTy, Tys);
1148 unsigned RetParts = TTI->getNumberOfParts(RetTy);
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp840 Type *RetTy = CI->getType(); local
844 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);
/external/clang/lib/Sema/
H A DSemaType.cpp2041 static void diagnoseRedundantReturnTypeQualifiers(Sema &S, QualType RetTy, argument
2048 RetTy.getLocalCVRQualifiers(),
2081 unsigned AtomicQual = RetTy->isAtomicType() ? DeclSpec::TQ_atomic : 0;
2083 RetTy.getCVRQualifiers() | AtomicQual,
H A DSemaExpr.cpp10499 QualType RetTy = Fn->getReturnType(); local
10509 if (RetTy != Context.DependentTy) {
10510 CurBlock->ReturnType = RetTy;
10595 QualType RetTy = Context.VoidTy; local
10597 RetTy = BSI->ReturnType;
10627 BlockTy = Context.getFunctionType(RetTy, None, EPI);
10631 } else if (FTy->getReturnType() == RetTy &&
10641 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
10648 BlockTy = Context.getFunctionType(RetTy, None, EPI);
10665 if (getLangOpts().CPlusPlus && RetTy
[all...]
H A DSemaDeclAttr.cpp1438 QualType RetTy = FD->getReturnType(); local
1439 if (RetTy->isAnyPointerType() || RetTy->isBlockPointerType()) {
H A DTreeTransform.h2739 QualType RetTy,
2745 return new (SemaRef.Context) AtomicExpr(BuiltinLoc, SubExprs, RetTy, Op,
9747 QualType RetTy = getDerived().TransformType(E->getType()); local
9760 RetTy, E->getOp(), E->getRParenLoc());
2737 RebuildAtomicExpr(SourceLocation BuiltinLoc, MultiExprArg SubExprs, QualType RetTy, AtomicExpr::AtomicOp Op, SourceLocation RParenLoc) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp105 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); local
108 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) local
H A DLegalizeIntegerTypes.cpp2307 Type *RetTy = VT.getTypeForEVT(*DAG.getContext()); local
2350 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Func, std::move(Args), 0)
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6091 StructType *RetTy = StructType::get(ArgTy, ArgTy, NULL); local
6094 const uint64_t ByteSize = TLI.getDataLayout()->getTypeAllocSize(RetTy);
6095 const unsigned StackAlign = TLI.getDataLayout()->getPrefTypeAlignment(RetTy);
6103 Entry.Ty = RetTy->getPointerTo();
10586 Type *RetTy = (Type*)StructType::get(Ty, Ty, NULL); local
10591 .setCallee(getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) local
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp2600 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
3147 Type *RetTy,
3162 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
16143 Type *RetTy = isF64
16149 .setCallee(CallingConv::C, RetTy, Callee, std::move(Args), 0);
3142 IsEligibleForTailCallOptimization(SDValue Callee, CallingConv::ID CalleeCC, bool isVarArg, bool isCalleeStructRet, bool isCallerStructRet, Type *RetTy, const SmallVectorImpl<ISD::OutputArg> &Outs, const SmallVectorImpl<SDValue> &OutVals, const SmallVectorImpl<ISD::InputArg> &Ins, SelectionDAG &DAG) const argument

Completed in 845 milliseconds

123