HomeSort by: relevance | last modified time | path
    Searched refs:InsertedPHIs (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SSAUpdater.h 54 SmallVectorImpl<PHINode *> *InsertedPHIs;
57 /// If InsertedPHIs is specified, it will be filled
59 explicit SSAUpdater(SmallVectorImpl<PHINode *> *InsertedPHIs = nullptr);
SSAUpdaterBulk.h 82 /// InsertedPHIs is passed, all the new phi-nodes will be added to this
85 SmallVectorImpl<PHINode *> *InsertedPHIs = nullptr);
SSAUpdaterImpl.h 76 SmallVectorImpl<PhiT *> *InsertedPHIs;
87 Updater(U), AvailableVals(A), InsertedPHIs(Ins) {}
383 if (InsertedPHIs) InsertedPHIs->push_back(PHI);
Local.h 264 SmallVectorImpl<PHINode *> &InsertedPHIs);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineSSAUpdater.h 46 /// InsertedPHIs - If this is non-null, the MachineSSAUpdater adds all PHI
48 SmallVectorImpl<MachineInstr*> *InsertedPHIs;
54 /// MachineSSAUpdater constructor. If InsertedPHIs is specified, it will be
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemorySSAUpdater.cpp 127 InsertedPHIs.push_back(Phi);
246 InsertedPHIs.clear();
262 if (!RenameUses && !InsertedPHIs.empty()) {
269 if (RenameUses && InsertedPHIs.size()) {
284 for (auto &MP : InsertedPHIs)
315 InsertedPHIs.clear();
322 llvm::is_contained(InsertedPHIs, DefBefore)))
343 SmallVector<WeakVH, 8> FixupList(InsertedPHIs.begin(), InsertedPHIs.end());
348 unsigned NewPhiIndex = InsertedPHIs.size()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 45 : InsertedPHIs(NewPHI), TII(MF.getSubtarget().getInstrInfo()),
205 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
358 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SSAUpdaterBulk.cpp 129 SmallVectorImpl<PHINode *> *InsertedPHIs) {
163 if (InsertedPHIs)
164 InsertedPHIs->push_back(PN);
LoopRotationUtils.cpp 106 SmallVectorImpl<PHINode*> *InsertedPHIs) {
114 SSAUpdater SSA(InsertedPHIs);
563 SmallVector<PHINode*, 2> InsertedPHIs;
567 &InsertedPHIs);
572 if (!InsertedPHIs.empty())
573 insertDebugValuesForPHIs(OrigHeader, InsertedPHIs);
SSAUpdater.cpp 47 : InsertedPHIs(NewPHI) {}
181 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
313 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
LCSSA.cpp 144 SmallVector<PHINode *, 4> InsertedPHIs;
145 SSAUpdater SSAUpdate(&InsertedPHIs);
254 for (PHINode *InsertedPN : InsertedPHIs) {
Local.cpp 1606 SmallVectorImpl<PHINode *> &InsertedPHIs) {
1608 if (InsertedPHIs.size() == 0)
1635 for (auto PHI : InsertedPHIs) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemorySSAUpdater.h 62 SmallVector<WeakVH, 16> InsertedPHIs;

Completed in 93 milliseconds