Lines Matching refs:PhiNode
1937 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
1939 PHINode *PhiVal = unwrap<PHINode>(PhiNode);
1944 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) {
1945 return unwrap<PHINode>(PhiNode)->getNumIncomingValues();
1948 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) {
1949 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index));
1952 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) {
1953 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index));