/external/llvm/lib/Analysis/ |
D | ProfileVerifierPass.cpp | 35 template<class FType, class BType> 47 ProfileInfoT<FType, BType> *PI; 49 std::set<const FType*> FisVisited; 74 AU.addRequired<ProfileInfoT<FType, BType> >(); in getAnalysisUsage() 82 bool runOnFunction(FType &F); 85 bool exitReachable(const FType*); 86 double ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge); 92 template<class FType, class BType> 93 void ProfileVerifierPassT<FType, BType>::printDebugInfo(const BType *BB) { in printDebugInfo() 98 if (BBWeight == ProfileInfoT<FType, BType>::MissingValue) { BBWeight = 0; } in printDebugInfo() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | ProfileInfo.h | 54 template<class FType, class BType> 69 std::map<const FType*, EdgeWeights> EdgeInformation; 72 std::map<const FType*, BlockCounts> BlockInformation; 75 std::map<const FType*, double> FunctionInformation; 88 static const FType* getFunction(Edge e) { in getFunction() 104 double getExecutionCount(const FType *F); 113 typename std::map<const FType*, EdgeWeights>::const_iterator J = in getEdgeWeight() 132 EdgeWeights &getEdgeWeights (const FType *F) { in getEdgeWeights() 167 void transfer(const FType *Old, const FType *New); 169 void repair(const FType *F); [all …]
|
D | ProfileDataLoader.h | 40 template<class FType, class BType> 55 DenseMap<const FType*, EdgeWeights> EdgeInformation; 59 static const FType *getFunction(Edge e) { in getFunction() 75 const FType *f = getFunction(e); in getEdgeWeight()
|
/external/clang/test/CodeGenObjCXX/ |
D | block-in-template-inst.mm | 42 typedef R (^FType)(Arg0, Arg1, Arg2); 44 Curry(FType _f) : f(_f) {} 59 FType f;
|
/external/clang/test/CodeGen/ |
D | regparm.c | 11 typedef void (*FType)(int, int) __attribute ((regparm (3), stdcall)); typedef 12 FType bar;
|
D | le32-regparm.c | 29 typedef void (*FType)(int, int) __attribute ((regparm (2))); typedef 30 FType bar;
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 680 QualType FType; in CreateType() local 687 FType = CGM.getContext().UnsignedLongTy; in CreateType() 688 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); in CreateType() 689 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); in CreateType() 707 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in CreateType() 708 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); in CreateType() 709 FType = CGM.getContext().IntTy; in CreateType() 710 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); in CreateType() 711 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); in CreateType() 712 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in CreateType() [all …]
|
D | CGDebugInfo.h | 325 llvm::DIType CreateMemberType(llvm::DIFile Unit, QualType FType,
|
/external/stlport/test/unit/ |
D | ptrspec_test.cpp | 92 typedef void (*FType)(); in ptr_specialization_test() typedef 93 vector<FType> func_vector; in ptr_specialization_test()
|
/external/llvm/include/llvm/MC/ |
D | MCAssembler.h | 144 MCEncodedFragment(MCFragment::FragmentType FType, MCSectionData *SD = 0) 145 : MCFragment(FType, SD), BundlePadding(0) in MCFragment() argument 181 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, 183 : MCEncodedFragment(FType, SD) in MCEncodedFragment() argument
|
/external/llvm/lib/Target/R600/ |
D | SIISelLowering.cpp | 91 FunctionType *FType = MF.getFunction()->getFunctionType(); in LowerFormalArguments() local 126 Type *ParamType = FType->getParamType(Arg.OrigArgIndex); in LowerFormalArguments() 183 Type *ParamType = FType->getParamType(Arg.OrigArgIndex); in LowerFormalArguments()
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteObjC.cpp | 4448 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local 4450 SourceLocation(), ID, FType, 0, SC_Extern, in SynthBlockInitFunctionDecl() 4508 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local 4515 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, in SynthBlockInitExpr() 4634 FType, VK_LValue, SourceLocation()); in SynthBlockInitExpr() 4638 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
|
D | RewriteModernObjC.cpp | 5399 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local 5401 SourceLocation(), ID, FType, 0, SC_Extern, in SynthBlockInitFunctionDecl() 5468 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local 5483 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, in SynthBlockInitExpr() 5602 FType, VK_LValue, SourceLocation()); in SynthBlockInitExpr() 5614 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 3902 if (const FunctionType *FType = Results[I].getFunctionType()) in CodeCompleteCall() local 3903 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FType)) in CodeCompleteCall()
|