HomeSort by relevance Sort by last modified time
    Searched defs:LICM (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
licm.h 27 class LICM : public HOptimization {
29 LICM(HGraph* graph, const SideEffectsAnalysis& side_effects, OptimizingCompilerStats* stats)
35 static constexpr const char* kLoopInvariantCodeMotionPassName = "licm";
40 DISALLOW_COPY_AND_ASSIGN(LICM);
  /external/swiftshader/src/Reactor/
Nucleus.hpp 36 LICM = 3,
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LICM.cpp 1 //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
33 #define DEBUG_TYPE "licm"
63 DisablePromotion("disable-licm-promotion", cl::Hidden,
64 cl::desc("Disable memory promotion in LICM pass"));
67 struct LICM : public LoopPass {
69 LICM() : LoopPass(ID) {
175 char LICM::ID = 0;
176 INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
181 INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 1 //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
33 #include "llvm/Transforms/Scalar/LICM.h"
71 #define DEBUG_TYPE "licm"
80 DisablePromotion("disable-licm-promotion", cl::Hidden,
81 cl::desc("Disable memory promotion in LICM pass"));
135 return LICM.runOnLoop(L,
155 assert(LICM.getLoopToAliasSetMap().empty() &&
161 LoopInvariantCodeMotion LICM;
186 assert((AA && LI && DT && TLI && SE) && "Analyses for LICM not available");
188 LoopInvariantCodeMotion LICM;
    [all...]

Completed in 407 milliseconds