Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
2466 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument2469 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()2472 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument2473 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()2478 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument2479 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParam()2614 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument2615 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()2618 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument2619 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]