HomeSort by: relevance | last modified time | path
    Searched refs:LiveValues (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
DeadArgumentElimination.h 113 LiveSet LiveValues;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 356 /// MarkIfNotLive - This checks Use for liveness in LiveValues. If Use is not
482 // any callers use the return value. This fills in the LiveValues set and Uses
703 LiveValues.insert(RA);
711 return LiveFunctions.count(RA.F) || LiveValues.count(RA);
732 // that are not in LiveValues. Transform the function and all of the callees of
761 if (LiveValues.erase(Arg)) {
808 if (LiveValues.erase(Ret)) {
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IRBuilder.cpp 633 SmallVector<Value*, 16> LiveValues;
634 llvm::append_range(LiveValues, GCArgs);
635 Rval.emplace_back("gc-live", LiveValues);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 4286 SmallPtrSet<Instruction*, 4> LiveValues;
4312 // Update LiveValues.
4313 LiveValues.erase(PrevInst);
4316 LiveValues.insert(cast<Instruction>(&*J));
4320 dbgs() << "SLP: #LV: " << LiveValues.size();
4321 for (auto *X : LiveValues)
4349 for (auto *II : LiveValues) {

Completed in 29 milliseconds