Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
2609 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument2612 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()2615 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument2616 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()2621 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument2622 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParam()2785 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument2786 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()2789 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument2790 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]