HomeSort by relevance Sort by last modified time
    Searched full:unroll (Results 126 - 150 of 543) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 1 //===- llvm/Analysis/LoopUnrollAnalyzer.h - Loop Unroll Analyzer-*- C++ -*-===//
33 // If we completely unroll the loop, we would get:
  /art/test/656-checker-simd-opt/src/
Main.java 22 /// CHECK-START: void Main.unroll(float[], float[]) loop_optimization (before)
29 /// CHECK-START-ARM64: void Main.unroll(float[], float[]) loop_optimization (after)
43 private static void unroll(float[] x, float[] y) { method in class:Main
87 unroll(x, y); method
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorExecutor.h 62 // Give the compiler a strong hint to unroll the loop. But don't insist
64 // unroll the loop at the expense of inlining.
113 // Give the compiler a strong hint to unroll the loop. But don't insist
115 // unroll the loop at the expense of inlining.
  /external/llvm/lib/Target/Hexagon/
HexagonTargetTransformInfo.cpp 30 // The Hexagon target can unroll loops with run-time trip counts.
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 42 #define DEBUG_TYPE "loop-unroll"
49 UnrollRuntimeEpilog("unroll-runtime-epilog", cl::init(true), cl::Hidden,
174 /// Unroll the given loop by Count. The loop must be in LCSSA form. Returns true
194 /// loops require a unroll "prologue" that runs "RuntimeTripCount % Count"
196 /// runtime-unroll the loop if computing RuntimeTripCount will be expensive and
210 DEBUG(dbgs() << " Can't unroll; loop preheader-insertion failed.\n");
216 DEBUG(dbgs() << " Can't unroll; loop exit-block-insertion failed.\n");
222 DEBUG(dbgs() << " Can't unroll; Loop body cannot be cloned.\n");
232 " Can't unroll; loop not terminated by a conditional branch.\n");
239 " Won't unroll loop: address of header block is taken.\n")
    [all...]
  /external/llvm/test/Bitcode/
upgrade-loop-metadata.ll 36 !2 = metadata !{metadata !"llvm.vectorizer.unroll", i32 4}
  /external/llvm/test/CodeGen/NVPTX/
nounroll.ll 37 !1 = !{!"llvm.loop.unroll.disable"}
  /external/llvm/test/Transforms/LoopUnroll/
2012-04-09-unroll-indirectbr.ll 1 ; RUN: opt < %s -S -loop-unroll -simplifycfg | FileCheck %s
unroll-cleanup.ll 2 ; The test is to check redundency produced by loop unroll pass
6 ; After loop unroll:
85 !1 = !{!"llvm.loop.unroll.count", i32 2}
scevunroll.ll 1 ; RUN: opt < %s -S -indvars -loop-unroll -verify-loop-info | FileCheck %s
8 ; Completely unroll loops without a canonical IV.
98 ; SCEV should not unroll a multi-exit loops unless the latch block has
134 ; When loop unroll merges a loop exit with one of its parent loop's
174 ; rdar:14036816 loop-unroll makes assumptions about undefined behavior
  /external/llvm/test/Transforms/LoopUnroll/AMDGPU/
unroll-barrier.ll 1 ; RUN: opt -mtriple=amdgcn-unknown-amdhsa -mcpu=hawaii -loop-unroll -S < %s | FileCheck %s
  /external/swiftshader/third_party/LLVM/test/Transforms/LoopUnroll/
scevunroll.ll 1 ; RUN: opt < %s -S -indvars -loop-unroll -verify-loop-info | FileCheck %s
8 ; Completely unroll loops without a canonical IV.
98 ; SCEV should not unroll a multi-exit loops unless the latch block has
134 ; When loop unroll merges a loop exit with one of its parent loop's
  /external/clang/test/CodeGenCXX/
pragma-loop-safety.cpp 10 #pragma clang loop vectorize(assume_safety) interleave(disable) unroll(disable)
33 #pragma clang loop interleave(assume_safety) vectorize(disable) unroll(disable)
52 // CHECK: ![[UNROLL_DISABLE]] = !{!"llvm.loop.unroll.disable"}
  /external/llvm/test/Transforms/BBVectorize/X86/
loop1.ll 4 ; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7 -basicaa -loop-unroll -unroll-threshold=45 -unroll-allow-partial -bb-vectorize -bb-vectorize-req-chain-depth=3 -instcombine -gvn -S | FileCheck %s -check-prefix=CHECK-UNRL
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LoopUnroll.cpp 19 #define DEBUG_TYPE "loop-unroll"
112 /// Unroll the given loop by Count. The loop must be in LCSSA form. Returns true
141 DEBUG(dbgs() << " Can't unroll; loop preheader-insertion failed.\n");
147 DEBUG(dbgs() << " Can't unroll; loop exit-block-insertion failed.\n");
157 " Can't unroll; loop not terminated by a conditional branch.\n");
164 " Won't unroll loop: address of header block is taken.\n");
335 // For a complete unroll, make the last iteration end with a branch
  /external/pdfium/third_party/libtiff/
tif_swab.c 78 /* XXX unroll loop some */
94 /* XXX unroll loop some */
110 /* XXX unroll loop some */
127 /* XXX unroll loop some */
158 /* XXX unroll loop some */
189 /* XXX unroll loop some */
  /external/llvm/test/Transforms/LoopVectorize/X86/
vectorization-remarks-profitable.ll 10 ; #pragma clang loop interleave(disable) unroll(disable)
16 ; #pragma clang loop unroll(disable)
102 !18 = !{!"llvm.loop.unroll.disable"}
  /external/webrtc/webrtc/common_audio/signal_processing/
downsample_fast_neon.c 38 // First part, unroll the loop 8 times, with 3 subcases
48 // Unroll the loop 2 times.
116 // Unroll the loop 4 times.

Completed in 790 milliseconds

1 2 3 4 56 7 8 91011>>