Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm-c/
H A DCore.h682 LLVMTypeRef FunctionTy);
900 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
905 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
910 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
923 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DCore.cpp395 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
396 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
399 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
400 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
403 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
404 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
407 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
408 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
1639 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
1640 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp1349 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local
1351 BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
1479 QualType FunctionTy = Context.getFunctionType( in ActOnLambdaExpr() local
1481 CallOperator->setType(FunctionTy); in ActOnLambdaExpr()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.cpp330 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local
333 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()