Searched refs:SSA (Results 1 - 6 of 6) sorted by relevance
/external/llvm/include/llvm/Transforms/Utils/ |
H A D | SSAUpdater.h | 1 //===-- SSAUpdater.h - Unstructured SSA Update Tool -------------*- C++ -*-===// 32 /// \brief Helper class for SSA formation on a set of values defined in 63 /// \brief Reset this object to get ready for a new set of SSA updates with 77 /// \brief Construct SSA form, materializing a value that is live at the end 81 /// \brief Construct SSA form, materializing a value that is live in the 126 /// \brief Helper class for promoting a collection of loads and stores into SSA 136 SSAUpdater &SSA; member in class:llvm::LoadAndStorePromoter
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SSAUpdater.cpp | 1 //===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===// 309 /// return it. If not, construct SSA form by first calculating the required 326 SSAUpdater &S, StringRef BaseName) : SSA(S) { 337 SSA.Initialize(SomeVal->getType(), BaseName); 371 SSA.AddAvailableValue(BB, SI->getOperand(0)); 433 SSA.AddAvailableValue(BB, StoredValue); 440 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | LoopRotation.cpp | 63 SSAUpdater SSA; local 76 SSA.Initialize(OrigHeaderVal->getType(), OrigHeaderVal->getName()); 77 SSA.AddAvailableValue(OrigHeader, OrigHeaderVal); 78 SSA.AddAvailableValue(OrigPreheader, OrigPreHeaderVal); 109 SSA.RewriteUse(U);
|
H A D | LICM.cpp | 29 // the SSAUpdater to construct the appropriate SSA form for the value. 599 /// function moves it to the exit blocks and patches up SSA form as needed. 793 // the SSA updater about the defs in the loop and the preheader 797 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock); 910 // preheader for SSA updater, so also avoid sinking when no preheader 975 SSAUpdater SSA(&NewPHIs); 976 LoopPromoter Promoter(SomePtr, LoopUses, SSA, 988 SSA.AddAvailableValue(Preheader, PreheaderLoad);
|
H A D | ScalarReplAggregates.cpp | 14 // alloca instructions into nice clean scalar SSA form. 1441 SSAUpdater SSA; local 1448 AllocaPromoter(Insts, SSA, &DIB).run(AI, Insts);
|
/external/llvm/bindings/ocaml/llvm/ |
H A D | llvm.mli | 681 the symbol name. For instructions and basic blocks, it is the SSA register
|
Completed in 370 milliseconds