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

  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 62 AvailableValsTy *AvailableVals;
74 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
76 /// GetValue - Check to see if AvailableVals has an entry for the specified
87 (*AvailableVals)[BB] = V;
137 ValT PredVal = AvailableVals->lookup(Pred);
245 (*AvailableVals)[Pred->BB] = Pred->AvailableVal;
337 (*AvailableVals)[Info->BB] = PHI;
350 (*AvailableVals)[Info->BB] = Info->DefBB->AvailableVal;
443 /// the BBMap and the AvailableVals mapping.
450 (*AvailableVals)[BB] = PHIVal
    [all...]
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 136 /// In this case, there are two values (X1 and X2) added to the AvailableVals
345 /// GetValueAtEndOfBlockInternal - Check to see if AvailableVals has an entry
350 AvailableValsTy &AvailableVals = getAvailableVals(AV);
351 if (unsigned V = AvailableVals[BB])
354 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 307 /// Check to see if AvailableVals has an entry for the specified BB and if so,
311 AvailableValsTy &AvailableVals = getAvailableVals(AV);
312 if (Value *V = AvailableVals[BB])
315 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);

Completed in 303 milliseconds