HomeSort by relevance Sort by last modified time
    Searched refs:Threshold (Results 1 - 23 of 23) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 31 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
41 "-unroll-threshold loop size is reached."));
62 /// A magic value for use with the Threshold parameter to indicate
67 // Threshold to use when optsize is specified (and there is no
68 // explicit -unroll-threshold).
106 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) {
107 return new LoopUnroll(Threshold, Count, AllowPartial);
138 // Determine the current unrolling threshold. While this is normally set
140 // function is marked as optimize-for-size, and the unroll threshold was
142 unsigned Threshold = CurrentThreshold
    [all...]
Scalar.cpp 150 int Threshold) {
151 unwrap(PM)->add(createScalarReplAggregatesPass(Threshold));
LoopUnswitch.cpp 22 // smaller than a threshold.
63 Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"),
450 if (Metrics.NumInsts > Threshold ||
451 Metrics.NumBlocks * 5 > Threshold ||
    [all...]
JumpThreading.cpp 44 Threshold("jump-threading-threshold",
    [all...]
ScalarReplAggregates.cpp 211 FunctionPass *llvm::createScalarReplAggregatesPass(int Threshold,
214 return new SROA_DT(Threshold);
215 return new SROA_SSAUp(Threshold);
    [all...]
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 36 /// that path, and remove this threshold.
37 static int const Threshold = 20;
49 SmallVector<Use*, Threshold> Worklist;
50 SmallSet<Use*, Threshold> Visited;
57 if (Count++ >= Threshold)
  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 40 SimpleInliner(int Threshold) : Inliner(ID, Threshold) {
72 Pass *llvm::createFunctionInliningPass(int Threshold) {
73 return new SimpleInliner(Threshold);
PassManagerBuilder.cpp 314 unsigned Threshold) {
316 Builder->Inliner = createFunctionInliningPass(Threshold);
Inliner.cpp 40 InlineLimit("inline-threshold", cl::Hidden, cl::init(225), cl::ZeroOrMore,
44 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
45 cl::desc("Threshold for inlining functions with inline hint"));
47 // Threshold to use when optsize is specified (and there is no -inline-limit).
53 Inliner::Inliner(char &ID, int Threshold)
55 InlineLimit : Threshold) {}
207 // Listen to inlinehint when it would increase the threshold.
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
CompLim.h 48 LVM_INT16 Threshold; /* Target threshold */
  /external/llvm/include/llvm/Transforms/
Scalar.h 76 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
133 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1, int AllowPartial = -1);
IPO.h 88 /// The -inline-threshold command line option takes precedence over the
89 /// threshold given here.
91 Pass *createFunctionInliningPass(int Threshold);
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 34 explicit Inliner(char &ID, int Threshold);
49 /// This method returns the value specified by the -inline-threshold value,
54 /// Calculate the inline threshold for given Caller. This threshold is lower
55 /// if the caller is marked with OptimizeForSize and -inline-threshold is not
63 /// returned is greater than the current inline threshold, the call site is
69 // higher threshold to determine if the function call should be inlined.
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 58 unsigned Threshold);
Scalar.h 87 int Threshold);
  /external/clang/lib/CodeGen/
BackendUtil.cpp 155 unsigned Threshold = 225;
157 Threshold = 75;
159 Threshold = 25;
161 Threshold = 275;
162 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 135 uint32_t Threshold = 1U << (NumBits-1);
138 while (Val >= Threshold) {
150 uint64_t Threshold = 1U << (NumBits-1);
153 while (Val >= Threshold) {
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft
  /external/chromium/base/
mime_util_xdg.cc 97 Threshold
101 type(Threshold),
104 threshold(2) {
110 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:__anon2326::IconTheme::SubDirInfo
303 else if (value == "Threshold")
304 current_info->type = SubDirInfo::Threshold;
309 } else if (key == "Threshold") {
310 current_info->threshold = atoi(value.c_str());
337 if (size >= info->size - info->threshold &&
338 size <= info->size + info->threshold) {
    [all...]
  /external/llvm/tools/opt/
opt.cpp 416 unsigned Threshold = 225;
418 Threshold = 275;
419 Builder.Inliner = createFunctionInliningPass(Threshold);
  /external/llvm/lib/Target/ARM/
Thumb1RegisterInfo.cpp 224 unsigned Threshold = (DestReg == ARM::SP) ? 3 : 2;
225 if (NumMIs > Threshold) {
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 1030 GLfloat Threshold; /**< GL_EXT_point_parameters */
    [all...]

Completed in 337 milliseconds