Home
last modified time | relevance | path

Searched refs:Threshold (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp99 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) { in INITIALIZE_PASS_DEPENDENCY()
100 return new LoopUnroll(Threshold, Count, AllowPartial); in INITIALIZE_PASS_DEPENDENCY()
133 unsigned Threshold = CurrentThreshold; in runOnLoop() local
136 Threshold = OptSizeUnrollThreshold; in runOnLoop()
154 if (Threshold != NoThreshold) { in runOnLoop()
163 if (TripCount != 1 && Size > Threshold) { in runOnLoop()
165 << " because size: " << Size << ">" << Threshold << "\n"); in runOnLoop()
172 Count = Threshold / LoopSize; in runOnLoop()
DScalar.cpp151 int Threshold) { in LLVMAddScalarReplAggregatesPassWithThreshold() argument
152 unwrap(PM)->add(createScalarReplAggregatesPass(Threshold)); in LLVMAddScalarReplAggregatesPassWithThreshold()
DTailDuplication.cpp99 unsigned Threshold) { in shouldEliminateUnconditionalBranch() argument
127 if (Size == Threshold) return false; // The block is too large. in shouldEliminateUnconditionalBranch()
DLoopUnswitch.cpp63 Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"), variable
450 if (Metrics.NumInsts > Threshold || in UnswitchIfProfitable()
451 Metrics.NumBlocks * 5 > Threshold || in UnswitchIfProfitable()
DJumpThreading.cpp44 Threshold("jump-threading-threshold", variable
1324 if (JumpThreadCost > Threshold) { in ThreadEdge()
1469 if (DuplicationCost > Threshold) { in DuplicateCondBranchOnPHIIntoPred()
DScalarReplAggregates.cpp208 FunctionPass *llvm::createScalarReplAggregatesPass(int Threshold, in INITIALIZE_PASS_DEPENDENCY()
211 return new SROA_DT(Threshold); in INITIALIZE_PASS_DEPENDENCY()
212 return new SROA_SSAUp(Threshold); in INITIALIZE_PASS_DEPENDENCY()
/external/llvm/lib/Transforms/IPO/
DInlineSimple.cpp39 SimpleInliner(int Threshold) : Inliner(ID, Threshold) { in SimpleInliner() argument
71 Pass *llvm::createFunctionInliningPass(int Threshold) { in createFunctionInliningPass() argument
72 return new SimpleInliner(Threshold); in createFunctionInliningPass()
DInliner.cpp53 Inliner::Inliner(char &ID, int Threshold) in Inliner() argument
55 InlineLimit : Threshold) {} in Inliner()
/external/llvm/lib/Analysis/
DCaptureTracking.cpp37 static int const Threshold = 20; variable
49 SmallVector<Use*, Threshold> Worklist; in PointerMayBeCaptured()
50 SmallSet<Use*, Threshold> Visited; in PointerMayBeCaptured()
57 if (Count++ >= Threshold) in PointerMayBeCaptured()
/external/clang/lib/CodeGen/
DBackendUtil.cpp151 unsigned Threshold = 225; in CreatePasses() local
153 Threshold = 75; in CreatePasses()
155 Threshold = 25; in CreatePasses()
157 Threshold = 275; in CreatePasses()
158 PMBuilder.Inliner = createFunctionInliningPass(Threshold); in CreatePasses()
/external/llvm/include/llvm/Transforms/
DScalar.h76 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
131 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1, int AllowPartial = -1);
DIPO.h98 Pass *createFunctionInliningPass(int Threshold);
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h135 uint32_t Threshold = 1U << (NumBits-1); in EmitVBR() local
138 while (Val >= Threshold) { in EmitVBR()
150 uint64_t Threshold = 1U << (NumBits-1); in EmitVBR64() local
153 while (Val >= Threshold) { in EmitVBR64()
/external/llvm/include/llvm/Transforms/IPO/
DInlinerPass.h34 explicit Inliner(char &ID, int Threshold);
/external/llvm/include/llvm-c/Transforms/
DScalar.h87 int Threshold);
/external/llvm/tools/opt/
Dopt.cpp416 unsigned Threshold = 225; in AddOptimizationPasses() local
418 Threshold = 275; in AddOptimizationPasses()
419 Builder.Inliner = createFunctionInliningPass(Threshold); in AddOptimizationPasses()
/external/chromium/base/
Dmime_util_xdg.cc97 Threshold enumerator
101 type(Threshold), in SubDirInfo()
304 current_info->type = SubDirInfo::Threshold; in LoadIndexTheme()
/external/ppp/pppd/plugins/radius/etc/
Ddictionary.microsoft25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft
/external/chromium/chrome/browser/userfeedback/proto/
Dconfig.proto127 // Threshold for number of feedbacks in a cluster at which notification is sent.
/external/llvm/lib/Target/ARM/
DThumb1RegisterInfo.cpp225 unsigned Threshold = (DestReg == ARM::SP) ? 3 : 2; in emitThumbRegPlusImmediate() local
226 if (NumMIs > Threshold) { in emitThumbRegPlusImmediate()
/external/llvm/lib/CodeGen/
DRegisterCoalescer.cpp933 unsigned Threshold = RegClassInfo.getNumAllocatableRegs(RC) * 2; in shouldJoinPhys() local
935 if (Length > Threshold) { in shouldJoinPhys()
/external/pcre/
DCMakeLists.txt109 "Threshold for malloc() usage. See POSIX_MALLOC_THRESHOLD in config.h.in for details.")
/external/mesa3d/src/mesa/main/
Dmtypes.h1030 GLfloat Threshold; /**< GL_EXT_point_parameters */ member
/external/oprofile/events/ppc64/power4/
Devents439 … counters:1 um:zero minimum:1000 name:PM_THRESH_TIMEO_GRP43 : (Group 43 pm_mark1) Threshold timeout
539 …nters:1 um:zero minimum:1000 name:PM_THRESH_TIMEO_GRP53 : (Group 53 pm_threshold) Threshold timeout
/external/wpa_supplicant/
Dwpa_supplicant.conf.orig140 # Threshold for reauthentication (percentage of PMK lifetime); default 70

12