Searched refs:invalidate (Results 51 - 75 of 93) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp783 Traces->invalidate(IfConv.Head);
784 Traces->invalidate(IfConv.Tail);
785 Traces->invalidate(IfConv.TBB);
786 Traces->invalidate(IfConv.FBB);
H A DMachineCombiner.cpp442 /// otherwise invalidate the trace
467 MinInstr->invalidate(MBB);
610 // we hit this. We do not invalidate the trace, but instead update the
644 Traces->invalidate(MBB);
H A DMachineTraceMetrics.cpp397 void MachineTraceMetrics::invalidate(const MachineBasicBlock *MBB) {
400 BlockInfo[MBB->getNumber()].invalidate();
403 Ensembles[i]->invalidate(MBB);
523 MachineTraceMetrics::Ensemble::invalidate(const MachineBasicBlock *BadMBB) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFuse.cpp132 /// The invalidate method should be used to indicate that the FusionCandidate is
180 // found, invalidate this object and return.
183 invalidate();
190 invalidate();
196 invalidate();
203 invalidate();
335 void invalidate() { function in struct:__anon4651::FusionCandidate
1188 // However, doing so might invalidate the phi nodes of the first loop as
1439 // However, doing so might invalidate the phi nodes of the first loop as
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1156 // pointer or one that we're about to invalidate by putting more info into
1647 // subsequent value may invalidate the sortedness.
1760 bool MemoryDependenceResults::invalidate(Function &F, const PreservedAnalyses &PA, function in class:MemoryDependenceResults
1769 if (Inv.invalidate<AAManager>(F, PA) ||
1770 Inv.invalidate<AssumptionAnalysis>(F, PA) ||
1771 Inv.invalidate<DominatorTreeAnalysis>(F, PA) ||
1772 Inv.invalidate<PhiValuesAnalysis>(F, PA))
H A DBlockFrequencyInfo.cpp175 bool BlockFrequencyInfo::invalidate(Function &F, const PreservedAnalyses &PA, function in class:BlockFrequencyInfo
H A DCallGraph.cpp68 bool CallGraph::invalidate(Module &, const PreservedAnalyses &PA, function in class:CallGraph
H A DMLInlineAdvisor.cpp121 // Update the internal state of the advisor, and force invalidate feature
133 FAM.invalidate<InlineFeaturesAnalysis>(*Caller);
H A DBasicAliasAnalysis.cpp98 bool BasicAAResult::invalidate(Function &Fn, const PreservedAnalyses &PA, function in class:BasicAAResult
104 if (Inv.invalidate<AssumptionAnalysis>(Fn, PA) ||
105 (DT && Inv.invalidate<DominatorTreeAnalysis>(Fn, PA)) ||
106 (LI && Inv.invalidate<LoopAnalysis>(Fn, PA)) ||
107 (PV && Inv.invalidate<PhiValuesAnalysis>(Fn, PA)))
H A DAliasAnalysis.cpp81 bool AAResults::invalidate(Function &F, const PreservedAnalyses &PA, function in class:AAResults
91 // Check if any of the function dependencies were invalidated, and invalidate
94 if (Inv.invalidate(ID, F, PA))
97 // Everything we depend on is still fine, so are we. Nothing to invalidate.
H A DMemorySSA.cpp1660 // Note that moving should implicitly invalidate the optimized state of a
2075 /// log2(N) sequences of mixed before and after) without needing to invalidate
2257 bool MemorySSAAnalysis::Result::invalidate( function in class:MemorySSAAnalysis::Result
2262 Inv.invalidate<AAManager>(F, PA) ||
2263 Inv.invalidate<DominatorTreeAnalysis>(F, PA);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DMemory.inc150 // Rely on protectMappedMemory to invalidate instruction cache.
215 /// that has been emitted it must invalidate the instruction cache on some
232 assert(Status == ZX_OK && "cannot invalidate instruction cache");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp847 Traces->invalidate(CmpConv.Head);
848 Traces->invalidate(CmpConv.CmpBB);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h375 bool invalidate(Function &F, const PreservedAnalyses &PA,
H A DCallGraph.h111 bool invalidate(Module &, const PreservedAnalyses &PA,
H A DDependenceAnalysis.h279 bool invalidate(Function &F, const PreservedAnalyses &PA,
H A DRegionInfo.h922 bool invalidate(Function &F, const PreservedAnalyses &PA,
H A DAliasAnalysis.h375 /// where we must invalidate the results aggregation if any of our component
383 bool invalidate(Function &F, const PreservedAnalyses &PA,
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DContainerModeling.cpp430 // For deque-like containers invalidate all iterator positions
442 // For vector-like containers invalidate the past-end iterator positions
486 // For vector-like and deque-like containers invalidate the last and the
487 // past-end iterator positions. For list-like containers only invalidate
510 // For deque-like containers invalidate all iterator positions
550 // For deque-like containers invalidate all iterator positions. For list-like
551 // iterators only invalidate the first position
586 // For deque-like containers invalidate all iterator positions. For
587 // vector-like containers invalidate iterator positions after the insertion.
617 // For deque-like containers invalidate al
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DDominators.cpp104 bool DominatorTree::invalidate(Function &F, const PreservedAnalyses &PA, function in class:DominatorTree
/freebsd-13-stable/sys/vm/
H A Dvm_object.c1164 * We invalidate (remove) all pages from the address space
1176 boolean_t syncio, boolean_t invalidate)
1198 * Flush pages if writing is allowed, invalidate them
1215 if (syncio && !invalidate && offset == 0 &&
1226 flags = (syncio || invalidate) ? OBJPC_SYNC : 0;
1227 flags |= invalidate ? (OBJPC_SYNC | OBJPC_INVAL) : 0;
1243 object->type == OBJT_DEVICE) && invalidate) {
2068 * Second, it is used by msync(..., MS_INVALIDATE) to invalidate device-
1175 vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size, boolean_t syncio, boolean_t invalidate) argument
/freebsd-13-stable/sys/amd64/include/
H A Dpmap.h460 void pmap_demote_DMAP(vm_paddr_t base, vm_size_t len, boolean_t invalidate);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h659 Edges[EId].invalidate();
/freebsd-13-stable/sys/dev/oce/
H A Doce_hw.h443 uint32_t invalidate:1; member in struct:pd_rxulp_db_u::__anon13556
449 uint32_t invalidate:1;
1141 uint8_t invalidate; member in struct:mbx_set_common_iface_mac::__anon13586::__anon13587
1146 uint8_t invalidate;
/freebsd-13-stable/sys/powerpc/aim/
H A Dmmu_radix.c162 #define TLBIEL_INVAL_PAGE 0x000 /* invalidate a single page */
163 #define TLBIEL_INVAL_SET_PID 0x400 /* invalidate a set for the current PID */
164 #define TLBIEL_INVAL_SET_LPID 0x800 /* invalidate a set for current LPID */
165 #define TLBIEL_INVAL_SET 0xc00 /* invalidate a set for all LPIDs */
582 vm_prot_t prot, vm_page_t mpte, struct rwlock **lockp, bool *invalidate);
655 TLB_INVAL_SCOPE_LPID = 0, /* invalidate TLBs for current LPID */
656 TLB_INVAL_SCOPE_GLOBAL = 1, /* invalidate all TLBs */
782 /* TODO: LPID invalidate */
967 printf("%s(%p, %#lx, %#x) (%#lx) -- invalidate all\n",
1136 * by a promotion that did not invalidate th
3264 bool invalidate; local
3296 mmu_radix_enter_quick_locked(pmap_t pmap, vm_offset_t va, vm_page_t m, vm_prot_t prot, vm_page_t mpte, struct rwlock **lockp, bool *invalidate) argument
3407 bool invalidate; local
[all...]

Completed in 186 milliseconds

1234