Home
last modified time | relevance | path

Searched refs:FunTy (Results 1 – 13 of 13) sorted by relevance

/external/llvm/test/Feature/
Dsimplecalltest.ll5 %FunTy = type i32 (i32)
7 define void @invoke(%FunTy* %x) {
17 call void @invoke( %FunTy* @test )
Dcalltest.ll5 %FunTy = type i32 (i32)
7 define void @invoke(%FunTy* %x) {
21 call void @invoke( %FunTy* @test )
Daliases.ll19 %FunTy = type i32()
24 @bar_f = weak_odr alias %FunTy* @foo_f
38 %tmp4 = call %FunTy @bar_f()
/external/llvm/test/Other/
D2002-01-31-CallGraph.ll6 %FunTy = type i32 (i32)
8 define void @invoke(%FunTy* %x) {
/external/llvm/test/CodeGen/ARM/
Daliases.ll23 %FunTy = type i32()
28 @bar_f = weak alias %FunTy* @foo_f
/external/llvm/include/llvm/IR/
DCallSite.h39 template <typename FunTy = const Function,
94 FunTy *getCalledFunction() const { in getCalledFunction()
95 return dyn_cast<FunTy>(getCalledValue()); in getCalledFunction()
162 FunTy *getCaller() const { return (*this)->getParent()->getParent(); } in getCaller()
/external/llvm/test/CodeGen/X86/
Daliases.ll27 %FunTy = type i32()
33 @bar_f = weak alias %FunTy* @foo_f
/external/clang/lib/Sema/
DSema.cpp1326 const FunctionType *FunTy = nullptr; in tryExprAsCall() local
1329 FunTy = PointeeTy->getAs<FunctionType>(); in tryExprAsCall()
1330 if (!FunTy) in tryExprAsCall()
1331 FunTy = ExprTy->getAs<FunctionType>(); in tryExprAsCall()
1334 dyn_cast_or_null<FunctionProtoType>(FunTy)) { in tryExprAsCall()
1336 ZeroArgCallReturnTy = FunTy->getReturnType(); in tryExprAsCall()
/external/clang/test/Sema/
Ddllimport.c10 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only appl… typedef
Ddllexport.c10 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only appl… typedef
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c328 CAMLprim value llvm_is_var_arg(LLVMTypeRef FunTy) { in llvm_is_var_arg() argument
329 return Val_bool(LLVMIsFunctionVarArg(FunTy)); in llvm_is_var_arg()
333 CAMLprim value llvm_param_types(LLVMTypeRef FunTy) { in llvm_param_types() argument
334 value Tys = alloc(LLVMCountParamTypes(FunTy), 0); in llvm_param_types()
335 LLVMGetParamTypes(FunTy, (LLVMTypeRef *) Tys); in llvm_param_types()
/external/clang/test/SemaCXX/
Ddllexport.cpp22 typedef __declspec(dllexport) void (*FunTy)(); // expected-warning{{'dllexport' attribute only appl… typedef
Ddllimport.cpp21 typedef __declspec(dllimport) void (*FunTy)(); // expected-warning{{'dllimport' attribute only appl… typedef