コード例 #1
0
 /// ValueIsPHI - Check if the instruction that defines the specified register
 /// is a PHI instruction.
 static MachineInstr *ValueIsPHI(unsigned Val, MachineSSAUpdater *Updater) {
   return InstrIsPHI(Updater->MRI->getVRegDef(Val));
 }
コード例 #2
0
ファイル: SILSSAUpdater.cpp プロジェクト: uygar/swift
 /// ValueIsPHI - Check if the instruction that defines the specified register
 /// is a PHI instruction.
 static SILPhiArgument *ValueIsPHI(SILValue V, SILSSAUpdater *Updater) {
   return InstrIsPHI(V);
 }
コード例 #3
0
 /// ValueIsPHI - Check if the instruction that defines the specified register
 /// is a PHI instruction.
 static SILArgument *ValueIsPHI(SILValue V, SILSSAUpdater *Updater) {
   return InstrIsPHI(V.getDef());
 }