Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
2499 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument2502 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()2505 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument2506 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()2511 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument2512 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParam()2647 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument2648 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()2651 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument2652 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]