Home
last modified time | relevance | path

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

/external/llvm/include/llvm-c/
DCore.h683 LLVMTypeRef FunctionTy);
901 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
906 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
911 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
924 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/external/llvm/lib/IR/
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()
/external/clang/lib/Sema/
DSemaLambda.cpp1354 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local
1356 QualType BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
1484 QualType FunctionTy = Context.getFunctionType( in ActOnLambdaExpr() local
1486 CallOperator->setType(FunctionTy); in ActOnLambdaExpr()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp348 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local
351 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()