HomeSort by relevance Sort by last modified time
    Searched refs:SSAUpdater (Results 1 - 9 of 9) 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...]
Android.mk 26 SSAUpdater.cpp \
LCSSA.cpp 39 #include "llvm/Transforms/Utils/SSAUpdater.h"
212 SSAUpdater SSAUpdate;
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 29 // the SSAUpdater to construct the appropriate SSA form for the value.
48 #include "llvm/Transforms/Utils/SSAUpdater.h"
504 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
507 SSAUpdater SSA(&NewPHIs);
541 // Now that we have inserted the instruction, inform SSAUpdater.
634 const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
795 // We use the SSAUpdater interface to insert phi nodes as required.
797 SSAUpdater SSA(&NewPHIs);
814 // If the SSAUpdater didn't use the load in the preheader, just zap it now.
LoopRotation.cpp 25 #include "llvm/Transforms/Utils/SSAUpdater.h"
105 SSAUpdater SSA;
131 // SSAUpdater can't handle a non-PHI use in the same block as an
150 // Anything else can be handled by SSAUpdater.
JumpThreading.cpp 25 #include "llvm/Transforms/Utils/SSAUpdater.h"
    [all...]
ScalarReplAggregates.cpp 41 #include "llvm/Transforms/Utils/SSAUpdater.h"
179 // SROA_SSAUp - SROA that uses SSAUpdater.
    [all...]
GVN.cpp 36 #include "llvm/Transforms/Utils/SSAUpdater.h"
    [all...]

Completed in 145 milliseconds