Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
1540 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument1543 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()1546 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument1547 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()1553 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument1554 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()1644 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument1645 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()1648 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument1649 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]