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

  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 50 unsigned NumPreds; // Number of predecessor blocks.
51 BBInfo **Preds; // Array[NumPreds] of predecessor blocks.
56 NumPreds(0), Preds(0), PHITag(0) { }
116 Info->NumPreds = Preds.size();
117 if (Info->NumPreds == 0)
121 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*),
124 for (unsigned p = 0; p != Info->NumPreds; ++p) {
237 for (unsigned p = 0; p != Info->NumPreds; ++p) {
295 for (unsigned p = 0; p != Info->NumPreds; ++p) {
333 ValT PHI = Traits::CreateEmptyPHI(Info->BB, Info->NumPreds, Updater)
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 248 unsigned NumPreds; // # of SDep::Data preds.
282 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
296 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
309 NodeQueueId(0), NumPreds(0), NumSuccs(0), NumPredsLeft(0),
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 77 assert(NumPreds < UINT_MAX && "NumPreds will overflow!");
79 ++NumPreds;
124 assert(NumPreds > 0 && "NumPreds will underflow!");
126 --NumPreds;
332 if (SUnits[i].NumPreds == 0 && SUnits[i].NumSuccs == 0) {
MachineSSAUpdater.cpp 311 static unsigned CreateEmptyPHI(MachineBasicBlock *BB, unsigned NumPreds,
IfConversion.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 423 unsigned NumPreds = OPN->getNumIncomingValues();
433 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
455 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
456 if (NumPreds != PN->getNumIncomingValues()) {
457 assert(NumPreds < PN->getNumIncomingValues());
SSAUpdater.cpp 276 /// vector, set Info->NumPreds, and allocate space in Info->Preds.
299 static Value *CreateEmptyPHI(BasicBlock *BB, unsigned NumPreds,
301 PHINode *PHI = PHINode::Create(Updater->ProtoType, NumPreds,
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 163 BType *const *Preds, unsigned NumPreds);
  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 535 if (ParallelLiveRanges >= SU->NumPreds)
536 ParallelLiveRanges -= SU->NumPreds;
ScheduleDAGRRList.cpp     [all...]
  /external/llvm/lib/Analysis/
ProfileInfo.cpp 444 unsigned NumPreds) {
450 DEBUG(dbgs() << "Splitting " << NumPreds << " Edges from " << BB->getName()
458 for (unsigned pred = 0; pred < NumPreds; ++pred) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 495 unsigned NumPreds = PN->getNumIncomingValues();
515 for (unsigned i = 0; i != NumPreds; ++i) {
555 if (NumPreds == 1) {
563 if (NumPreds != 1) {
    [all...]
JumpThreading.cpp 607 unsigned NumPreds = std::distance(pred_begin(TestBB), pred_end(TestBB));
608 if (NumPreds < MinNumPreds) {
610 MinNumPreds = NumPreds;
    [all...]

Completed in 410 milliseconds