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 47 /// InsertedPHIs - If this is non-null, the SSAUpdater adds all PHI nodes that
49 SmallVectorImpl<PHINode*> *InsertedPHIs;
52 /// SSAUpdater constructor. If InsertedPHIs is specified, it will be filled
54 explicit SSAUpdater(SmallVectorImpl<PHINode*> *InsertedPHIs = 0);
SSAUpdaterImpl.h 54 SmallVectorImpl<PhiT*> *InsertedPHIs;
64 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
362 if (InsertedPHIs) InsertedPHIs->push_back(PHI);
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 39 : AV(0), InsertedPHIs(NewPHI) {
202 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
370 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 2982 milliseconds