Home
last modified time | relevance | path

Searched refs:Stack (Results 1 – 25 of 115) sorted by relevance

12345

/trueos/contrib/llvm/tools/clang/lib/Format/
HDContinuationIndenter.cpp76 State.Stack.push_back(ParenState(FirstIndent, Line->Level, FirstIndent, in getInitialState()
95 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace && in canBreak()
112 if (Current.isMemberAccess() && State.Stack.back().ContainsUnwrappedBuilder) in canBreak()
114 return !State.Stack.back().NoLineBreak; in canBreak()
122 if (State.Stack.back().BreakBeforeClosingBrace && in mustBreak()
133 State.Stack.back().BreakBeforeParameter && !Current.isTrailingComment() && in mustBreak()
137 State.Column > State.Stack.back().Indent && // Breaking saves columns. in mustBreak()
171 State.Stack.back().BreakBeforeParameter) in mustBreak()
176 if (Current.is(tok::lessless) && State.Stack.back().BreakBeforeParameter && in mustBreak()
177 State.Stack.back().FirstLessLess == 0) in mustBreak()
[all …]
HDContinuationIndenter.h276 std::vector<ParenState> Stack; member
320 return Stack < Other.Stack;
HDUnwrappedLineParser.cpp37 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack, in ScopedDeclarationState() argument
39 : Line(Line), Stack(Stack) { in ScopedDeclarationState()
41 Stack.push_back(MustBeDeclaration); in ScopedDeclarationState()
44 Stack.pop_back(); in ~ScopedDeclarationState()
45 if (!Stack.empty()) in ~ScopedDeclarationState()
46 Line.MustBeDeclaration = Stack.back(); in ~ScopedDeclarationState()
53 std::vector<bool> &Stack; member in clang::format::__anon10a066800111::ScopedDeclarationState
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaAttr.cpp48 stack_ty Stack; member in __anon18c99eb30111::PragmaPackStack
60 Stack.push_back(PSE); in push()
75 if (Stack.empty()) { in pop()
87 Alignment = Stack.back().Alignment; in pop()
88 Stack.pop_back(); in pop()
95 for (unsigned i = Stack.size(); i != 0; ) { in pop()
97 if (Stack[i].Name == Name) { in pop()
99 Alignment = Stack[i].Alignment; in pop()
100 Stack.erase(Stack.begin() + i, Stack.end()); in pop()
120 PragmaPackStack *Stack = static_cast<PragmaPackStack*>(PackContext); in AddAlignmentAttributesForRecord() local
[all …]
HDSemaOpenMP.cpp79 StackTy Stack; member in __anon135d97870111::DSAStackTy
86 explicit DSAStackTy(Sema &S) : Stack(1), Actions(S) { } in DSAStackTy()
90 Stack.push_back(SharingMapTy(DKind, DirName, CurScope)); in push()
94 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!"); in pop()
95 Stack.pop_back(); in pop()
117 return Stack.back().Directive; in getCurrentDirective()
121 void setDefaultDSANone() { Stack.back().DefaultAttr = DSA_none; } in setDefaultDSANone()
123 void setDefaultDSAShared() { Stack.back().DefaultAttr = DSA_shared; } in setDefaultDSAShared()
126 return Stack.back().DefaultAttr; in getDefaultDSA()
129 Scope *getCurScope() { return Stack.back().CurScope; } in getCurScope()
[all …]
/trueos/contrib/llvm/include/llvm/Support/
HDFileSystem.h899 std::stack<directory_iterator, std::vector<directory_iterator> > Stack; member
914 State->Stack.push(directory_iterator(path, ec)); in recursive_directory_iterator()
915 if (State->Stack.top() == directory_iterator()) in recursive_directory_iterator()
926 if ((ec = State->Stack.top()->status(st))) return *this; in increment()
928 State->Stack.push(directory_iterator(*State->Stack.top(), ec)); in increment()
930 if (State->Stack.top() != end_itr) { in increment()
934 State->Stack.pop(); in increment()
938 while (!State->Stack.empty() in increment()
939 && State->Stack.top().increment(ec) == end_itr) { in increment()
940 State->Stack.pop(); in increment()
[all …]
/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDCoreEngine.cpp44 SmallVector<WorkListUnit,20> Stack; member in __anon8e6cf5110111::DFS
47 return !Stack.empty(); in hasWork()
51 Stack.push_back(U); in enqueue()
55 assert (!Stack.empty()); in dequeue()
56 const WorkListUnit& U = Stack.back(); in dequeue()
57 Stack.pop_back(); // This technically "invalidates" U, but we are fine. in dequeue()
63 I = Stack.begin(), E = Stack.end(); I != E; ++I) { in visitItemsInWorkList()
110 SmallVector<WorkListUnit,20> Stack; member in __anon8e6cf5110211::BFSBlockDFSContents
113 return !Queue.empty() || !Stack.empty(); in hasWork()
120 Stack.push_back(U); in enqueue()
[all …]
/trueos/contrib/llvm/tools/clang/lib/Basic/
HDModule.cpp161 SmallVector<Module *, 2> Stack; in addRequirement() local
162 Stack.push_back(this); in addRequirement()
163 while (!Stack.empty()) { in addRequirement()
164 Module *Current = Stack.back(); in addRequirement()
165 Stack.pop_back(); in addRequirement()
175 Stack.push_back(*Sub); in addRequirement()
266 SmallVector<Module *, 16> Stack(Imports.begin(), Imports.end()); in buildVisibleModulesCache() local
267 while (!Stack.empty()) { in buildVisibleModulesCache()
268 Module *CurrModule = Stack.pop_back_val(); in buildVisibleModulesCache()
272 CurrModule->getExportedModules(Stack); in buildVisibleModulesCache()
/trueos/contrib/llvm/lib/Target/X86/
HDX86FloatingPoint.cpp58 memset(Stack, 0, sizeof(Stack)); in FPS()
135 unsigned Stack[8]; // FP<n> Registers in each stack slot... member
179 dbgs() << " FP" << Stack[i]; in dumpStack()
180 assert(RegMap[Stack[i]] == i && "Stack[] doesn't match RegMap[]!"); in dumpStack()
198 return Slot < StackTop && Stack[Slot] == RegNo; in isLive()
218 return Stack[StackTop-1-STi]; in getStackEntry()
232 Stack[StackTop] = Reg; in pushReg()
250 std::swap(Stack[RegMap[RegOnTop]], Stack[StackTop-1]); in moveToTop()
836 RegMap[Stack[--StackTop]] = ~0; // Update state in popStackAfter()
871 unsigned TopReg = Stack[StackTop-1]; in freeStackSlotBefore()
[all …]
/trueos/cddl/contrib/dtracetoolkit/Examples/
HDcrash_example.txt30 User Stack Backtrace,
47 Kernel Stack Backtrace,
67 Stack: 8192 bytes
/trueos/contrib/llvm/lib/Target/R600/
HDSIAnnotateControlFlow.cpp65 StackVector Stack; member in __anon14b6a5450111::SIAnnotateControlFlow
152 return !Stack.empty() && Stack.back().first == BB; in isTopOfStack()
157 return Stack.pop_back_val().second; in popSaved()
162 Stack.push_back(std::make_pair(BB, Saved)); in push()
324 assert(Stack.empty()); in runOnFunction()
/trueos/contrib/llvm/patches/
HDpatch-r263312-llvm-r196986-allow-realign-alloca.diff22 "Stack realignment in presence of dynamic allocas is not supported with"
28 - report_fatal_error("Stack realignment in presence of dynamic stack "
82 …; CHECK: Stack realignment in presence of dynamic stack adjustments is not supported with inline a…
97 …; CHECK: Stack realignment in presence of dynamic stack adjustments is not supported with inline a…
HDpatch-r263312-llvm-r169939-inline-asm-with-realign.diff24 +; CHECK: Stack realignment in presence of dynamic stack adjustments is not supported with inline a…
45 +; CHECK: Stack realignment in presence of dynamic stack adjustments is not supported with inline a…
119 +; Stack realignment plus MS inline asm that does *not* adjust the stack is no
222 "Stack realignment in presence of dynamic allocas is not supported with"
228 + report_fatal_error("Stack realignment in presence of dynamic stack "
/trueos/contrib/llvm/tools/clang/lib/AST/
HDCXXInheritance.cpp586 SmallVector<OverriddenMethods, 4> Stack; in Collect() local
587 Stack.push_back(std::make_pair(CanonM->begin_overridden_methods(), in Collect()
589 while (!Stack.empty()) { in Collect()
590 OverriddenMethods OverMethods = Stack.back(); in Collect()
591 Stack.pop_back(); in Collect()
616 Stack.push_back(std::make_pair(CanonOM->begin_overridden_methods(), in Collect()
HDNestedNameSpecifier.cpp565 SmallVector<NestedNameSpecifier *, 4> Stack; in MakeTrivial() local
567 Stack.push_back(NNS); in MakeTrivial()
568 while (!Stack.empty()) { in MakeTrivial()
569 NestedNameSpecifier *NNS = Stack.pop_back_val(); in MakeTrivial()
592 SaveSourceLocation(Stack.empty()? R.getEnd() : R.getBegin(), in MakeTrivial()
/trueos/contrib/llvm/tools/clang/lib/Frontend/
HDDiagnosticRenderer.cpp295 ModuleBuildStack Stack = SM.getModuleBuildStack(); in emitModuleBuildStack() local
296 for (unsigned I = 0, N = Stack.size(); I != N; ++I) { in emitModuleBuildStack()
297 const SourceManager &CurSM = Stack[I].second.getManager(); in emitModuleBuildStack()
298 SourceLocation CurLoc = Stack[I].second; in emitModuleBuildStack()
302 Stack[I].first, in emitModuleBuildStack()
/trueos/contrib/llvm/tools/clang/include/clang/Serialization/
HDModuleManager.h70 Stack.reserve(N); in VisitState()
79 SmallVector<ModuleFile *, 4> Stack; member
/trueos/contrib/llvm/lib/CodeGen/
HDMachineTraceMetrics.cpp788 SmallVector<const MachineBasicBlock*, 8> Stack; in computeInstrDepths() local
794 Stack.push_back(MBB); in computeInstrDepths()
807 while (!Stack.empty()) { in computeInstrDepths()
808 MBB = Stack.pop_back_val(); in computeInstrDepths()
986 SmallVector<const MachineBasicBlock*, 8> Stack; in computeInstrHeights() local
992 Stack.push_back(MBB); in computeInstrHeights()
1028 for (;!Stack.empty(); Stack.pop_back()) { in computeInstrHeights()
1029 MBB = Stack.back(); in computeInstrHeights()
1069 addLiveIns(Deps.front().DefMI, Deps.front().DefOp, Stack); in computeInstrHeights()
1102 addLiveIns(Deps[i].DefMI, Deps[i].DefOp, Stack); in computeInstrHeights()
/trueos/crypto/heimdal/lib/com_err/
HDparse.c385 # define YYSTACK_RELOCATE(Stack) \ argument
389 YYCOPY (&yyptr->Stack, Stack, yysize); \
390 Stack = &yyptr->Stack; \
391 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
/trueos/contrib/ofed/libsdp/src/
HDconfig_parser.c484 # define YYSTACK_RELOCATE(Stack) \ argument
488 YYCOPY (&yyptr->Stack, Stack, yysize); \
489 Stack = &yyptr->Stack; \
490 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
/trueos/contrib/llvm/tools/clang/lib/Serialization/
HDModuleManager.cpp328 State->Stack.push_back(*M); in visit()
333 if (State->Stack.empty()) in visit()
337 NextModule = State->Stack.pop_back_val(); in visit()
/trueos/contrib/tcsh/nls/greek/
HDset293 90 Stack limit exceeded
/trueos/contrib/gdb/gdb/
HDada-exp.c375 # define YYSTACK_RELOCATE(Stack) \ argument
379 YYCOPY (&yyptr->Stack, Stack, yysize); \
380 Stack = &yyptr->Stack; \
381 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
HDm2-exp.c365 # define YYSTACK_RELOCATE(Stack) \ argument
369 YYCOPY (&yyptr->Stack, Stack, yysize); \
370 Stack = &yyptr->Stack; \
371 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
HDf-exp.c344 # define YYSTACK_RELOCATE(Stack) \ argument
348 YYCOPY (&yyptr->Stack, Stack, yysize); \
349 Stack = &yyptr->Stack; \
350 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \

12345