Searched refs:FuncType (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| D | Marshallers.h | 655 using FuncType = ReturnType (*)(); 657 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)()); 666 using FuncType = ReturnType (*)(ArgType1); 669 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)( 679 using FuncType = ReturnType (*)(ArgType1, ArgType2); 683 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| D | NullabilityChecker.cpp | 791 const FunctionType *FuncType = Decl->getFunctionType(); in checkPostCall() local 792 if (!FuncType) in checkPostCall() 794 QualType ReturnType = FuncType->getReturnType(); in checkPostCall()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| D | WasmEmitter.cpp | 411 for (uint32_t FuncType : Section.FunctionTypes) in writeSectionContent() local 412 encodeULEB128(FuncType, OS); in writeSectionContent()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaStmt.cpp | 647 struct FuncType { in checkMustTailAttr() struct 660 auto GetMethodType = [this, St, MTA](const CXXMethodDecl *CMD, FuncType &Type, in checkMustTailAttr() 672 Type.MemberType = FuncType::ft_static_member; in checkMustTailAttr() 675 Type.MemberType = FuncType::ft_non_static_member; in checkMustTailAttr() 722 CalleeType.MemberType = FuncType::ft_pointer_to_member; in checkMustTailAttr() 786 auto CheckTypesMatch = [this](FuncType CallerType, FuncType CalleeType, in checkMustTailAttr()
|
| D | SemaChecking.cpp | 1787 const auto *FuncType = in CheckBuiltinFunctionCall() local 1790 if (!FuncType) { in CheckBuiltinFunctionCall() 1797 if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) { in CheckBuiltinFunctionCall()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonLoopIdiomRecognition.cpp | 179 using FuncType = std::function<Value *(Instruction *, LLVMContext &)>; typedef 180 Rule(StringRef N, FuncType F) : Name(N), Fn(F) {} in Rule() 182 FuncType Fn; 185 void addRule(StringRef N, const Rule::FuncType &F) { in addRule()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| D | RewriteModernObjC.cpp | 3100 QualType FuncType = getSimpleFunctionType( in SynthMsgSendStretCallExpr() local 3102 QualType castType = Context->getPointerType(FuncType); in SynthMsgSendStretCallExpr() 3178 ID, FuncType, nullptr, SC_Extern, false, false); in SynthMsgSendStretCallExpr() 4544 QualType FuncType; in convertFunctionTypeOfBlocks() local 4546 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks() 4547 else FuncType = QualType(FT, 0); in convertFunctionTypeOfBlocks() 4548 return FuncType; in convertFunctionTypeOfBlocks()
|
| D | RewriteObjC.cpp | 3710 QualType FuncType; in convertFunctionTypeOfBlocks() local 3714 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks() 3715 else FuncType = QualType(FT, 0); in convertFunctionTypeOfBlocks() 3716 return FuncType; in convertFunctionTypeOfBlocks()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | BuildLibCalls.cpp | 1229 FunctionType *FuncType = FunctionType::get(ReturnType, ParamTypes, IsVaArgs); in emitLibCall() local 1230 FunctionCallee Callee = M->getOrInsertFunction(FuncName, FuncType); in emitLibCall()
|