Searched refs:FunctionTy (Results 1 – 4 of 4) sorted by relevance
631 LLVMTypeRef FunctionTy);849 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);854 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);859 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);872 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
336 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument337 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()340 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument341 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()344 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument345 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()348 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument349 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()1425 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument1426 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
1246 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local1248 BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()1371 QualType FunctionTy = Context.getFunctionType( in ActOnLambdaExpr() local1373 CallOperator->setType(FunctionTy); in ActOnLambdaExpr()
297 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local300 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()