Searched refs:FunctionType (Results 176 - 200 of 372) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp762 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DIntrinsicLowering.cpp35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
76 FunctionType::get(RetTy, ParamTys, false));
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DCloneFunction.cpp154 FunctionType *FTy = FunctionType::get(F->getFunctionType()->getReturnType(),
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DAsmWriter.cpp205 FunctionType *FTy = cast<FunctionType>(Ty);
208 for (FunctionType::param_iterator I = FTy->param_begin(),
1492 FunctionType *FT = F->getFunctionType();
1796 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
1829 FunctionType *FTy = cast<FunctionType>(PTy->getElementType());
/external/clang/lib/AST/
H A DDeclPrinter.cpp129 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>())
483 if (const FunctionType *AFT = Ty->getAs<FunctionType>()) {
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp87 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(
H A DCodeGenModule.cpp304 llvm::FunctionType *FTy = dyn_cast<llvm::FunctionType>(
725 llvm::FunctionType* CtorFTy = llvm::FunctionType::get(VoidTy, false);
1507 if (isa<llvm::FunctionType>(DeclTy))
1876 llvm::FunctionType *FTy;
1877 if (isa<llvm::FunctionType>(Ty)) {
1878 FTy = cast<llvm::FunctionType>(Ty);
1880 FTy = llvm::FunctionType::get(VoidTy, false);
2003 CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FT
[all...]
/external/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h87 bool isValidProtoForLibFunc(const FunctionType &FTy, LibFunc::Func F,
H A DTargetTransformInfo.h156 int getCallCost(FunctionType *FTy, int NumArgs = -1) const;
635 virtual int getCallCost(FunctionType *FTy, int NumArgs) = 0;
761 int getCallCost(FunctionType *FTy, int NumArgs) override {
/external/llvm/include/llvm/IR/
H A DStatepoint.h147 auto *FTy = cast<FunctionType>(
/external/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp366 FunctionType *NewTy = IA->getFunctionType();
368 NewTy = cast<FunctionType>(TypeMapper->remapType(NewTy));
895 FunctionType *FTy = CS.getFunctionType();
899 CS.mutateFunctionType(FunctionType::get(
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
H A DJitManager.cpp145 mFetchShaderTy = FunctionType::get(Type::getVoidTy(mContext), fsArgs, false);
/external/swiftshader/third_party/LLVM/test/Scripts/
H A Dcoff-dump.py380 elif format_type is types.FunctionType:
/external/v8/src/asmjs/
H A Dasm-types.h60 V(FunctionType) \
/external/v8/src/parsing/
H A Dpreparser.cc223 int function_token_pos, FunctionLiteral::FunctionType function_type,
/external/v8/tools/
H A Dgc-nvp-trace-processor.py140 elif t is types.FunctionType:
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp131 FunctionType *FTy = F.getFunctionType();
783 FunctionType *NewType = FunctionType::get(Call->getType(), ArgTypes,
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp639 FunctionType *FTy = F->getFunctionType();
752 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
H A DMergeFunctions.cpp874 FunctionType *FTyL = cast<FunctionType>(TyL);
875 FunctionType *FTyR = cast<FunctionType>(TyR);
1701 FunctionType *FFTy = F->getFunctionType();
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DArgumentPromotion.cpp497 FunctionType *FTy = F->getFunctionType();
607 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DMiscompilation.cpp387 std::vector<std::pair<std::string, FunctionType*> > MisCompFunctions;
571 std::vector<std::pair<std::string, FunctionType*> > MisCompFunctions;
850 FunctionType *FuncTy = F->getFunctionType();
/external/clang/include/clang/AST/
H A DASTContext.h1034 const FunctionType *adjustFunctionType(const FunctionType *Fn,
1035 FunctionType::ExtInfo EInfo);
1187 const FunctionType::ExtInfo &Info) const;
1190 return getFunctionNoProtoType(ResultTy, FunctionType::ExtInfo());
/external/selinux/python/sepolgen/src/sepolgen/
H A Dyacc.py461 if n[0:2] == 'p_' and type(v) in (types.FunctionType, types.MethodType): continue
466 if 1 and isinstance(v,types.FunctionType) and v.__code__.co_argcount == 1:
2081 if isinstance(ef,types.FunctionType):
2100 if (type(ldict[f]) in (types.FunctionType, types.MethodType) and ldict[f].__name__[:2] == 'p_'
2143 if (type(f) in (types.FunctionType,types.MethodType) and ldict[f].__name__[:2] != 'p_')]
/external/clang/lib/Sema/
H A DSemaType.cpp1931 << QFK << isa<FunctionType>(T.IgnoreParens()) << T
4157 FunctionType::ExtInfo EI(getCCForDeclaratorChunk(S, D, FTI, chunkIndex));
5615 /// const FunctionType *fn = unwrapped.get();
5631 const FunctionType *Fn;
5637 if (isa<FunctionType>(Ty)) {
5638 Fn = cast<FunctionType>(Ty);
5672 const FunctionType *get() const { return Fn; }
5674 QualType wrap(Sema &S, const FunctionType *New) {
6124 FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true);
6140 FunctionType
[all...]
/external/llvm/lib/AsmParser/
H A DLLParser.cpp1139 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
2222 if (!FunctionType::isValidArgumentType(ArgTy))
2269 if (!FunctionType::isValidReturnType(Result))
2290 Result = FunctionType::get(Result, ArgListTy, isVarArg);
4592 if (!FunctionType::isValidReturnType(RetType))
4685 FunctionType *FT =
4686 FunctionType::get(RetType, ParamTypeList, isVarArg);
5271 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5278 if (!FunctionType
[all...]

Completed in 542 milliseconds

1234567891011>>