Home | History | Annotate | Download | only in IR

Lines Matching refs:PHINode

1797 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
1799 PHINode *PhiVal = unwrap<PHINode>(PhiNode);
1804 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
1805 return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
1808 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
1809 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
1812 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
1813 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));