| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| State.cpp | 95 unsigned Limit = getCtx().getDiagnostics().getConstexprBacktraceLimit(); 96 if (Limit) 97 CallStackNotes = std::min(CallStackNotes, Limit + 1); 107 addCallStack(Limit); 117 void State::addCallStack(unsigned Limit) { 121 if (Limit && Limit < ActiveCalls) { 122 SkipStart = Limit / 2 + Limit % 2; 123 SkipEnd = ActiveCalls - Limit / 2 [all...] |
| State.h | 122 void addCallStack(unsigned Limit);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| GCNHazardRecognizer.h | 69 int getWaitStatesSince(IsHazardFn IsHazard, int Limit); 70 int getWaitStatesSinceDef(unsigned Reg, IsHazardFn IsHazardDef, int Limit); 71 int getWaitStatesSinceSetReg(IsHazardFn IsHazard, int Limit);
|
| SIMachineFunctionInfo.h | 939 void limitOccupancy(unsigned Limit) { 940 if (Occupancy > Limit) 941 Occupancy = Limit; 944 void increaseOccupancy(const MachineFunction &MF, unsigned Limit) { 945 if (Occupancy < Limit) 946 Occupancy = Limit;
|
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| UnwrappedLineFormatter.cpp | 221 unsigned Limit = 223 // If we already exceed the column limit, we set 'Limit' to 0. The different 225 Limit = TheLine->Last->TotalLength > Limit 227 : Limit - TheLine->Last->TotalLength; 233 return tryMergeSimpleBlock(I, E, Limit); 246 ? tryMergeSimpleBlock(I, E, Limit) 254 ? tryMergeSimpleBlock(I, E, Limit) 279 I[i + 1]->Last->TotalLength < Limit; [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/CrossTU/ |
| CrossTranslationUnit.h | 258 /// Maintain number of AST loads and check for reaching the load limit. 261 ASTLoadGuard(unsigned Limit) : Limit(Limit) {} 265 operator bool() const { return Count < Limit; } 273 /// The limit (threshold) value for number of loaded ASTs. 274 const unsigned Limit; 329 /// Limit the number of loaded ASTs. It is used to limit the memory usage
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| Threading.h | 162 bool Limit = false; 228 S.Limit = true; 240 /// A value of 0 means there is no limit.
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| NativeEnumInjectedSources.cpp | 20 Expected<std::string> readStreamData(BinaryStream &Stream, uint32_t Limit) { 21 uint32_t Offset = 0, DataLength = std::min(Limit, Stream.getLength());
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| xxhash.cpp | 79 const unsigned char *const Limit = BEnd - 32; 94 } while (P <= Limit);
|
| Threading.cpp | 93 if (!Limit)
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LoopPredication.cpp | 237 /// icmp Pred, <induction variable>, <loop invariant limit> 241 const SCEV *Limit; 243 const SCEV *Limit) 244 : Pred(Pred), IV(IV), Limit(Limit) {} 248 << ", Limit = " << *Limit << "\n"; 448 auto *Limit = dyn_cast<SCEVConstant>(LatchCheck.Limit); 450 if (!Limit || !Start [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZSelectionDAGInfo.cpp | 205 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length); 207 Limit, Src, Char); 244 // Search from Src for a null character, stopping once Src reaches Limit. 248 // This can be used for strlen by setting Limit to 0. 252 SDValue Limit) { 256 Limit, Src, DAG.getConstant(0, DL, MVT::i32)); 274 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength); 275 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| InterferenceCache.cpp | 191 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; 193 i != e && RegMaskSlots[i] < Limit; ++i) 248 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start; 250 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
|
| SpillPlacement.cpp | 343 unsigned Limit = bundles->getNumBundles() * 10; 344 while(Limit-- > 0 && !TodoList.empty()) {
|
| RegisterPressure.cpp | 972 // Only consider change beyond the limit. 973 unsigned Limit = RCI->getRegPressureSetLimit(i); 975 Limit += LiveThruPressureVec[i]; 977 if (Limit > POld) { 978 if (Limit > PNew) 979 PDiff = 0; // Under the limit 981 PDiff = PNew - Limit; // Just exceeded limit. 982 } else if (Limit > PNew) 983 PDiff = Limit - POld; // Just obeyed limit [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyClassLayoutGraphicalDumper.cpp | 143 uint32_t Limit = opts::pretty::ClassRecursionDepth; 144 if (Limit == 0) 146 return RecursionLevel < Limit;
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| CloneDetection.cpp | 420 const StmtSequence &Seq, std::size_t Limit, 450 StmtSequence(S, Seq.getContainingDecl()), Limit, MacroStack); 451 if (Complexity >= Limit) 452 return Limit; 457 StmtSequence(S, Seq.getContainingDecl()), Limit, MacroStack); 458 if (Complexity >= Limit) 459 return Limit;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| MemoryDependenceAnalysis.h | 383 /// Some methods limit the number of instructions they will examine. 384 /// The return value of this method is the default limit that will be 385 /// used if no limit is explicitly passed in. 447 /// annotated to the query instruction to refine the result. \p Limit 451 /// in, the limit will default to the value of -memdep-block-scan-limit. 458 unsigned *Limit = nullptr); 464 unsigned *Limit, 470 Instruction *QueryInst, unsigned *Limit,
|
| /src/sys/external/bsd/acpica/dist/tools/acpibin/ |
| abcompare.c | 121 const UINT8 *Limit; 130 Limit = (UINT8 *) Buffer + Length; 132 for (Rover = Buffer; Rover < Limit; Rover++)
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| CodeViewRecordIO.cpp | 19 RecordLimit Limit; 20 Limit.MaxLength = MaxLength; 21 Limit.BeginOffset = getCurrentOffset(); 22 Limits.push_back(Limit);
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| CFG.cpp | 22 // two basic blocks. This is kept reasonably small to limit compile time when 164 unsigned Limit = DefaultMaxBBsToExplore; 190 if (!--Limit) {
|
| MemoryDependenceAnalysis.cpp | 79 // Limit for the number of instructions to scan in a block. 82 "memdep-block-scan-limit", cl::Hidden, cl::init(100), 87 BlockNumberLimit("memdep-block-number-limit", cl::Hidden, cl::init(1000), 91 // Limit on the number of memdep results to process. 192 unsigned Limit = getDefaultBlockScanLimit(); 197 // Debug intrinsics don't cause dependences and should not affect Limit 201 // Limit the amount of scanning we do so we don't end up with quadratic 203 --Limit; 204 if (!Limit) 248 BasicBlock *BB, Instruction *QueryInst, unsigned *Limit, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMFrameLowering.cpp | 1612 /// frames and return the stack size limit beyond which some of these 1622 unsigned Limit = (1 << 12) - 1; 1634 Limit = std::min(Limit, (1U << 8) - 1); 1651 // Default 12 bit limit. 1655 Limit = std::min(Limit, (1U << 8) - 1); 1658 Limit = std::min(Limit, ((1U << 8) - 1) * 2); 1663 Limit = std::min(Limit, ((1U << 8) - 1) * 4) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| ubsan_diag.cc | 244 const uptr Limit = (uptr)-1; 245 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
|
| /src/external/gpl3/gcc/dist/libsanitizer/ubsan/ |
| ubsan_diag.cpp | 257 const uptr Limit = (uptr)-1; 258 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
|