| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DAGISelMatcherOpt.cpp | 45 if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext())) in ContractNodes() 50 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext())) in ContractNodes() 55 if (CheckSameMatcher *CS = dyn_cast<CheckSameMatcher>(MC->getNext())) in ContractNodes() 61 dyn_cast<CheckIntegerMatcher>(MC->getNext())) in ContractNodes() 65 if (auto *CCC = dyn_cast<CheckCondCodeMatcher>(MC->getNext())) in ContractNodes() 74 MC->setNext(MC->getNext()->takeNext()); in ContractNodes() 81 if (auto *MC = dyn_cast<MoveChildMatcher>(MP->getNext())) { in ContractNodes() 91 if (auto *RM = dyn_cast<RecordMatcher>(MS->getNext())) { in ContractNodes() 93 if (auto *MP = dyn_cast<MoveParentMatcher>(RM->getNext())) { in ContractNodes() 107 if (auto *CT = dyn_cast<CheckTypeMatcher>(RM->getNext())) { in ContractNodes() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | list.h | 40 T *getNext(T *X) const { return X->Next; } in getNext() function 65 T *getNext(T *X) const { in getNext() function 118 Current = this->getNext(Current); 178 for (T *I = First;; I = this->getNext(I)) { in checkConsistency() 184 CHECK_EQ(this->getNext(Last), nullptr); in checkConsistency() 194 using IntrusiveList<T>::getNext; 217 First = getNext(First); in pop_front() 228 setNext(X, getNext(Prev)); in insert() 239 DCHECK_EQ(getNext(Prev), X); in extract() 240 setNext(Prev, getNext(X)); in extract() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | EquivalenceClasses.h | 102 assert(getNext() == nullptr && "Already has a next pointer!"); in setNext() 114 assert(RHS.isLeader() && RHS.getNext() == nullptr && "Not a singleton!"); in ECValue() 120 const ECValue *getNext() const { in getNext() function 237 const ECValue *Next = Cur->getNext(); in erase() 248 while ((Next = Next->getNext())) { in erase() 254 while (Pre->getNext() != Cur) { in erase() 255 Pre = Pre->getNext(); in erase() 316 L2LV.Next = L2LV.getNext(); in unionSets() 357 Node = Node->getNext();
|
| H A D | ilist_node.h | 118 ilist_node_impl *getNext() { in getNext() function 119 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 126 const ilist_node_impl *getNext() const { in getNext() function 127 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 264 static ilist_node_impl<OptionsT> *getNext(ilist_node_impl<OptionsT> &N) { in getNext() function 265 return N.getNext(); in getNext() 276 getNext(const ilist_node_impl<OptionsT> &N) { in getNext() function 277 return N.getNext(); in getNext()
|
| H A D | ilist_iterator.h | 43 template <class T> static void increment(T *&I) { I = Access::getNext(*I); } 50 template <class T> static void decrement(T *&I) { I = Access::getNext(*I); } 183 NodePtr = IsReverse ? NodePtr->getNext() : NodePtr->getPrev(); 187 NodePtr = IsReverse ? NodePtr->getPrev() : NodePtr->getNext(); 339 NodePtr = IsReverse ? NodePtr->getNext() : NodePtr->getPrev(); 345 NodePtr = IsReverse ? NodePtr->getPrev() : NodePtr->getNext();
|
| H A D | ilist_node_base.h | 28 NodeBase *getNext() const { return Next; } in getNext() function 42 NodeBase *getNext() const { return Next; } in getNext() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 258 Token getNext(); 611 Token T = scanner.getNext(); in dumpTokens() 695 Token T = scanner.getNext(); in scanTokens() 913 Token Scanner::getNext() { in getNext() function in Scanner 1941 scanner->getNext(); in begin() 2012 Token Node::getNext() { in getNext() function in Node 2013 return Doc->getNext(); in getNext() 2270 getNext(); // skip TK_Key. in getKey() 2312 getNext(); // skip TK_Value. in getValue() 2346 getNext(); in increment() [all …]
|
| H A D | OptimizedStructLayout.cpp | 250 static Field *getNext(Field *Cur) { in performOptimizedStructLayout() function 284 for (auto I = Queue.Head; I; I = Queue.getNext(I)) { in performOptimizedStructLayout() 296 assert(Last ? Queue->getNext(Last) == Cur : Queue->Head == Cur); in performOptimizedStructLayout() 311 if (auto NewHead = Queue->getNext(Cur)) in performOptimizedStructLayout() 365 Last = Cur, Cur = Queue->getNext(Cur)) { in performOptimizedStructLayout()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachinePassRegistry.h | 60 MachinePassRegistryNode *getNext() const { return Next; } in getNext() function 93 R = R->getNext()) { in setDefault() 122 *I = (*I)->getNext(); in Remove() 149 Node; Node = Node->getNext()) { in initialize()
|
| H A D | RegAllocRegistry.h | 44 SubClass *getNext() const { in getNext() function 45 return static_cast<SubClass *>(MachinePassRegistryNode::getNext()); in getNext()
|
| H A D | SchedulerRegistry.h | 49 RegisterScheduler *getNext() const { in getNext() function 50 return (RegisterScheduler *)MachinePassRegistryNode::getNext(); in getNext()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbolFunc.cpp | 39 while (auto Child = DataChildren->getNext()) { in FunctionArgEnumerator() 59 std::unique_ptr<PDBSymbolData> getNext() override { in getNext() function in __anon036c2d8f0111::FunctionArgEnumerator 104 if (auto FirstLine = Lines->getNext()) { in getCompilandId()
|
| H A D | PDBContext.cpp | 56 auto LineInfo = LineNumbers->getNext(); in getLineInfoForAddress() 87 while (auto LineInfo = LineNumbers->getNext()) { in getLineInfoForAddressRange() 117 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress() 123 std::unique_ptr<IPDBLineNumber> Line = LineNumbers->getNext(); in getInliningInfoForAddress()
|
| H A D | PDBSymbolData.cpp | 35 if (auto FirstLine = Lines->getNext()) in getCompilandId() 48 while (auto Section = SecContribs->getNext()) { in getCompilandId()
|
| H A D | PDBSymbolTypeFunctionSig.cpp | 49 std::unique_ptr<PDBSymbol> getNext() override { in getNext() function in __anonb5d4328e0111::FunctionArgEnumerator 50 auto FunctionArgSymbol = Enumerator->getNext(); in getNext()
|
| H A D | PDBSymbolCompiland.cpp | 48 while (auto Env = Envs->getNext()) { in getSourceFileFullPath() 93 while (auto File = SrcFiles->getNext()) { in getSourceFileFullPath()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 181 while (auto table_up = enum_tables_up->getNext()) { in CalculateAbilities() 345 while (auto pdb_func_up = results_up->getNext()) { in ParseFunctions() 383 while (auto file = files->getNext()) { in ParseSupportFiles() 427 while (auto symbol_up = results_up->getNext()) { in ParseFunctionBlocksForPDBSymbol() 463 while (auto symbol = results->getNext()) { in ParseTypes() 524 while (auto result = results->getNext()) { in ParseVariablesForContext() 809 while (auto compiland = compilands->getNext()) { in ResolveSymbolContext() 908 while (auto symbol_up = result_up->getNext()) in GetMangledForPDBData() 976 if (auto first_line = lines->getNext()) { in ParseVariableForPDBData() 1099 while (auto result = results->getNext()) in ParseVariables() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | IPDBEnumChildren.h | 29 virtual ChildTypePtr getNext() = 0; 39 std::unique_ptr<ChildType> getNext() override { return nullptr; } in getNext() function
|
| H A D | ConcreteSymbolEnumerator.h | 39 std::unique_ptr<ChildType> getNext() override { in getNext() function 40 return unique_dyn_cast_or_null<ChildType>(Enumerator->getNext()); in getNext()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeCollection.h | 25 virtual std::optional<TypeIndex> getNext(TypeIndex Prev) = 0; 40 Next = getNext(N); in ForEachRecord()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeEnumTypes.cpp | 47 TI = Types.getNext(*TI); in NativeEnumTypes() 67 std::unique_ptr<PDBSymbol> NativeEnumTypes::getNext() { in getNext() function in NativeEnumTypes
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | TapiUniversal.h | 39 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function 88 Obj = Obj.getNext();
|
| H A D | Archive.h | 224 LLVM_ABI Expected<Child> getNext() const; 282 auto NextChild = C.getNext(); in inc() 307 LLVM_ABI Symbol getNext() const; 329 symbol = symbol.getNext();
|
| H A D | MachOUniversal.h | 59 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function 128 Obj = Obj.getNext();
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyCompilandDumper.cpp | 60 while (auto File = Files->getNext()) { in start() 75 while (auto Line = Lines->getNext()) { in start() 121 while (auto Child = ChildrenEnum->getNext()) in start()
|