/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | ProfileVerifierPass.cpp | 34 template<class FType, class BType> 46 ProfileInfoT<FType, BType> *PI; 48 std::set<const FType*> FisVisited; 73 AU.addRequired<ProfileInfoT<FType, BType> >(); in getAnalysisUsage() 81 bool runOnFunction(FType &F); 84 bool exitReachable(const FType*); 85 double ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge); 91 template<class FType, class BType> 92 void ProfileVerifierPassT<FType, BType>::printDebugInfo(const BType *BB) { in printDebugInfo() 97 if (BBWeight == ProfileInfoT<FType, BType>::MissingValue) { BBWeight = 0; } in printDebugInfo() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | ProfileInfo.h | 53 template<class FType, class BType> 68 std::map<const FType*, EdgeWeights> EdgeInformation; 71 std::map<const FType*, BlockCounts> BlockInformation; 74 std::map<const FType*, double> FunctionInformation; 87 static const FType* getFunction(Edge e) { in getFunction() 94 return (const FType*)0; in getFunction() 105 double getExecutionCount(const FType *F); 114 typename std::map<const FType*, EdgeWeights>::const_iterator J = in getEdgeWeight() 133 EdgeWeights &getEdgeWeights (const FType *F) { in getEdgeWeights() 168 void transfer(const FType *Old, const FType *New); [all …]
|
/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;
|
/external/llvm/include/llvm/MC/ |
D | MCFragment.h | 147 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, 149 : MCFragment(FType, HasInstructions, 0, Sec) {} 173 MCEncodedFragmentWithContents(MCFragment::FragmentType FType, 176 : MCEncodedFragment(FType, HasInstructions, Sec) {} 194 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, 197 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions,
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 780 QualType FType; in CreateType() local 786 FType = CGM.getContext().UnsignedLongTy; in CreateType() 787 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset)); in CreateType() 788 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset)); in CreateType() 806 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy); in CreateType() 807 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset)); in CreateType() 808 FType = CGM.getContext().IntTy; in CreateType() 809 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset)); in CreateType() 810 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset)); in CreateType() 811 FType = CGM.getContext().getPointerType(Ty->getPointeeType()); in CreateType() [all …]
|
D | CGDebugInfo.h | 444 llvm::DIType *CreateMemberType(llvm::DIFile *Unit, QualType FType,
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 4346 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local 4348 SourceLocation(), ID, FType, nullptr, SC_Extern, in SynthBlockInitFunctionDecl() 4406 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local 4413 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, in SynthBlockInitExpr() 4530 FType, VK_LValue, SourceLocation()); in SynthBlockInitExpr() 4534 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
|
D | RewriteModernObjC.cpp | 5202 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); in SynthBlockInitFunctionDecl() local 5204 SourceLocation(), ID, FType, nullptr, SC_Extern, in SynthBlockInitFunctionDecl() 5270 QualType FType = Context->getPointerType(BFT); in SynthBlockInitExpr() local 5285 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue, in SynthBlockInitExpr() 5403 FType, VK_LValue, SourceLocation()); in SynthBlockInitExpr() 5415 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, in SynthBlockInitExpr()
|
/external/llvm/lib/Target/AMDGPU/ |
D | SIISelLowering.cpp | 595 FunctionType *FType = MF.getFunction()->getFunctionType(); in LowerFormalArguments() local 646 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex()); in LowerFormalArguments() 756 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex())); in LowerFormalArguments() 792 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex()); in LowerFormalArguments()
|
/external/abi-compliance-checker/ |
D | abi-compliance-checker.pl | 5514 my $FType = getFuncType($InfoId); 5516 if($FType eq "Method") 5587 if($ParamName ne "this" or $FType ne "Method") { 5602 my $FType = getFuncType($InfoId); 5604 if($FType eq "Method") 5672 if($Pos!=0 or $FType ne "Method") {
|
/external/clang/lib/Sema/ |
D | SemaCodeComplete.cpp | 3979 if (auto FType = Candidate.getFunctionType()) in getParamType() local 3980 if (auto Proto = dyn_cast<FunctionProtoType>(FType)) in getParamType()
|