HomeSort by relevance Sort by last modified time
    Searched defs:Limit (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/CodeGen/
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 597 // Only consider change beyond the limit.
598 unsigned Limit = TRI->getRegPressureSetLimit(i);
599 if (Limit > POld) {
600 if (Limit > PNew)
601 PDiff = 0; // Under the limit
603 PDiff = PNew - Limit; // Just exceeded limit.
605 else if (Limit > PNew)
606 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...]
MachineScheduler.cpp 339 /// List of pressure sets that exceed the target's pressure limit before
567 unsigned Limit = TRI->getRegPressureSetLimit(i);
568 if (RegionPressure[i] > Limit)
    [all...]
  /external/v8/src/
store-buffer.h 96 Object*** Limit() { return reinterpret_cast<Object***>(old_limit_); }
101 ASSERT(top <= Limit());
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 192 unsigned Limit = TRI->getRegPressureSetLimit(i);
194 << "Limit " << Limit
196 if (RegionPressure[i] > Limit)
596 // Check the instruction group dispatch limit.
  /external/protobuf/src/google/protobuf/io/
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...]
  /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)
356 unsigned Limit = BlockScanLimit;
360 // Limit the amount of scanning we do so we don't end up with quadratic
362 --Limit;
363 if (!Limit)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp     [all...]
Thumb2SizeReduction.cpp 31 static cl::opt<int> ReduceLimit("t2-reduce-limit",
45 uint8_t Imm1Limit; // Limit of immediate field (bits)
46 uint8_t Imm2Limit; // Limit of immediate field when it's two-address
632 unsigned Limit = (1 << Entry.Imm2Limit) - 1;
633 if (Imm > Limit)
711 unsigned Limit = ~0U;
713 Limit = (1 << Entry.Imm1Limit) - 1;
728 if (((unsigned)MO.getImm()) > Limit)
    [all...]
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...]
  /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/lib/Transforms/IPO/
GlobalOpt.cpp 316 unsigned Limit = 20;
341 if (--Limit == 0) return true;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 437 void addCallStack(unsigned Limit);
449 unsigned Limit = Ctx.getDiagnostics().getConstexprBacktraceLimit();
450 if (Limit)
451 CallStackNotes = std::min(CallStackNotes, Limit + 1);
460 addCallStack(Limit);
614 void EvalInfo::addCallStack(unsigned Limit) {
618 if (Limit && Limit < ActiveCalls) {
619 SkipStart = Limit / 2 + Limit % 2
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 

Completed in 328 milliseconds