Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DCore.cpp1754 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument
1757 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()
1760 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument
1761 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()
1767 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument
1768 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()
1858 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument
1859 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()
1863 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()
1905 LLVMValueRef FnRef, in LLVMAppendBasicBlockInContext() argument
[all …]