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.
31 /// SSAUpdater - This class updates SSA form for a set of values defined in
35 class SSAUpdater {
36 friend class SSAUpdaterTraits<SSAUpdater>;
50 /// InsertedPHIs - If this is non-null, the SSAUpdater adds all PHI nodes that
55 /// SSAUpdater constructor. If InsertedPHIs is specified, it will be filled
57 explicit SSAUpdater(SmallVectorImpl<PHINode*> *InsertedPHIs = 0);
58 ~SSAUpdater();
68 /// 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"
15 #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 32 milliseconds