HomeSort by relevance Sort by last modified time
    Searched refs:Depth (Results 26 - 50 of 78) sorted by null

12 3 4

  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 57 unsigned Depth = 0) const;
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 269 bool isDepthCurrent : 1; // True if Depth is current.
271 unsigned Depth; // Node depth.
288 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
302 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
315 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0),
360 /// getDepth - Return the depth of this node, which is the length of the
365 return Depth;
377 /// depth value, set it to be the new depth value. This als
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 142 bool is12Bit, unsigned Depth = 0);
183 bool is12Bit, unsigned Depth) {
187 if (Depth > 5)
227 if (MatchAddress(N.getNode()->getOperand(0), AM, is12Bit, Depth+1)) {
267 if (!MatchAddress(N.getNode()->getOperand(0), AM, is12Bit, Depth+1) &&
268 !MatchAddress(N.getNode()->getOperand(1), AM, is12Bit, Depth+1))
271 if (!MatchAddress(N.getNode()->getOperand(1), AM, is12Bit, Depth+1) &&
272 !MatchAddress(N.getNode()->getOperand(0), AM, is12Bit, Depth+1))
301 !MatchAddress(N.getOperand(0), AM, is12Bit, Depth+1) &&
  /external/llvm/lib/Analysis/
RegionPass.cpp 30 RGPassManager::RGPassManager(int Depth)
31 : FunctionPass(ID), PMDataManager(Depth) {
LoopPass.cpp 76 LPPassManager::LPPassManager(int Depth)
77 : FunctionPass(ID), PMDataManager(Depth) {
BasicAliasAnalysis.cpp 178 const TargetData &TD, unsigned Depth) {
181 // Limit our recursion depth.
182 if (Depth == 6) {
200 TD, Depth+1);
205 TD, Depth+1);
211 TD, Depth+1);
232 TD, Depth+1);
261 // Limit recursion depth to limit compile time in crazy cases.
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 311 unsigned Depth = 0;
314 if (Depth == 0 && *I == Target) return I;
315 if (Depth != 0 && *I == '}') Depth--;
328 Depth++;
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 200 /// fact that this node's depth just increased.
206 Depth = NewDepth;
236 PredSU->Depth + I->getLatency());
245 if (MaxPredDepth != Cur->Depth) {
247 Cur->Depth = MaxPredDepth;
301 dbgs() << " Depth : " << Depth << "\n";
374 << (isBottomUp ? "Height" : "Depth") << " value!\n";
ScoreboardHazardRecognizer.cpp 42 // Determine the maximum depth of any itinerary. This determines the
43 // depth of the scoreboard. We always make the scoreboard at least 1
74 DEBUG(dbgs() << "Using scoreboard hazard recognizer: Depth = "
87 unsigned last = Depth - 1;
136 "Scoreboard depth exceeded!");
137 // This stage was stalled beyond pipeline depth, so cannot conflict.
193 "Scoreboard depth exceeded!");
InlineSpiller.cpp 345 // Prefer to spill at a smaller loop depth.
346 unsigned Depth = Loops.getLoopDepth(MBB);
347 if (Depth < SpillDepth) {
348 DEBUG(dbgs() << " spill depth " << Depth << ": " << PrintReg(Reg)
353 SpillDepth = Depth;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
SelectionDAG.cpp 6280 printrWithDepth(dbgs(), G, depth); local
    [all...]
  /external/clang/include/clang/Sema/
Scope.h 97 /// Depth - This is the depth of this scope. The translation-unit scope has
98 /// depth 0.
99 unsigned short Depth;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
replace.h 247 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth() == 0)
307 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth()) {
417 size_t Depth() const {
  /external/clang/include/clang/Parse/
Parser.h 168 /// The "depth" of the template parameters currently being parsed.
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 47 explicit CGPassManager(int Depth)
48 : ModulePass(ID), PMDataManager(Depth) { }
  /external/llvm/lib/VMCore/
PassManager.cpp 170 explicit BBPassManager(int Depth)
171 : PMDataManager(Depth), FunctionPass(ID) {}
231 explicit FunctionPassManagerImpl(int Depth) :
232 Pass(PT_PassManager, ID), PMDataManager(Depth),
306 explicit MPPassManager(int Depth) :
307 Pass(PT_PassManager, ID), PMDataManager(Depth) { }
391 explicit PassManagerImpl(int Depth) :
392 Pass(PT_PassManager, ID), PMDataManager(Depth),
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLCollection08.js 79 (Depth-first traversal order).
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLCollection08.js 79 (Depth-first traversal order).
  /external/clang/lib/Frontend/
TextDiagnosticPrinter.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.h 166 unsigned Depth = 0) const;
  /external/clang/include/clang/AST/
DeclTemplate.h 96 /// \brief Get the depth of this template parameter list in the set of
99 /// The first template parameter list in a declaration will have depth 0,
100 /// the second template parameter list will have depth 1, etc.
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 200 unsigned Depth);
724 unsigned Depth) {
731 if (Depth > 5)
867 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
    [all...]
X86ISelLowering.h 578 unsigned Depth = 0) const;
583 unsigned Depth) const;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 630 /// \brief Retrieve the depth and index of a parameter pack.
708 unsigned Depth, Index;
709 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
710 if (TemplateArgs.hasTemplateArgument(Depth, Index)) {
711 Result = TemplateArgs(Depth, Index);
712 TemplateArgs.setArgument(Depth, Index, TemplateArgument());
727 unsigned Depth, Index;
728 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
729 TemplateArgs.setArgument(Depth, Index, Arg);
    [all...]

Completed in 4624 milliseconds

12 3 4