Searched refs:SSA (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdater.h1 //===-- SSAUpdater.h - Unstructured SSA Update Tool -------------*- C++ -*-===//
31 /// \brief Helper class for SSA formation on a set of values defined in
62 /// \brief Reset this object to get ready for a new set of SSA updates with
76 /// \brief Construct SSA form, materializing a value that is live at the end
80 /// \brief Construct SSA form, materializing a value that is live in the
125 /// \brief Helper class for promoting a collection of loads and stores into SSA
135 SSAUpdater &SSA; member in class:llvm::LoadAndStorePromoter
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp136 SSAUpdater SSA; local
149 SSA.Initialize(OrigHeaderVal->getType(), OrigHeaderVal->getName());
150 SSA.AddAvailableValue(OrigHeader, OrigHeaderVal);
151 SSA.AddAvailableValue(OrigPreheader, OrigPreHeaderVal);
182 SSA.RewriteUse(U);
H A DLICM.cpp29 // the SSAUpdater to construct the appropriate SSA form for the value.
158 /// this function moves it to the exit blocks and patches up SSA form as
197 /// SSA.
572 /// this function moves it to the exit blocks and patches up SSA form as needed.
735 // the SSA updater about the defs in the loop and the preheader
739 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
897 SSAUpdater SSA(&NewPHIs);
898 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
909 SSA.AddAvailableValue(Preheader, PreheaderLoad);
H A DScalarReplAggregates.cpp14 // alloca instructions into nice clean scalar SSA form.
1430 SSAUpdater SSA; local
1437 AllocaPromoter(Insts, SSA, &DIB).run(AI, Insts);
H A DSROA.cpp21 /// serving the purpose of SSA formation. The algorithm iterates on the
74 STATISTIC(NumPromoted, "Number of allocas promoted to SSA values");
80 /// forming SSA values through the SSAUpdater infrastructure.
906 /// don't escape) and tries to turn them into scalar SSA values. There are
913 /// 2) It will transform accesses into forms which are suitable for SSA value
920 /// SSA vector values.
1564 /// \brief Generic routine to convert an SSA value to a value of a different
1695 /// SSA value. We only can ensure this for a limited set of operations, and we
3100 /// to rewrite uses of an alloca partition to be conducive for SSA value
3546 SSAUpdater SSA; local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp1 //===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===//
308 /// return it. If not, construct SSA form by first calculating the required
325 SSAUpdater &S, StringRef BaseName) : SSA(S) {
336 SSA.Initialize(SomeVal->getType(), BaseName);
373 SSA.AddAvailableValue(BB, SI->getOperand(0));
435 SSA.AddAvailableValue(BB, StoredValue);
443 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli664 the symbol name. For instructions and basic blocks, it is the SSA register

Completed in 203 milliseconds