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

1 2

  /external/llvm/lib/CodeGen/
AllocationOrder.h 60 /// Limit'th register in the RegisterClassInfo allocation order.
62 /// This can produce more than Limit registers if there are hints.
63 unsigned nextWithDups(unsigned Limit) {
66 if (Pos < int(Limit))
InterferenceCache.cpp 165 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
167 i != e && RegMaskSlots[i] < Limit; ++i)
222 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
224 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
RegisterPressure.cpp 545 // Only consider change beyond the limit.
546 unsigned Limit = TRI->getRegPressureSetLimit(i);
547 if (Limit > POld) {
548 if (Limit > PNew)
549 PDiff = 0; // Under the limit
551 PDiff = PNew - Limit; // Just exceeded limit.
553 else if (Limit > PNew)
554 PDiff = Limit - POld; // Just obeyed limit
    [all...]
MachineLICM.cpp 13 // This pass does not attempt to throttle itself to limit register pressure.
95 // Register pressure "limit" per register class. If the pressure
96 // is higher than the limit, then it's considered high.
    [all...]
  /external/v8/src/
store-buffer.h 96 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); }
101 ASSERT(top <= Limit());
  /external/clang/lib/Format/
Format.cpp     [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 786 CodedInputStream::Limit limit = coded_input.PushLimit(8); local
788 // Read until we hit the limit.
798 coded_input.PopLimit(limit);
816 CodedInputStream::Limit limit1 = coded_input.PushLimit(8);
818 CodedInputStream::Limit limit2 = coded_input.PushLimit(4);
822 // Read until we hit limit2, the top and shortest limit.
849 // longer. In this case, the top limit is shortened to match the previous
850 // limit.
858 CodedInputStream::Limit limit1 = coded_input.PushLimit(4)
897 CodedInputStream::Limit limit = coded_input.PushLimit(4); local
912 CodedInputStream::Limit limit = coded_input.PushLimit(-1234); local
925 CodedInputStream::Limit limit = coded_input.PushLimit(-64); local
939 CodedInputStream::Limit limit = coded_input.PushLimit(INT_MAX); local
978 CodedInputStream::Limit limit = coded_input.PushLimit(16); local
    [all...]
coded_stream.h 106 // However, for practicality we set a limit at 64 bits. The maximum encoded
157 // successfully and the stream's byte limit.
275 // limit.
280 typedef int Limit;
282 // Places a limit on the number of bytes that the stream may read,
283 // starting from the current position. Once the stream hits this limit,
288 // shortest limit on the stack is always enforced, even if it is not the
289 // top limit.
293 Limit PushLimit(int byte_limit);
295 // Pops the last limit pushed by PushLimit(). The input must be the valu
    [all...]
coded_stream.cc 81 // The limit position is in the current buffer. We must adjust
90 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
95 Limit old_limit = current_limit_;
108 // limit was before the new requested limit, we continue to enforce the
109 // previous limit.
116 void CodedInputStream::PopLimit(Limit limit) {
117 // The limit passed in is actually the *old* limit, which we returned fro
    [all...]
  /external/llvm/lib/Target/ARM/
ARMLoadStoreOptimizer.cpp 461 unsigned Limit = ~0U;
463 // vldm / vstm limit are 32 for S variants, 16 for D variants.
468 Limit = 32;
471 Limit = 16;
474 Limit = 16;
477 Limit = 32;
488 // limit on the number of registers per instruction.
492 ((Count < Limit) && RegNum == PRegNum+1))) {
530 unsigned Bytes, unsigned Limit,
548 if (Bytes == 0 || (Limit && Bytes >= Limit)
    [all...]
ARMFrameLowering.cpp     [all...]
Thumb2SizeReduction.cpp 32 static cl::opt<int> ReduceLimit("t2-reduce-limit",
46 uint8_t Imm1Limit; // Limit of immediate field (bits)
47 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
649 unsigned Limit = (1 << Entry.Imm2Limit) - 1;
650 if (Imm > Limit)
734 unsigned Limit = ~0U;
736 Limit = (1 << Entry.Imm1Limit) - 1;
751 if (((unsigned)MO.getImm()) > Limit)
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 38 # ATTRIBUTE RP-Upstream-Speed-Limit 1 integer RoaringPenguin
41 # RP-Upstream-Speed-Limit, number 1, type integer and vendor RoaringPenguin.
87 ATTRIBUTE Port-Limit 62 integer
124 # Limit session traffic
125 ATTRIBUTE Session-Octets-Limit 227 integer
126 # What to assume as limit - 0 in+out, 1 in, 2 out, 3 max(in,out)
dictionary.microsoft 26 ATTRIBUTE MS-Link-Drop-Time-Limit 15 integer Microsoft
dictionary.ascend 17 ATTRIBUTE Ascend-Call-Attempt-Limit 123 integer
46 ATTRIBUTE Ascend-Multicast-Rate-Limit 152 integer
63 ATTRIBUTE Ascend-TS-Idle-Limit 169 integer
136 ATTRIBUTE Ascend-Idle-Limit 244 integer
137 ATTRIBUTE Ascend-Preempt-Limit 245 integer
  /external/clang/include/clang/Basic/
Diagnostic.h 181 unsigned ErrorLimit; // Cap of # errors emitted, 0 -> no limit.
183 // 0 -> no limit.
185 // backtrace stack, 0 -> no limit.
398 /// \brief Specify a limit for the number of errors we should
401 /// Zero disables the limit.
402 void setErrorLimit(unsigned Limit) { ErrorLimit = Limit; }
406 void setTemplateBacktraceLimit(unsigned Limit) {
407 TemplateBacktraceLimit = Limit;
418 void setConstexprBacktraceLimit(unsigned Limit) {
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 470 unsigned Limit = (1 << 16) - 1;
480 Limit = std::min(Limit, 0xfffu);
486 Limit = std::min(Limit, static_cast<unsigned>(MaxOffset));
493 return Limit;
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 49 // Limit for the number of instructions to scan in a block.
194 unsigned Limit = BlockScanLimit;
198 // Limit the amount of scanning we do so we don't end up with quadratic
200 --Limit;
201 if (!Limit)
364 unsigned Limit = BlockScanLimit;
374 // Limit the amount of scanning we do so we don't end up with quadratic
376 --Limit;
377 if (!Limit)
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 194 io::CodedInputStream::Limit limit = input->PushLimit(length);
205 input->PopLimit(limit);
wire_format_lite_inl.h 327 io::CodedInputStream::Limit limit = input->PushLimit(length);
333 input->PopLimit(limit);
361 io::CodedInputStream::Limit limit = input->PushLimit(length);
363 // Make sure that parsing stopped when the limit was hit, not at an endgroup
366 input->PopLimit(limit);
390 io::CodedInputStream::Limit limit = input->PushLimit(length);
392 // Make sure that parsing stopped when the limit was hit, not at an endgrou
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 385 /// getLimitedValue - If this value is smaller than the specified limit,
386 /// return it, otherwise return the limit value. This causes the value
387 /// to saturate to the limit.
388 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
389 return (getActiveBits() > 64 || getZExtValue() > Limit) ?
390 Limit : getZExtValue();
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 431 unsigned Limit = Diags.getTemplateBacktraceLimit();
432 if (Limit && Limit < ActiveTemplateInstantiations.size()) {
433 SkipStart = Limit / 2 + Limit % 2;
434 SkipEnd = ActiveTemplateInstantiations.size() - Limit / 2;
450 << unsigned(ActiveTemplateInstantiations.size() - Limit);
    [all...]
  /external/llvm/include/llvm/IR/
Constants.h 214 /// getLimitedValue - If the value is smaller than the specified limit,
215 /// return it, otherwise return the limit value. This causes the value
216 /// to saturate to the limit.
218 /// @brief Get the constant's value with a saturation limit
219 uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
220 return Val.getLimitedValue(Limit);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 442 void addCallStack(unsigned Limit);
454 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit();
455 if (Limit)
456 CallStackNotes = std::min(CallStackNotes, Limit + 1);
465 addCallStack(Limit);
623 void EvalInfo::addCallStack(unsigned Limit) {
627 if (Limit && Limit < ActiveCalls) {
628 SkipStart = Limit / 2 + Limit % 2
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp     [all...]

Completed in 510 milliseconds

1 2