Home
last modified time | relevance | path

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

/external/llvm/include/llvm-c/
DCore.h677 LLVMTypeRef FunctionTy);
895 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
900 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy);
905 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy);
918 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest);
/external/llvm/lib/IR/
DCore.cpp393 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) { in LLVMIsFunctionVarArg() argument
394 return unwrap<FunctionType>(FunctionTy)->isVarArg(); in LLVMIsFunctionVarArg()
397 LLVMTypeRef LLVMGetReturnType(LLVMTypeRef FunctionTy) { in LLVMGetReturnType() argument
398 return wrap(unwrap<FunctionType>(FunctionTy)->getReturnType()); in LLVMGetReturnType()
401 unsigned LLVMCountParamTypes(LLVMTypeRef FunctionTy) { in LLVMCountParamTypes() argument
402 return unwrap<FunctionType>(FunctionTy)->getNumParams(); in LLVMCountParamTypes()
405 void LLVMGetParamTypes(LLVMTypeRef FunctionTy, LLVMTypeRef *Dest) { in LLVMGetParamTypes() argument
406 FunctionType *Ty = unwrap<FunctionType>(FunctionTy); in LLVMGetParamTypes()
1508 LLVMTypeRef FunctionTy) { in LLVMAddFunction() argument
1509 return wrap(Function::Create(unwrap<FunctionType>(FunctionTy), in LLVMAddFunction()
/external/clang/lib/Sema/
DSemaLambda.cpp1344 QualType FunctionTy = S.Context.getFunctionType( in addBlockPointerConversion() local
1346 BlockPtrTy = S.Context.getBlockPointerType(FunctionTy); in addBlockPointerConversion()
1468 QualType FunctionTy = Context.getFunctionType( in ActOnLambdaExpr() local
1470 CallOperator->setType(FunctionTy); in ActOnLambdaExpr()
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp310 llvm::FunctionType *FunctionTy = in EmitFunctionInstrumentation() local
313 llvm::Constant *F = CGM.CreateRuntimeFunction(FunctionTy, Fn); in EmitFunctionInstrumentation()