Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
2620 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument2623 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()2626 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument2627 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()2632 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument2633 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParam()2796 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument2797 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()2800 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument2801 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]