| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| Scope.cpp | 34 Depth = parent->Depth + 1; 47 Depth = 0; 190 OS << "Depth: " << Depth << '\n';
|
| SemaTemplateVariadic.cpp | 684 // Compute the depth and index for this parameter pack. 685 unsigned Depth = 0, Index = 0; 691 Depth = TTP->getDepth(); 699 std::tie(Depth, Index) = getDepthAndIndex(ND); 723 // If we don't have a template argument at this depth/index, then we 726 if (Depth >= TemplateArgs.getNumLevels() || 727 !TemplateArgs.hasTemplateArgument(Depth, Index)) { 733 NewPackSize = TemplateArgs(Depth, Index).pack_size(); 745 if (PartialDepth == Depth && PartialIndex == Index) { 814 // Compute the depth and index for this parameter pack [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDebugInfoEntry.h | 27 /// The integer depth of this DIE within the compile unit DIEs where the 28 /// compile/type unit DIE has a depth of zero. 29 uint32_t Depth = 0; 44 uint32_t Depth); 47 uint32_t getDepth() const { return Depth; }
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblyDebugFixup.cpp | 13 /// track stack depth when values get stackified. 91 auto Depth = static_cast<unsigned>(&Elem - &Stack[0]); 93 << " -> Stack Relative " << Depth << "\n"); 94 MO.ChangeToTargetIndex(WebAssembly::TI_OPERAND_STACK, Depth); 107 // Track stack depth.
|
| WebAssemblyCFGStackify.cpp | 288 // We found a scope level at an appropriate depth. 512 // We found a scope level at an appropriate depth. 1586 unsigned Depth = 0; 1590 ++Depth; 1592 assert(Depth < Stack.size() && "Branch destination should be in scope"); 1593 return Depth; 1620 unsigned Depth = 0; 1625 ++Depth; 1627 assert(Depth < Stack.size() && "Delegate destination should be in scope"); 1628 return Depth; [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| prmacros.c | 287 UINT32 Depth = 1; 288 /*UINT32 Depth = 1;*/ 300 Depth++; 304 Depth--; 312 if (Depth == 0)
|
| dtcompiler.h | 132 UINT16 Depth;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| ScoreboardHazardRecognizer.h | 45 size_t Depth = 0; 57 size_t getDepth() const { return Depth; } 60 // Depth is expected to be a power-of-2. 61 assert(Depth && !(Depth & (Depth - 1)) && 64 return Data[(Head + idx) & (Depth-1)]; 69 Depth = d; 70 Data = new InstrStage::FuncUnits[Depth]; 73 memset(Data, 0, Depth * sizeof(Data[0])) [all...] |
| MachineTraceMetrics.h | 180 /// Returns true if the depth resources have been computed from the trace 188 /// Invalidate depth resources when some block above this one has changed. 211 // increase the instruction depth. 215 // Data-dependency-related information. Per-instruction depth and height 239 /// InstrCycles represents the cycle height and depth of an instruction in a 245 unsigned Depth; 271 /// Return the resource depth of the top/bottom of the trace center block. 273 /// the trace head to the trace center block. The resource depth only 295 /// Return the depth and height of MI. The depth is only valid fo [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/ |
| ASTDiff.h | 39 int Depth, Height, Shift = 0;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| WebAssemblyInstPrinter.cpp | 220 uint64_t Depth = MI->getOperand(0).getImm(); 221 if (Depth >= ControlFlowStack.size()) { 224 const auto &Pair = ControlFlowStack.rbegin()[Depth]; 253 uint64_t Depth = MI->getOperand(I).getImm(); 254 if (!Printed.insert(Depth).second) 256 if (Depth >= ControlFlowStack.size()) { 257 printAnnotation(OS, "Invalid depth argument!"); 259 const auto &Pair = ControlFlowStack.rbegin()[Depth]; 260 printAnnotation(OS, utostr(Depth) + ": " +
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| LegacyPassManagers.h | 298 explicit PMDataManager() : TPM(nullptr), Depth(0) { 367 unsigned getDepth() const { return Depth; } 368 void setDepth(unsigned newDepth) { Depth = newDepth; } 450 unsigned Depth;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineTraceMetrics.cpp | 239 // Check if depth resources for MBB are valid and return the TBI. 343 unsigned Depth = PredTBI->InstrDepth + CurCount; 344 if (!Best || Depth < BestDepth) { 346 BestDepth = Depth; 498 // The trace leading to I is now known, compute the depth resources. 552 // Invalidate depth resources of blocks below MBB. 559 << getName() << " depth.\n"); 596 "Trace is broken, depth should have been invalidated."); 618 // Compute the depth and height of each instruction based on data dependencies 754 /// 1. The maximum height+depth over all instructions in the trace center block [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/ |
| xray-account.cpp | 134 auto Depth = Bitfield::get<RecursionStatus::Depth>(Storage); 135 assert(Depth >= 0 && Depth < std::numeric_limits<decltype(Depth)>::max()); 136 ++Depth; 137 Bitfield::set<RecursionStatus::Depth>(Storage, Depth); // ++Storage 139 if (!isRecursive() && Depth == 2) // Storage == 2 / Storage s> 1 145 auto Depth = Bitfield::get<RecursionStatus::Depth>(Storage) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
| ItaniumDemangle.cpp | 66 unsigned Depth = 0; 93 ++Depth; 104 --Depth; 180 for (unsigned I = 0; I != Depth; ++I) 215 Depth += 2; 219 Depth -= 2; 223 Depth += 2; 233 Depth -= 2;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/ |
| BottleneckAnalysis.h | 227 unsigned Depth;
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbinput.c | 262 {1, " Namespace [Object] [Depth]", "Display loaded namespace tree/subtree\n"}, 265 {1, " Owner <OwnerId> [Depth]", "Display loaded namespace by object owner\n"}, 527 UINT32 Depth; 605 Depth = 1; 631 Depth++; /* A nested package declaration */ 635 Depth--; 636 if (Depth == 0) /* Found final package closing bracket */
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Scope.h | 154 /// Depth - This is the depth of this scope. The translation-unit scope has 155 /// depth 0. 156 unsigned short Depth; 282 /// Returns the depth of this scope. The translation-unit has scope depth 0. 283 unsigned getDepth() const { return Depth; } 486 /// Returns if rhs has a higher scope depth than this. 490 bool Contains(const Scope& rhs) const { return Depth < rhs.Depth; } [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Diagnostic.cpp | 568 unsigned Depth = 0; 571 if (Depth == 0 && *I == Target) return I; 572 if (Depth != 0 && *I == '}') Depth--; 585 Depth++;
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| VerifyDiagnosticConsumer.cpp | 227 unsigned Depth = 1; 232 ++Depth; 235 --Depth; 236 if (Depth == 0) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| RegionInfoImpl.h | 450 unsigned Depth = 0; 453 ++Depth; 455 return Depth;
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| GlobalsModRef.cpp | 637 int &Depth, 657 // arbitrary depth of 4, lower numbers could be used to fix compile time 660 if (++Depth > 4) 729 int Depth = 0; 768 // arbitrary depth of 4, lower numbers could be used to fix compile time 771 if (++Depth > 4) 778 if (isNonEscapingGlobalNoAliasWithLoad(GV, Ptr, Depth, DL))
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| DWARFUnit.cpp | 364 uint32_t Depth = 0; 368 Depth)) { 387 ++Depth; 390 if (Depth > 0) 391 --Depth; 392 if (Depth == 0) 714 const uint32_t Depth = Die->getDepth(); 715 // Unit DIEs always have a depth of zero and never have parents. 716 if (Depth == 0) 718 // Depth of 1 always means parent is the compile/type unit [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86CmovConversion.cpp | 27 /// depth cost by some threshold. 209 // * Calculate both loop-depth and optimized-loop-depth. 210 // * Use these depth to check for loop transformation profitability. 363 /// \returns Depth of CMOV instruction as if it was converted into branch. 364 /// \param TrueOpDepth depth cost of CMOV true value operand. 365 /// \param FalseOpDepth depth cost of CMOV false value operand. 367 // The depth of the result after branch conversion is 370 // the other, and pick the result with the largest resulting depth. 379 /// Depth of original loop [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| AsmMatcherEmitter.cpp | 291 int Depth = 0; 294 Depth++; 297 return Depth; 335 // Related tokens and user classes get sorted by depth in the inheritence
|