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

1 2

  /external/llvm/include/llvm/Analysis/
InlineCost.h 46 /// Objects of this type also provide the adjusted threshold for inlining
49 /// threshold for this cost metric.
59 /// \brief The adjusted threshold against which this cost was computed.
60 const int Threshold;
63 InlineCost(int Cost, int Threshold) : Cost(Cost), Threshold(Threshold) {}
66 static InlineCost get(int Cost, int Threshold) {
69 return InlineCost(Cost, Threshold);
80 return Cost < Threshold;
    [all...]
TargetTransformInfo.h 192 /// The cost threshold for the unrolled loop, compared to
197 unsigned Threshold;
198 /// The cost threshold for the unrolled loop when optimizing for size (set
201 /// The cost threshold for the unrolled loop, like Threshold, but used
204 /// The cost threshold for the unrolled loop when optimizing for size, like
211 /// threshold and other factors.
214 // using the appropriate cost threshold, but may not exceed this number
  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 45 SimpleInliner(int Threshold)
46 : Inliner(ID, Threshold, /*InsertLifetime*/ true), ICA(nullptr) {
83 Pass *llvm::createFunctionInliningPass(int Threshold) {
84 return new SimpleInliner(Threshold);
PassManagerBuilder.cpp 433 unsigned Threshold) {
435 Builder->Inliner = createFunctionInliningPass(Threshold);
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
CompLim.h 48 LVM_INT16 Threshold; /* Target threshold */
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 36 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
47 "-unroll-threshold loop size is reached."));
54 PragmaUnrollThreshold("pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
77 /// A magic value for use with the Threshold parameter to indicate
82 // Threshold to use when optsize is specified (and there is no
83 // explicit -unroll-threshold).
125 UP.Threshold = CurrentThreshold;
147 // Select threshold values used to limit unrolling based on a
148 // total unrolled size. Parameters Threshold and PartialThreshold
153 unsigned &Threshold, unsigned &PartialThreshold)
    [all...]
Scalar.cpp 164 int Threshold) {
165 unwrap(PM)->add(createScalarReplAggregatesPass(Threshold));
Reassociate.cpp 400 // Any weight W >= Threshold can be replaced with W - CM.
401 APInt Threshold = CM + Bitwidth;
402 assert(LHS.ult(Threshold) && RHS.ult(Threshold) && "Weights not reduced!");
405 while (LHS.uge(Threshold))
411 unsigned Threshold = CM + Bitwidth;
412 assert(LHS.getZExtValue() < Threshold && RHS.getZExtValue() < Threshold &&
415 while (Total >= Threshold)
    [all...]
JumpThreading.cpp 47 Threshold("jump-threading-threshold",
235 /// thread across it. Stop scanning the block when passing the threshold.
237 unsigned Threshold) {
249 // Stop scanning the block if we've reached the threshold.
250 if (Size > Threshold)
    [all...]
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 79 /// that path, and remove this threshold.
80 static int const Threshold = 20;
84 SmallVector<const Use *, Threshold> Worklist;
85 SmallSet<const Use *, Threshold> Visited;
91 if (Count++ >= Threshold)
152 if (Count++ >= Threshold)
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime);
50 /// This method returns the value specified by the -inline-threshold value,
55 /// Calculate the inline threshold for given Caller. This threshold is lower
56 /// if the caller is marked with OptimizeForSize and -inline-threshold is not
64 /// returned is greater than the current inline threshold, the call site is
  /external/llvm/lib/Target/X86/
X86PadShortFunction.cpp 54 , Threshold(4), TM(nullptr), TII(nullptr) {}
73 const unsigned int Threshold;
126 if (Cycles < Threshold) {
138 addPadding(MBB, ReturnLoc, Threshold - Cycles);
152 if (Cycles >= Threshold)
  /external/llvm/include/llvm/Transforms/
IPO.h 85 /// The Threshold can be passed directly, or asked to be computed from the
88 /// The -inline-threshold command line option takes precedence over the
89 /// threshold given here.
91 Pass *createFunctionInliningPass(int Threshold);
Scalar.h 86 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
144 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1,
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 64 unsigned Threshold);
Scalar.h 103 int Threshold);
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 67 value Threshold, value PMB) {
68 LLVMPassManagerBuilderSetOptLevel(PMBuilder_val(PMB), Int_val(Threshold));
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 55 int Threshold;
144 Function &Callee, int Threshold)
145 : DL(DL), TTI(TTI), F(Callee), Threshold(Threshold), Cost(0),
158 int getThreshold() { return Threshold; }
780 // out. Pretend to inline the function, with a custom threshold.
881 /// aborts early if the threshold has been exceeded or an impossible to inline
    [all...]
  /external/chromium_org/remoting/host/
audio_silence_detector_unittest.cc 36 // Check that silence threshold is between 0.5 and 2 seconds.
58 TEST(AudioSilenceDetectorTest, Threshold) {
  /external/llvm/lib/Target/R600/
AMDGPUTargetTransformInfo.cpp 114 // threshold. This will give SROA a better chance to eliminate these
119 UP.Threshold = 500;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
points.c 164 if (ctx->Point.Threshold == params[0])
167 ctx->Point.Threshold = params[0];
250 ctx->Point.Threshold = 1.0;
  /external/mesa3d/src/mesa/main/
points.c 164 if (ctx->Point.Threshold == params[0])
167 ctx->Point.Threshold = params[0];
250 ctx->Point.Threshold = 1.0;
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 64 static BlockFrequency Threshold;
67 /// Decision threshold. A node gets the output value 0 if the weighted sum of
68 /// its inputs falls in the open interval (-Threshold;Threshold).
69 static BlockFrequency getThreshold() { return Threshold; }
71 /// \brief Set the threshold for a given entry frequency.
73 /// Set the threshold relative to \c Entry. Since the threshold is used as a
74 /// bound on the open interval (-Threshold;Threshold), 1 is the minimu
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 159 uint32_t Threshold = 1U << (NumBits-1);
162 while (Val >= Threshold) {
175 uint32_t Threshold = 1U << (NumBits-1);
178 while (Val >= Threshold) {
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft

Completed in 242 milliseconds

1 2