Searched refs:FunctionTy (Results 1 – 5 of 5) sorted by relevance
587 LLVMTypeRef FunctionTy);807 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);812 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);817 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);830 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
123 template <typename FunctionTy>125 FunctionTy Handler) { in iterateOnSegments()
406 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument407 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()410 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument411 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()414 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument415 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()418 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument419 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()1655 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument1656 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
1337 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local1339 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
406 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local409 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()