Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
1778 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument1781 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()1784 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument1785 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()1791 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument1792 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()1882 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument1883 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()1886 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument1887 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]