HomeSort by relevance Sort by last modified time
    Searched defs:SSAUpdater (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdater.h 1 //===-- SSAUpdater.h - Unstructured SSA Update Tool -------------*- C++ -*-===//
10 // This file declares the SSAUpdater class.
37 class SSAUpdater {
38 friend class SSAUpdaterTraits<SSAUpdater>;
52 /// If this is non-null, the SSAUpdater adds all PHI nodes that it creates to
59 explicit SSAUpdater(SmallVectorImpl<PHINode*> *InsertedPHIs = nullptr);
60 ~SSAUpdater();
72 /// \brief Return true if the SSAUpdater already has a value for the specified
121 void operator=(const SSAUpdater&) LLVM_DELETED_FUNCTION;
122 SSAUpdater(const SSAUpdater&) LLVM_DELETED_FUNCTION
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 1 //===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===//
10 // This file implements the SSAUpdater class.
14 #include "llvm/Transforms/Utils/SSAUpdater.h"
30 #define DEBUG_TYPE "ssaupdater"
37 SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode*> *NewPHI)
40 SSAUpdater::~SSAUpdater() {
44 void SSAUpdater::Initialize(Type *Ty, StringRef Name) {
53 bool SSAUpdater::HasValueForBlock(BasicBlock *BB) const
    [all...]

Completed in 65 milliseconds