Home
last modified time | relevance | path

Searched refs:FType (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DProfileVerifierPass.cpp34 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/
DProfileInfo.h53 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/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitcodeHeader.h96 static const char *TypeName(FieldType FType);
98 return TypeName(FType); in TypeName()
114 FieldType GetType() const { return FType; } in GetType()
128 FixedSubfield EncodeTypedID() const { return (ID << 4) | FType; } in EncodeTypedID()
130 void DecodeTypedID(FixedSubfield Subfield, Tag &ID, FieldType &FType) { in DecodeTypedID() argument
134 FType = (PossibleFType > kFieldType_MAX in DecodeTypedID()
147 FieldType FType; variable
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeHeader.cpp57 const char *NaClBitcodeHeaderField::TypeName(FieldType FType) { in TypeName() argument
58 return FType > kFieldType_MAX ? "???" : FieldTypeName[FType]; in TypeName()
62 : ID(kInvalid), FType(kBufferType), Len(0), Data(0) {} in NaClBitcodeHeaderField()
65 : ID(MyID), FType(kFlagType), Len(0), Data(0) { in NaClBitcodeHeaderField()
70 : ID(MyID), FType(kUInt32Type), Len(4), Data(new uint8_t[4]) { in NaClBitcodeHeaderField()
79 assert(FType == kUInt32Type && "Header field must be uint32"); in GetUInt32Value()
88 : ID(MyID), FType(kBufferType), Len(MyLen), Data(new uint8_t[MyLen]) { in NaClBitcodeHeaderField()
132 DecodeTypedID(IdField, ID, FType); in Read()
141 switch (FType) { in Contents()
/external/clang/test/CodeGenObjCXX/
Dblock-in-template-inst.mm42 typedef R (^FType)(Arg0, Arg1, Arg2);
44 Curry(FType _f) : f(_f) {}
59 FType f;
/external/clang/test/CodeGen/
Dregparm.c11 typedef void (*FType)(int, int) __attribute ((regparm (3), stdcall)); typedef
12 FType bar;
/external/llvm/include/llvm/MC/
DMCFragment.h147 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCFragment.h135 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
137 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
192 MCEncodedFragmentWithContents(MCFragment::FragmentType FType, in MCEncodedFragmentWithContents() argument
195 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
213 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, in MCEncodedFragmentWithFixups() argument
216 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp780 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 …]
DCGDebugInfo.h444 llvm::DIType *CreateMemberType(llvm::DIFile *Unit, QualType FType,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/
DRISCVISelLowering.cpp821 FunctionType *FType = MF.getFunction().getFunctionType(); in analyzeInputArgs() local
829 ArgTy = FType->getReturnType(); in analyzeInputArgs()
831 ArgTy = FType->getParamType(Ins[i].getOrigArgIndex()); in analyzeInputArgs()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp4346 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()
DRewriteModernObjC.cpp5202 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/
DSIISelLowering.cpp595 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp1347 FunctionType *FType, in processShaderInputArgs() argument
1758 FunctionType *FType = MF.getFunction().getFunctionType(); in LowerFormalArguments() local
1791 processShaderInputArgs(Splits, CallConv, Ins, Skipped, FType, Info); in LowerFormalArguments()
1888 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex())); in LowerFormalArguments()
1956 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex()); in LowerFormalArguments()
/external/clang/lib/Sema/
DSemaCodeComplete.cpp3979 if (auto FType = Candidate.getFunctionType()) in getParamType() local
3980 if (auto Proto = dyn_cast<FunctionProtoType>(FType)) in getParamType()