Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
1623 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument1626 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()1629 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument1630 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()1636 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument1637 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()1727 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument1728 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()1731 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument1732 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]