Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
1483 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument1486 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()1489 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument1490 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()1496 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument1497 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()1587 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument1588 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()1591 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument1592 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]