Searched defs:SSAUpdater (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdater.h1 //===-- 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 { class in namespace:llvm
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 alread
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp1 //===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===//
10 // This file implements the SSAUpdater class.
28 #include "llvm/Transforms/Utils/SSAUpdater.h"
38 SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode*> *NewPHI) function in class:SSAUpdater
41 SSAUpdater::~SSAUpdater() {
47 void SSAUpdater::Initialize(Type *Ty, StringRef Name) {
56 /// HasValueForBlock - Return true if the SSAUpdater already has a value for
58 bool SSAUpdater
[all...]

Completed in 54 milliseconds