HomeSort by relevance Sort by last modified time
    Searched full:licm (Results 76 - 100 of 143) sorted by null

1 2 34 5 6

  /external/llvm/test/Transforms/LICM/
hoisting.ll 1 ; RUN: opt < %s -licm -S | FileCheck %s
7 ; This testcase tests for a problem where LICM hoists
2007-05-22-VolatileSink.ll 1 ; RUN: opt < %s -licm -S | grep "store volatile"
crash.ll 1 ; RUN: opt -licm -disable-output < %s
lcssa-ssa-promoter.ll 1 ; RUN: opt -S -basicaa -licm < %s | FileCheck %s
volatile-alias.ll 1 ; RUN: opt -basicaa -sroa -loop-rotate -licm -S < %s | FileCheck %s
debug-value.ll 1 ; RUN: opt -licm -basicaa < %s -S | FileCheck %s
scalar_promote.ll 1 ; RUN: opt < %s -basicaa -tbaa -licm -S | FileCheck %s
  /external/llvm/utils/
findoptdiff 73 all_switches="-verify -lowersetjmp -simplifycfg -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -prune-eh -inline -simplify-libcalls -argpromotion -tailduplicate -simplifycfg -scalarrepl -instcombine -predsimplify -condprop -tailcallelim -simplifycfg -reassociate -licm -loop-unswitch -instcombine -indvars -loop-unroll -instcombine -load-vn -gcse -sccp -instcombine -condprop -dse -dce -simplifycfg -deadtypeelim -constmerge -internalize -ipsccp -globalopt -constmerge -deadargelim -inline -prune-eh -globalopt -globaldce -argpromotion -instcombine -predsimplify -scalarrepl -globalsmodref-aa -licm -load-vn -gcse -dse -instcombine -simplifycfg -verify"
  /external/llvm/test/CodeGen/Mips/
atomic.ll 1 ; RUN: llc -march=mipsel --disable-machine-licm -mcpu=mips32 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS32-ANY -check-prefix=NO-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
2 ; RUN: llc -march=mipsel --disable-machine-licm -mcpu=mips32r2 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS32-ANY -check-prefix=HAS-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
3 ; RUN: llc -march=mipsel --disable-machine-licm -mcpu=mips32r6 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS32-ANY -check-prefix=HAS-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
4 ; RUN: llc -march=mips64el --disable-machine-licm -mcpu=mips4 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS64-ANY -check-prefix=NO-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
5 ; RUN: llc -march=mips64el --disable-machine-licm -mcpu=mips64 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS64-ANY -check-prefix=NO-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
6 ; RUN: llc -march=mips64el --disable-machine-licm -mcpu=mips64r2 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS64-ANY -check-prefix=HAS-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
7 ; RUN: llc -march=mips64el --disable-machine-licm -mcpu=mips64r6 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS64-ANY -check-prefix=HAS-SEB-SEH -check-prefix=CHECK-EL -check-prefix=NOT-MICROMIPS
8 ; RUN: llc -march=mipsel --disable-machine-licm -mcpu=mips32r2 -mattr=micromips < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS32-ANY -check-prefix=HAS-SEB-SEH -check-prefix=CHECK-EL -check-prefix=MICROMIPS
12 ; RUN: llc -march=mips --disable-machine-licm -mcpu=mips32 < %s | FileCheck %s -check-prefix=ALL -check-prefix=MIPS32-ANY -check-prefix=NO-SEB-SEH -check-prefix=CHECK-EB -check-prefix=NOT-MICROMIPS
  /external/llvm/docs/HistoricalNotes/
2001-06-01-GCCOptimizations.txt 24 11. LICM
  /external/llvm/test/Analysis/ValueTracking/
pr24866.ll 1 ; RUN: opt -S %s -value-tracking-dom-conditions -licm -load-combine | FileCheck %s
  /external/llvm/test/CodeGen/X86/
2009-02-26-MachineLICMBug.ll 2 ; RUN: llc < %s -march=x86-64 -mattr=+sse3,+sse4.1 -mcpu=penryn -stats 2>&1 | grep "9 machine-licm"
  /external/llvm/test/Transforms/LoopRotate/
simplifylatch.ll 1 ; RUN: opt -S < %s -loop-rotate -licm -verify-dom-info -verify-loop-info | FileCheck %s
  /external/llvm/test/Transforms/LoopSimplify/
2003-08-15-PreheadersFail.ll 1 ; RUN: opt < %s -instcombine -simplifycfg -licm -disable-output
ashr-crash.ll 1 ; RUN: opt -basicaa -loop-rotate -licm -instcombine -indvars -loop-unroll -S %s | FileCheck %s
  /external/llvm/lib/CodeGen/
MachineLICM.cpp 14 // for the LLVM-IR-level LICM pass. It is only designed to hoist simple
41 #define DEBUG_TYPE "machine-licm"
87 bool FirstInLoop; // True if it's the first LICM in the loop.
278 DEBUG(dbgs() << "******** Pre-regalloc Machine LICM: ");
280 DEBUG(dbgs() << "******** Post-regalloc Machine LICM: ");
346 /// Examine the instruction for potentai LICM candidate. Also
420 // the loop, it cannot be a LICM candidate.
449 // collect potential LICM candidates.
461 // be LICM'ed.
687 // Now perform LICM
    [all...]
Passes.cpp 55 static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
56 cl::desc("Disable Machine LICM"));
62 static cl::opt<bool> DisablePostRAMachineLICM("disable-postra-machine-licm",
64 cl::desc("Disable Machine LICM"));
633 // loop info, just like LICM and CSE below.
771 // Perform stack slot coloring and post-ra machine LICM.
777 // Run post-ra machine LICM to hoist reloads / remats.
  /art/compiler/optimizing/
optimizing_compiler.cc 69 #include "licm.h"
520 LICM* licm = new (arena) LICM(graph, *side_effects, stats); local
549 licm,
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.cpp 310 // loop info, just like LICM and CSE below.
318 printAndVerify("After Machine LICM, CSE and Sinking passes");
  /external/llvm/test/Feature/
optnone-opt.ll 6 ; RUN: opt -indvars -licm -loop-deletion -loop-extract -loop-idiom -loop-instsimplify -loop-reduce -loop-reroll -loop-rotate -loop-unroll -loop-unswitch -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-LOOP
  /external/llvm/docs/
AliasAnalysis.rst 84 (LICM) pass can use store motion to remove the stores from the loop. In
281 example, the user can specify "``-basicaa -ds-aa -licm``" to get the maximum
417 The ``AliasSetTracker`` class (which is used by ``LICM``) makes a
624 The ``-licm`` pass
627 The ``-licm`` pass implements various Loop Invariant Code Motion related
687 % opt -basicaa -count-aa -ds-aa -count-aa -licm
690 ``-licm`` pass (of the ``-ds-aa`` pass) and how many queries are made of the
Lexicon.rst 138 **LICM**
  /external/llvm/test/CodeGen/Thumb2/
machine-licm.ll 83 ; isel should not fold immediate into eor's which would have prevented LICM.
  /external/llvm/test/Transforms/LoopDeletion/
2008-05-06-Phi.ll 1 ; RUN: opt < %s -inline -instcombine -jump-threading -licm -loop-unswitch -instcombine -indvars -loop-deletion -gvn -simplifycfg -verify -disable-output
  /external/llvm/test/Transforms/LoopUnswitch/
2012-04-30-LoopUnswitch-LPad-Crash.ll 1 ; RUN: opt < %s -basicaa -instcombine -inline -functionattrs -licm -loop-unswitch -gvn -verify

Completed in 3107 milliseconds

1 2 34 5 6