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.
30 /// SSAUpdater - This class updates SSA form for a set of values defined in
34 class SSAUpdater {
35 friend class SSAUpdaterTraits<SSAUpdater>;
49 /// InsertedPHIs - If this is non-null, the SSAUpdater adds all PHI nodes that
54 /// SSAUpdater constructor. If InsertedPHIs is specified, it will be filled
56 explicit SSAUpdater(SmallVectorImpl<PHINode*> *InsertedPHIs = 0);
57 ~SSAUpdater();
67 /// HasValueForBlock - Return true if the SSAUpdater already has a value fo
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 1 //===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===//
10 // This file implements the SSAUpdater class.
14 #define DEBUG_TYPE "ssaupdater"
28 #include "llvm/Transforms/Utils/SSAUpdater.h"
38 SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode*> *NewPHI)
41 SSAUpdater::~SSAUpdater() {
47 void SSAUpdater::Initialize(Type *Ty, StringRef Name) {
56 /// HasValueForBlock - Return true if the SSAUpdater already has a value fo
    [all...]

Completed in 5761 milliseconds