Home
last modified time | relevance | path

Searched refs:Update (Results 1 – 25 of 162) sorted by relevance

1234567

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCFGUpdate.h28 template <typename NodePtr> class Update {
34 Update(UpdateKind Kind, NodePtr From, NodePtr To) in Update() function
40 bool operator==(const Update &RHS) const {
63 void LegalizeUpdates(ArrayRef<Update<NodePtr>> AllUpdates,
64 SmallVectorImpl<Update<NodePtr>> &Result,
107 llvm::sort(Result, [&](const Update<NodePtr> &A, const Update<NodePtr> &B) {
/llvm-project-15.0.7/llvm/unittests/IR/
H A DCFGBuilder.h66 struct Update { struct
72 std::vector<Update> Updates); argument
75 Optional<Update> getNextUpdate() const;
76 Optional<Update> applyUpdate();
88 std::vector<Update> Updates;
H A DDominatorTreeTest.cpp703 bool CompUpdates(const CFGBuilder::Update &A, const CFGBuilder::Update &B) { in CompUpdates()
725 Optional<CFGBuilder::Update> LastUpdate; in TEST()
779 Optional<CFGBuilder::Update> LastUpdate; in TEST()
820 std::vector<CFGBuilder::Update> Updates = { in TEST()
830 Optional<CFGBuilder::Update> LastUpdate; in TEST()
860 Optional<CFGBuilder::Update> LastUpdate; in TEST()
879 std::vector<CFGBuilder::Update> Updates = { in TEST()
887 Optional<CFGBuilder::Update> LastUpdate; in TEST()
913 Optional<CFGBuilder::Update> LastUpdate; in TEST()
943 Optional<CFGBuilder::Update> LastUpdate; in TEST()
[all …]
H A DDominatorTreeBatchUpdatesTest.cpp34 std::vector<CFGBuilder::Update> &In) { in ToDomUpdates()
136 std::vector<CFGBuilder::Update> CFGUpdates = {{CFGInsert, {"B", "C"}}, in TEST()
167 std::vector<CFGBuilder::Update> CFGUpdates = {{CFGDelete, {"B", "C"}}, in TEST()
198 std::vector<CFGBuilder::Update> Updates = { in TEST()
228 std::vector<CFGBuilder::Update> Updates = { in TEST()
269 std::vector<CFGBuilder::Update> Updates = { in TEST()
301 std::vector<CFGBuilder::Update> Updates = { in TEST()
332 std::vector<CFGBuilder::Update> Updates = { in TEST()
H A DCFGBuilder.cpp31 std::vector<Update> Updates) in CFGBuilder()
129 Optional<CFGBuilder::Update> CFGBuilder::getNextUpdate() const { in getNextUpdate()
135 Optional<CFGBuilder::Update> CFGBuilder::applyUpdate() { in applyUpdate()
138 Update NextUpdate = Updates[UpdateIdx++]; in applyUpdate()
187 std::vector<CFGBuilder::Update> Updates = { in TEST()
217 std::vector<CFGBuilder::Update> Updates = { in TEST()
252 std::vector<CFGBuilder::Update> Updates = { in TEST()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRegisterClassInfo.cpp43 bool Update = false; in runOnMachineFunction() local
52 Update = true; in runOnMachineFunction()
60 if (Update || CSR != CalleeSavedRegs) { in runOnMachineFunction()
68 Update = true; in runOnMachineFunction()
80 Update = true; in runOnMachineFunction()
89 Update = true; in runOnMachineFunction()
94 if (Update) { in runOnMachineFunction()
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxList.cpp116 bool Update() override;
145 bool Update() override;
158 bool Update() override;
167 bool AbstractListFrontEnd::Update() { in Update() function in AbstractListFrontEnd
244 Update(); in ForwardListFrontEnd()
291 bool ForwardListFrontEnd::Update() { in Update() function in ForwardListFrontEnd
292 AbstractListFrontEnd::Update(); in Update()
313 Update(); in ListFrontEnd()
403 bool ListFrontEnd::Update() { in Update() function in ListFrontEnd
404 AbstractListFrontEnd::Update(); in Update()
H A DLibStdcpp.cpp48 bool Update() override;
69 bool Update() override;
83 Update(); in LibstdcppMapIteratorSyntheticFrontEnd()
86 bool LibstdcppMapIteratorSyntheticFrontEnd::Update() { in Update() function in LibstdcppMapIteratorSyntheticFrontEnd
186 Update(); in VectorIteratorSyntheticFrontEnd()
189 bool VectorIteratorSyntheticFrontEnd::Update() { in Update() function in VectorIteratorSyntheticFrontEnd
356 Update(); in LibStdcppSharedPtrSyntheticFrontEnd()
373 bool LibStdcppSharedPtrSyntheticFrontEnd::Update() { return false; } in Update() function in LibStdcppSharedPtrSyntheticFrontEnd
H A DLibCxxQueue.cpp20 Update(); in QueueFrontEnd()
29 bool Update() override;
50 bool QueueFrontEnd::Update() { in Update() function in QueueFrontEnd
H A DLibCxxVector.cpp31 bool Update() override;
52 bool Update() override;
73 Update(); in LibcxxStdVectorSyntheticFrontEnd()
118 bool lldb_private::formatters::LibcxxStdVectorSyntheticFrontEnd::Update() { in Update() function in lldb_private::formatters::LibcxxStdVectorSyntheticFrontEnd
177 Update(); in LibcxxVectorBoolSyntheticFrontEnd()
245 bool lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd::Update() { in Update() function in lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd
H A DLibCxxTuple.cpp20 Update(); in TupleFrontEnd()
28 bool Update() override;
43 bool TupleFrontEnd::Update() { in Update() function in TupleFrontEnd
H A DLibStdcppTuple.cpp33 bool Update() override;
53 Update(); in LibStdcppTupleSyntheticFrontEnd()
56 bool LibStdcppTupleSyntheticFrontEnd::Update() { in Update() function in LibStdcppTupleSyntheticFrontEnd
H A DLibCxxInitializerList.cpp32 bool Update() override;
51 Update(); in LibcxxInitializerListSyntheticFrontEnd()
86 Update() { in Update() function in lldb_private::formatters::LibcxxInitializerListSyntheticFrontEnd
H A DGenericOptional.cpp47 bool Update() override;
60 Update(); in GenericOptionalFrontend()
64 bool GenericOptionalFrontend::Update() { in Update() function in GenericOptionalFrontend
H A DLibCxxSpan.cpp55 bool Update() override;
72 Update(); in LibcxxStdSpanSyntheticFrontEnd()
95 bool lldb_private::formatters::LibcxxStdSpanSyntheticFrontEnd::Update() { in Update() function in lldb_private::formatters::lldb_private::formatters::LibcxxStdSpanSyntheticFrontEnd
H A DLibCxx.h89 bool Update() override;
137 bool Update() override;
168 bool Update() override;
188 bool Update() override;
H A DLibStdcppUniquePointer.cpp33 bool Update() override;
59 Update(); in LibStdcppUniquePtrSyntheticFrontEnd()
89 bool LibStdcppUniquePtrSyntheticFrontEnd::Update() { in Update() function in LibStdcppUniquePtrSyntheticFrontEnd
H A DGenericBitset.cpp35 bool Update() override;
64 Update(); in GenericBitsetFrontEnd()
78 bool GenericBitsetFrontEnd::Update() { in Update() function in GenericBitsetFrontEnd
H A DLibCxxVariant.cpp173 Update(); in VariantFrontEnd()
181 bool Update() override;
190 bool VariantFrontEnd::Update() { in Update() function in VariantFrontEnd
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCAssembler.h109 unsigned Update; member
282 unsigned Update,
288 VersionInfo.Update = Update;
292 unsigned Minor, unsigned Update,
298 VersionInfo.Update = Update;
307 unsigned Update, in setDarwinTargetVariantBuildVersion() argument
313 DarwinTargetVariantVersionInfo.Update = Update; in setDarwinTargetVariantBuildVersion()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DDomTreeUpdater.cpp27 const DominatorTree::UpdateType Update) const { in isUpdateValid()
28 const auto *From = Update.getFrom(); in isUpdateValid()
29 const auto *To = Update.getTo(); in isUpdateValid()
30 const auto Kind = Update.getKind(); in isUpdateValid()
53 const DominatorTree::UpdateType Update) const { in isSelfDominance()
55 return Update.getFrom() == Update.getTo(); in isSelfDominance()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCMachOStreamer.cpp97 unsigned Update, VersionTuple SDKVersion) override;
99 unsigned Update, VersionTuple SDKVersion) override;
101 unsigned Minor, unsigned Update,
292 unsigned Minor, unsigned Update, in emitVersionMin() argument
294 getAssembler().setVersionMin(Kind, Major, Minor, Update, SDKVersion); in emitVersionMin()
298 unsigned Minor, unsigned Update, in emitBuildVersion() argument
301 Update, SDKVersion); in emitBuildVersion()
305 unsigned Platform, unsigned Major, unsigned Minor, unsigned Update, in emitDarwinTargetVariantBuildVersion() argument
308 (MachO::PlatformType)Platform, Major, Minor, Update, SDKVersion); in emitDarwinTargetVariantBuildVersion()
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DNSSet.cpp53 bool Update() override;
91 bool Update() override;
124 bool Update() override;
240 bool Update() override;
313 if (!cfbh.Update(valobj_addr, exe_ctx)) in NSSetSummaryProvider()
406 Update(); in NSSetISyntheticFrontEnd()
433 bool lldb_private::formatters::NSSetISyntheticFrontEnd::Update() { in Update() function in lldb_private::formatters::NSSetISyntheticFrontEnd
568 bool lldb_private::formatters::NSCFSetSyntheticFrontEnd::Update() { in Update() function in lldb_private::formatters::NSCFSetSyntheticFrontEnd
581 return m_hashtable.Update(valobj_sp->GetValueAsUnsigned(0), m_exe_ctx_ref); in Update()
674 Update(); in GenericNSSetMSyntheticFrontEnd()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp1786 IsPreIdx ? maybeMoveCFI(*Update, next_nodbg(Update, E)) : E; in mergeUpdateInsn()
1791 if (NextI == Update) in mergeUpdateInsn()
1794 int Value = Update->getOperand(2).getImm(); in mergeUpdateInsn()
1808 .add(getLdStRegOp(*Update)) in mergeUpdateInsn()
1817 .add(getLdStRegOp(*Update)) in mergeUpdateInsn()
1840 LLVM_DEBUG(Update->print(dbgs())); in mergeUpdateInsn()
1847 Update->eraseFromParent(); in mergeUpdateInsn()
2156 MachineBasicBlock::iterator Update; in tryToMergeLdStUpdate() local
2164 if (Update != E) { in tryToMergeLdStUpdate()
2180 if (Update != E) { in tryToMergeLdStUpdate()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DTUScheduler.cpp697 llvm::Optional<UpdateType> Update; member
1316 if (Update && Update->ContentChanged) { in startTask()
1320 if (R.Update && R.Update->ContentChanged) in startTask()
1461 if (I->Update == None) in scheduleLocked()
1466 if (I->Update == None) { in scheduleLocked()
1487 if (R.Update == None || R.Update->Diagnostics == WantDiagnostics::Yes) in scheduleLocked()
1498 auto Update = Next->Update; in shouldSkipHeadLocked() local
1499 if (!Update) // Only skip updates. in shouldSkipHeadLocked()
1504 if (Next == Requests.end() || !Next->Update) in shouldSkipHeadLocked()
1507 switch (Update->Diagnostics) { in shouldSkipHeadLocked()
[all …]

1234567