Searched refs:FunctionType (Results 1 - 25 of 231) sorted by relevance

12345678910

/external/llvm/include/llvm/Analysis/
H A DJumpInstrTableInfo.h23 class FunctionType;
48 typedef DenseMap<FunctionType *, std::vector<JumpPair> > JumpTables;
51 void insertEntry(FunctionType *TableFunTy, Function *Target, Function *Jump);
/external/clang/test/Sema/
H A Dinvalid-decl.c24 typedef int (FunctionType)(int *value); typedef
27 FunctionType fun; // expected-error {{field 'fun' declared as a function}}
/external/llvm/unittests/IR/
H A DVerifierTest.cpp27 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C), /*isVarArg=*/false);
50 FunctionType *FTy = FunctionType::get(Type::getInt32Ty(C), /*isVarArg=*/false);
H A DWaymarkTest.cpp31 FunctionType *FT = FunctionType::get(Type::getVoidTy(getGlobalContext()), true);
H A DTypeBuilderTest.cpp123 EXPECT_EQ(FunctionType::get(Type::getVoidTy(getGlobalContext()), params, false),
125 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
128 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
130 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
133 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
135 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
138 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
140 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, true),
143 EXPECT_EQ(FunctionType::get(Type::getInt8Ty(getGlobalContext()), params, false),
145 EXPECT_EQ(FunctionType
[all...]
/external/llvm/include/llvm/IR/
H A DTypeBuilder.h249 static FunctionType *get(LLVMContext &Context) {
250 return FunctionType::get(TypeBuilder<R, cross>::get(Context), false);
255 static FunctionType *get(LLVMContext &Context) {
259 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
266 static FunctionType *get(LLVMContext &Context) {
271 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
278 static FunctionType *get(LLVMContext &Context) {
284 return FunctionType::get(TypeBuilder<R, cross>::get(Context),
293 static FunctionType *get(LLVMContext &Context) {
300 return FunctionType
[all...]
H A DInlineAsm.h26 class FunctionType;
63 static InlineAsm *get(FunctionType *Ty, StringRef AsmString,
80 FunctionType *getFunctionType() const;
89 static bool Verify(FunctionType *Ty, StringRef Constraints);
H A DDerivedTypes.h94 /// FunctionType - Class to represent function types
96 class FunctionType : public Type { class in namespace:llvm
97 FunctionType(const FunctionType &) = delete;
98 const FunctionType &operator=(const FunctionType &) = delete;
99 FunctionType(Type *Result, ArrayRef<Type*> Params, bool IsVarArgs);
102 /// FunctionType::get - This static method is the primary way of constructing
103 /// a FunctionType.
105 static FunctionType *ge
[all...]
H A DIntrinsics.h25 class FunctionType;
49 FunctionType *getType(LLVMContext &Context, ID id,
/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp33 FunctionType *FT =
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
/external/llvm/lib/Transforms/ObjCARC/
H A DARCRuntimeEntryPoints.h134 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
148 FunctionType *Fty = FunctionType::get(I8X, Params, /*isVarArg=*/false);
173 FunctionType *Fty = FunctionType::get(Type::getVoidTy(C), Params,
/external/clang/lib/CodeGen/
H A DCodeGenTypes.h25 class FunctionType;
190 llvm::FunctionType *GetFunctionType(const CGFunctionInfo &Info);
192 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
197 bool isFuncTypeConvertible(const FunctionType *FT);
239 const FunctionType::ExtInfo &Info,
254 const FunctionType *Ty,
258 FunctionType::ExtInfo info,
261 const FunctionType *type);
285 FunctionType::ExtInfo info,
H A DCGOpenMPRuntime.cpp268 Kmpc_MicroTy = llvm::FunctionType::get(CGM.VoidTy, MicroParams, true);
455 llvm::FunctionType *FnTy =
456 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ true);
463 llvm::FunctionType *FnTy =
464 llvm::FunctionType::get(CGM.Int32Ty, TypeParams, /*isVarArg*/ false);
474 llvm::FunctionType *FnTy =
475 llvm::FunctionType::get(CGM.VoidPtrTy, TypeParams, /*isVarArg*/ false);
485 llvm::FunctionType *FnTy =
486 llvm::FunctionType::get(CGM.VoidTy, TypeParams, /*isVarArg*/ false);
495 llvm::FunctionType
[all...]
H A DCGDeclCXX.cpp192 llvm::FunctionType *ty = llvm::FunctionType::get(CGM.VoidTy, false);
226 llvm::FunctionType *atexitTy =
227 llvm::FunctionType::get(IntTy, dtorStub->getType(), false);
252 llvm::FunctionType *FTy, const Twine &Name, SourceLocation Loc, bool TLS) {
306 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
389 llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, false);
456 llvm::FunctionType *FT
[all...]
/external/llvm/unittests/Analysis/
H A DMixedTBAATest.cpp35 FunctionType *FTy = FunctionType::get(Type::getVoidTy(C),
H A DAliasAnalysisTest.cpp72 FunctionType *FTy =
73 FunctionType::get(Type::getVoidTy(C), std::vector<Type *>(), false);
/external/llvm/lib/Target/R600/
H A DR600TextureIntrinsicsReplacer.cpp35 FunctionType *TexSign;
36 FunctionType *TexQSign;
121 void ReplaceCallInst(CallInst &I, FunctionType *FT, const char *Name,
157 void ReplaceTexIntrinsic(CallInst &I, bool hasLOD, FunctionType *FT,
231 TexSign = FunctionType::get(V4f32Type, ArgsType, /*isVarArg=*/false);
244 TexQSign = FunctionType::get(V4f32Type, ArgsQType, /*isVarArg=*/false);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp52 typedef GenericValue (*ExFunc)(FunctionType *,
95 FunctionType *FT = F->getFunctionType();
185 FunctionType *FTy = F->getFunctionType();
302 GenericValue lle_X_atexit(FunctionType *FT,
313 GenericValue lle_X_exit(FunctionType *FT,
321 GenericValue lle_X_abort(FunctionType *FT,
332 GenericValue lle_X_sprintf(FunctionType *FT,
415 GenericValue lle_X_printf(FunctionType *FT,
428 GenericValue lle_X_sscanf(FunctionType *FT,
444 GenericValue lle_X_scanf(FunctionType *F
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp163 if (isa<FunctionType>(GA.getType()->getElementType()))
234 FunctionType *DFSanUnionFnTy;
235 FunctionType *DFSanUnionLoadFnTy;
236 FunctionType *DFSanUnimplementedFnTy;
237 FunctionType *DFSanSetLabelFnTy;
238 FunctionType *DFSanNonzeroLabelFnTy;
239 FunctionType *DFSanVarargWrapperFnTy;
256 FunctionType *getArgsFunctionType(FunctionType *T);
257 FunctionType *getTrampolineFunctionTyp
[all...]
H A DGCOVProfiling.cpp668 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
680 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
685 FTy = FunctionType::get(Builder.getVoidTy(), Params, false);
756 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
767 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
779 FunctionType *FTy = FunctionType
[all...]
/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp129 if (FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
/external/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp27 FunctionType *FnTy = FunctionType::get(IRB.getVoidTy(), false);
/external/llvm/unittests/Transforms/Utils/
H A DIntegerDivision.cpp29 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
59 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
89 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
119 Function *F = Function::Create(FunctionType::get(Builder.getInt32Ty(),
150 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
180 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
210 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
240 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dform.py139 assert isinstance(authfunc, types.FunctionType), "authfunc must resolve to a function"
/external/clang/include/clang/CodeGen/
H A DCodeGenABITypes.h69 FunctionType::ExtInfo info,

Completed in 4943 milliseconds

12345678910