HomeSort by relevance Sort by last modified time
    Searched refs:InsertedPHIs (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineSSAUpdater.h 48 /// InsertedPHIs - If this is non-null, the MachineSSAUpdater adds all PHI
50 SmallVectorImpl<MachineInstr*> *InsertedPHIs;
55 /// MachineSSAUpdater constructor. If InsertedPHIs is specified, it will be
58 SmallVectorImpl<MachineInstr*> *InsertedPHIs = 0);
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdater.h 49 /// InsertedPHIs - If this is non-null, the SSAUpdater adds all PHI nodes that
51 SmallVectorImpl<PHINode*> *InsertedPHIs;
54 /// SSAUpdater constructor. If InsertedPHIs is specified, it will be filled
56 explicit SSAUpdater(SmallVectorImpl<PHINode*> *InsertedPHIs = 0);
SSAUpdaterImpl.h 62 SmallVectorImpl<PhiT*> *InsertedPHIs;
72 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
370 if (InsertedPHIs) InsertedPHIs->push_back(PHI);
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 39 : AV(0), InsertedPHIs(NewPHI) {
202 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
369 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 39 : AV(0), ProtoType(0), ProtoName(), InsertedPHIs(NewPHI) {}
197 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
351 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);

Completed in 815 milliseconds