Searched refs:FnRef (Results 1 – 1 of 1) sorted by relevance
2437 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument2440 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()2443 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument2444 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()2450 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument2451 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParam()2586 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument2587 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()2590 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument2591 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()[all …]