HomeSort by relevance Sort by last modified time
    Searched full:peeling (Results 1 - 25 of 32) sorted by null

1 2

  /external/v8/src/compiler/
loop-peeling.h 14 // Represents the output of peeling a loop, which is basically the mapping
29 // Implements loop peeling.
loop-peeling.cc 7 #include "src/compiler/loop-peeling.h"
13 // Loop peeling is an optimization that copies the body of a loop, creating
104 struct Peeling {
110 Peeling(Graph* graph, Zone* tmp_zone, size_t max, NodeVector* p)
213 Peeling peeling(graph, tmp_zone, estimated_peeled_size, &iter->node_pairs_);
219 peeling.Insert(node, node->InputAt(kAssumedLoopEntryIndex));
223 peeling.CopyNodes(graph, tmp_zone, dead, loop_tree->BodyNodes(loop));
236 inputs.push_back(peeling.map(loop_node->InputAt(i)));
246 inputs.push_back(peeling.map(node->InputAt(1 + i)))
    [all...]
osr.h 74 // For nested OSR loops, loop peeling must first be applied as many times as
pipeline.cc 46 #include "src/compiler/loop-peeling.h"
756 static const char* phase_name() { return "stress loop peeling"; }
    [all...]
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 327 enum { Peeling = 2 };
361 Index peelingEnd = alignedStart + ((size-alignedStart)/(Peeling*PacketSize))*(Peeling*PacketSize);
362 for(Index i=alignedStart; i<peelingEnd; i+=Peeling*PacketSize)
372 px += Peeling*PacketSize;
373 py += Peeling*PacketSize;
  /external/eigen/Eigen/src/SparseLU/
SparseLU_gemm_kernel.h 34 PM = 8, // peeling in M
61 Index actual_b_end1 = (actual_b/SM)*SM; // actual number of rows suitable for peeling
126 // process rows of A' - C' with aggressive vectorization and peeling
217 // agressive vectorization and peeling
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 104 bool PeelFirst : 1; // Peeling the first iteration will break dependence.
105 bool PeelLast : 1; // Peeling the last iteration will break the dependence.
169 /// isPeelFirst - Returns true if peeling the first iteration from
173 /// isPeelLast - Returns true if peeling the last iteration from
255 /// isPeelFirst - Returns true if peeling the first iteration from
259 /// isPeelLast - Returns true if peeling the last iteration from
308 /// Sometimes, peeling the first or last iteration of a loop will break
697 /// If loop peeling will break the dependence, mark appropriately.
715 /// If loop peeling will break the dependence, mark appropriately.
    [all...]
  /external/llvm/test/Transforms/Inline/
noinline-recursive-fn.ll 2 ; This effectively is just peeling off the first iteration of a loop, and the
  /external/mesa3d/docs/
relnotes-6.5.3.html 73 <li>Fixed a number of bugs that prevented "depth-peeling" rendering from working.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfgloop.h 29 /* Structure to hold decision about unrolling/peeling. */
117 /* For loop unrolling/peeling decision. */
308 a complete peeling. */
708 UAP_PEEL = 1, /* Enables loop peeling. */
tree-pass.h 547 directly in jump threading, and avoid peeling them next time. */
params.def 268 This limit should be at most half of the peeling limits: loop unroller
    [all...]
target.def 980 /* Return true if vector alignment is reachable (by peeling N
    [all...]
  /external/eigen/unsupported/Eigen/
MPRealSupport 134 // Specialize GEBP kernel and traits for mpreal (no need for peeling, nor complicated stuff)
  /external/llvm/lib/Analysis/
CodeMetrics.cpp 129 // basically just a form of loop peeling, and our metrics aren't useful
DependenceAnalysis.cpp 265 // Returns true if peeling the first iteration from this loop
273 // Returns true if peeling the last iteration from this loop
    [all...]
  /external/v8/test/unittests/
unittests.gyp 74 'compiler/loop-peeling-unittest.cc',
  /external/v8/test/unittests/compiler/
loop-peeling-unittest.cc 9 #include "src/compiler/loop-peeling.h"
  /external/libvorbis/doc/
01-introduction.tex 60 extensively in bitrate management in peeling. Both the transport
  /external/v8/
Android.v8common.mk 102 src/compiler/loop-peeling.cc \
BUILD.gn 817 "src/compiler/loop-peeling.cc",
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 315 // function, we could end up infinitely peeling the function argument.
    [all...]
  /external/v8/src/
flag-definitions.h 464 "stress loop peeling optimization")
    [all...]
  /external/v8/tools/gyp/
v8.gyp 586 '../../src/compiler/loop-peeling.cc',
587 '../../src/compiler/loop-peeling.h',
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-i960.c 871 The other thing to observe is that we parse from the right, peeling
    [all...]

Completed in 789 milliseconds

1 2