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

  /external/llvm/include/llvm/CodeGen/
MachineSSAUpdater.h 49 /// InsertedPHIs - If this is non-null, the MachineSSAUpdater adds all PHI
51 SmallVectorImpl<MachineInstr*> *InsertedPHIs;
56 /// MachineSSAUpdater constructor. If InsertedPHIs is specified, it will be
59 SmallVectorImpl<MachineInstr*> *InsertedPHIs = nullptr);
  /external/swiftshader/third_party/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 55 SmallVectorImpl<PHINode*> *InsertedPHIs;
58 /// If InsertedPHIs is specified, it will be filled
60 explicit SSAUpdater(SmallVectorImpl<PHINode*> *InsertedPHIs = nullptr);
SSAUpdaterImpl.h 65 SmallVectorImpl<PhiT*> *InsertedPHIs;
75 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
373 if (InsertedPHIs) InsertedPHIs->push_back(PHI);
  /external/swiftshader/third_party/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 40 : AV(nullptr), InsertedPHIs(NewPHI) {
202 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
353 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
  /external/swiftshader/third_party/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(nullptr), ProtoType(nullptr), ProtoName(), InsertedPHIs(NewPHI) {}
172 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
316 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
  /external/swiftshader/third_party/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 196 milliseconds