Home
last modified time | relevance | path

Searched refs:FunctionTy (Results 1 – 4 of 4) sorted by relevance

/freebsd-9-stable/contrib/llvm/include/llvm-c/
DCore.h631 LLVMTypeRef FunctionTy);
849 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
854 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
859 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
872 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/freebsd-9-stable/contrib/llvm/lib/IR/
DCore.cpp336 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
337 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
340 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
341 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
344 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
345 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
348 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
349 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
1425 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
1426 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaLambda.cpp1246 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local
1248 BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
1371 QualType FunctionTy = Context.getFunctionType( in ActOnLambdaExpr() local
1373 CallOperator->setType(FunctionTy); in ActOnLambdaExpr()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCodeGenFunction.cpp297 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local
300 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()