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

  /external/clang/lib/Analysis/
ThreadSafetyTIL.cpp 64 void BasicBlock::reservePredecessors(unsigned NumPreds) {
65 Predecessors.reserve(NumPreds, Arena);
68 Ph->values().reserve(NumPreds, Arena);
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 52 unsigned NumPreds; // Number of predecessor blocks.
53 BBInfo **Preds; // Array[NumPreds] of predecessor blocks.
58 IDom(nullptr), NumPreds(0), Preds(nullptr), PHITag(nullptr) {}
118 Info->NumPreds = Preds.size();
119 if (Info->NumPreds == 0)
123 (Allocator.Allocate(Info->NumPreds * sizeof(BBInfo*),
126 for (unsigned p = 0; p != Info->NumPreds; ++p) {
239 for (unsigned p = 0; p != Info->NumPreds; ++p) {
297 for (unsigned p = 0; p != Info->NumPreds; ++p) {
335 ValT PHI = Traits::CreateEmptyPHI(Info->BB, Info->NumPreds, Updater)
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGPrinter.cpp 44 return (Node->NumPreds > 10 || Node->NumSuccs > 10);
ScheduleDAG.cpp 99 assert(NumPreds < UINT_MAX && "NumPreds will overflow!");
101 ++NumPreds;
150 assert(NumPreds > 0 && "NumPreds will underflow!");
152 --NumPreds;
300 if (NumPreds < 2)
389 if (SUnits[i].NumPreds == 0 && SUnits[i].NumSuccs == 0) {
MachineSSAUpdater.cpp 297 static unsigned CreateEmptyPHI(MachineBasicBlock *BB, unsigned NumPreds,
IfConversion.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 279 unsigned NumPreds; // # of SDep::Data preds.
321 NodeNum(nodenum), NodeQueueId(0), NumPreds(0), NumSuccs(0),
337 NodeNum(nodenum), NodeQueueId(0), NumPreds(0), NumSuccs(0),
352 NodeNum(BoundaryID), NodeQueueId(0), NumPreds(0), NumSuccs(0),
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 480 unsigned NumPreds = OPN->getNumIncomingValues();
490 for (unsigned pred = 0, e = NumPreds; pred != e; ++pred) {
512 NumPreds = std::distance(pred_begin(NewBB), pred_end(NewBB));
513 if (NumPreds != PN->getNumIncomingValues()) {
514 assert(NumPreds < PN->getNumIncomingValues());
SSAUpdater.cpp 241 /// vector, set Info->NumPreds, and allocate space in Info->Preds.
264 static Value *CreateEmptyPHI(BasicBlock *BB, unsigned NumPreds,
266 PHINode *PHI = PHINode::Create(Updater->ProtoType, NumPreds,
  /external/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 535 if (ParallelLiveRanges >= SU->NumPreds)
536 ParallelLiveRanges -= SU->NumPreds;
ScheduleDAGRRList.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 499 unsigned NumPreds = PN->getNumIncomingValues();
513 NumPreds == 1 &&
534 for (unsigned i = 0; i != NumPreds; ++i) {
    [all...]
JumpThreading.cpp 632 unsigned NumPreds = std::distance(pred_begin(TestBB), pred_end(TestBB));
633 if (NumPreds < MinNumPreds) {
635 MinNumPreds = NumPreds;
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]

Completed in 496 milliseconds