Home
last modified time | relevance | path

Searched refs:FnRef (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/VMCore/
DCore.cpp1360 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument
1363 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()
1366 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument
1367 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()
1373 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument
1374 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()
1459 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument
1460 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()
1463 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument
1464 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()
[all …]
/external/llvm/lib/IR/
DCore.cpp1901 unsigned LLVMCountParams(LLVMValueRef FnRef) { in LLVMCountParams() argument
1904 return unwrap<Function>(FnRef)->arg_size(); in LLVMCountParams()
1907 void LLVMGetParams(LLVMValueRef FnRef, LLVMValueRef *ParamRefs) { in LLVMGetParams() argument
1908 Function *Fn = unwrap<Function>(FnRef); in LLVMGetParams()
1914 LLVMValueRef LLVMGetParam(LLVMValueRef FnRef, unsigned index) { in LLVMGetParam() argument
1915 Function::arg_iterator AI = unwrap<Function>(FnRef)->arg_begin(); in LLVMGetParam()
2008 unsigned LLVMCountBasicBlocks(LLVMValueRef FnRef) { in LLVMCountBasicBlocks() argument
2009 return unwrap<Function>(FnRef)->size(); in LLVMCountBasicBlocks()
2012 void LLVMGetBasicBlocks(LLVMValueRef FnRef, LLVMBasicBlockRef *BasicBlocksRefs){ in LLVMGetBasicBlocks() argument
2013 Function *Fn = unwrap<Function>(FnRef); in LLVMGetBasicBlocks()
[all …]