Searched refs:AvailableVals (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h62 AvailableValsTy *AvailableVals; member in class:llvm::SSAUpdaterImpl
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)[B
[all...]
/external/llvm/lib/CodeGen/
H A DMachineSSAUpdater.cpp136 /// 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); local
351 if (unsigned V = AvailableVals[BB])
354 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp307 /// Check to see if AvailableVals has an entry for the specified BB and if so,
311 AvailableValsTy &AvailableVals = getAvailableVals(AV); local
312 if (Value *V = AvailableVals[BB])
315 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);

Completed in 92 milliseconds