Searched defs:AvailableVals (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h63 AvailableValsTy *AvailableVals; member in class:llvm::SSAUpdaterImpl
75 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
77 /// GetValue - Check to see if AvailableVals has an entry for the specified
88 (*AvailableVals)[BB] = V;
138 ValT PredVal = AvailableVals->lookup(Pred);
246 (*AvailableVals)[Pred->BB] = Pred->AvailableVal;
338 (*AvailableVals)[Info->BB] = PHI;
351 (*AvailableVals)[Info->BB] = Info->DefBB->AvailableVal;
444 /// the BBMap and the AvailableVals mapping.
451 (*AvailableVals)[B
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h52 AvailableValsTy *AvailableVals; member in class:llvm::SSAUpdaterImpl
64 Updater(U), AvailableVals(A), InsertedPHIs(Ins) { }
66 /// GetValue - Check to see if AvailableVals has an entry for the specified
77 (*AvailableVals)[BB] = V;
127 ValT PredVal = AvailableVals->lookup(Pred);
235 (*AvailableVals)[Pred->BB] = Pred->AvailableVal;
327 (*AvailableVals)[Info->BB] = PHI;
340 (*AvailableVals)[Info->BB] = Info->DefBB->AvailableVal;
433 /// PHIs in both the BBMap and the AvailableVals mapping.
441 (*AvailableVals)[B
[all...]
/external/llvm/lib/CodeGen/
H A DMachineSSAUpdater.cpp135 /// In this case, there are two values (X1 and X2) added to the AvailableVals
344 /// GetValueAtEndOfBlockInternal - Check to see if AvailableVals has an entry
349 AvailableValsTy &AvailableVals = getAvailableVals(AV); local
350 if (unsigned V = AvailableVals[BB])
353 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineSSAUpdater.cpp134 /// In this case, there are two values (X1 and X2) added to the AvailableVals
238 AvailableValsTy &AvailableVals = getAvailableVals(AV); local
240 I = AvailableVals.begin(), E = AvailableVals.end(); I != E; ++I)
361 /// GetValueAtEndOfBlockInternal - Check to see if AvailableVals has an entry
366 AvailableValsTy &AvailableVals = getAvailableVals(AV); local
367 if (unsigned V = AvailableVals[BB])
370 SSAUpdaterImpl<MachineSSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSSAUpdater.cpp109 /// In this case, there are two values (X1 and X2) added to the AvailableVals
342 /// GetValueAtEndOfBlockInternal - Check to see if AvailableVals has an entry
347 AvailableValsTy &AvailableVals = getAvailableVals(AV); local
348 if (Value *V = AvailableVals[BB])
351 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp308 /// Check to see if AvailableVals has an entry for the specified BB and if so,
312 AvailableValsTy &AvailableVals = getAvailableVals(AV); local
313 if (Value *V = AvailableVals[BB])
316 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);

Completed in 136 milliseconds