Home
last modified time | relevance | path

Searched refs:invalidated (Results 1 – 25 of 38) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/docs/
H A DNewPassManager.rst250 that are used must be immutable, or else they could be invalidated by changes to
252 invalidated by changes to inner level IR. These invalidations happen after the
283 valid and should be invalidated. If a pass wants to keep some specific
289 proper analyses invalidated.
339 cached/invalidated, you can mark the analysis manager proxy as preserved,
342 to make sure all the right analyses are invalidated.
347 By default, an analysis is invalidated if ``PreservedAnalyses`` says that
368 about the CFG, the ``FooAnalysisResult`` should not be invalidated.
370 If an analysis is stateless and generally shouldn't be invalidated, use the
377 // Check whether the analysis has been explicitly invalidated. Otherwise, it's
[all …]
H A DLexicon.rst93 derived pointers pose an additional hazard that they may be invalidated at
H A DWritingAnLLVMPass.rst340 invalidated, and are never "run".
734 which are invalidated by the current pass.
752 By implementing the ``getAnalysisUsage`` method, the required and invalidated
756 information about which passes are required and not invalidated. To do this, a
1004 of which analyses are available already, which analyses get invalidated, and
H A DAMDGPUUsage.rst722 and managed on the host side. The vector and scalar L1 caches are invalidated
3816 used. The vector and scalar L1 caches are invalidated of volatile data before
5218 invalidated between kernel dispatches by CP since constant address space data
5236 causes it to be treated as non-volatile and so is not invalidated by
6490 * Any local memory cache lines will be automatically invalidated by writes
6511 coarse memory) cause local reads to be invalidated by remote writes with
6512 with the PTE C-bit so these cache lines are not invalidated. Note that
6514 never result in L2 cache lines that need to be invalidated.
6524 invalidated between kernel dispatches by CP since constant address space data
6543 invalidated by ``*_vol``.
[all …]
/openbsd-src/gnu/llvm/clang/docs/analyzer/developer-docs/
H A DRegionStore.rst72 invalidated, all the instance variables must be invalidated as well. However,
99 its *contents* must also be transitively invalidated. (For example, if a region
100 ``p`` of type ``int **`` is invalidated, the contents of ``*p`` and ``**p`` may
H A DInitializerLists.rst185 we're just modeling arbitrary analysis facts that need to be invalidated when a
291 > invalidated when a pointer escapes then we shouldn't try to gin up storage
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/
H A Damdgpu_vm.c282 * amdgpu_vm_bo_invalidated - vm_bo is invalidated
284 * @vm_bo: vm_bo which is now invalidated
286 * State for normal BOs which are invalidated and that change not yet reflected
292 list_move(&vm_bo->vm_status, &vm_bo->vm->invalidated); in amdgpu_vm_bo_invalidated()
320 * State for normal BOs which are invalidated and that change has been updated
342 list_splice_init(&vm->done, &vm->invalidated); in amdgpu_vm_bo_reset_state_machine()
343 list_for_each_entry(vm_bo, &vm->invalidated, vm_status) in amdgpu_vm_bo_reset_state_machine()
1108 list_for_each_entry_safe(bo_va, tmp, &vm->invalidated, base.vm_status) in amdgpu_vm_get_memory()
1463 while (!list_empty(&vm->invalidated)) { in amdgpu_vm_handle_moved()
1464 bo_va = list_first_entry(&vm->invalidated, struc in amdgpu_vm_handle_moved()
[all...]
H A Damdgpu_vm.h288 struct list_head invalidated; member
/openbsd-src/sys/dev/pci/drm/radeon/
H A Dradeon_vm.c1092 while (!list_empty(&vm->invalidated)) { in radeon_vm_clear_invalids()
1093 bo_va = list_first_entry(&vm->invalidated, in radeon_vm_clear_invalids()
1160 list_add(&bo_va->vm_status, &bo_va->vm->invalidated); in radeon_vm_bo_invalidate()
1189 INIT_LIST_HEAD(&vm->invalidated); in radeon_vm_init()
H A Dradeon.h894 /* protecting invalidated and freed */
898 struct list_head invalidated; member
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h337 const InvalidatedSymbols *invalidated, in _checkRegionChanges() argument
342 return ((const CHECKER *) checker)->checkRegionChanges(state, invalidated, in _checkRegionChanges()
H A DCheckerManager.h404 const InvalidatedSymbols *invalidated,
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h320 const InvalidatedSymbols *invalidated,
H A DRetainCountChecker.cpp1186 ProgramStateRef state, const InvalidatedSymbols *invalidated, in checkRegionChanges() argument
1190 if (!invalidated) in checkRegionChanges()
1199 for (SymbolRef sym : *invalidated) { in checkRegionChanges()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp598 const InvalidatedSymbols *invalidated, in runCheckersForRegionChanges() argument
608 state = RegionChangesChecker(state, invalidated, ExplicitRegions, Regions, in runCheckersForRegionChanges()
H A DExprEngine.cpp669 const InvalidatedSymbols *invalidated, in processRegionChanges() argument
674 return getCheckerManager().runCheckersForRegionChanges(state, invalidated, in processRegionChanges()
/openbsd-src/gnu/llvm/clang/docs/analyzer/
H A Dcheckers.rst280 elements of the container. Using such references after they are invalidated
1827 Check for use of invalidated iterators.
1835 *i0; // warn: invalidated iterator accessed
2031 invalidated in the methods annotated with objc_instance_variable_invalidator.
2052 // warn: var needs to be invalidated or set to nil
2353 // subsequent call to 'getenv' invalidated previous one
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h400 const InvalidatedSymbols *invalidated,
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td786 HelpText<"Check for use of invalidated iterators">,
995 HelpText<"Finds usages of possibly invalidated pointers">,
1239 HelpText<"Check that the invalidatable instance variables are invalidated in "
/openbsd-src/gnu/usr.bin/cvs/contrib/
H A Ddirfns.shar108 Xvalue may be invalidated
/openbsd-src/gnu/llvm/clang/docs/
H A DConstantInterpreter.rst163 all pointers to it are invalidated, emitting the appropriate diagnostics when
/openbsd-src/share/snmp/
H A DIP-MIB.txt2396 The address generated from an invalidated prefix should not
2723 invalid(2), -- an invalidated mapping
2740 removes an invalidated entry from the table. Accordingly,
2777 invalid(5), -- an invalidated mapping
4571 invalid(2), -- an invalidated mapping
4587 invalidated entry from the table. Accordingly, management
H A DIP-FORWARD-MIB.txt1106 agent removes an invalidated entry from the table.
/openbsd-src/gnu/lib/libreadline/
H A DCHANGES22 file descriptor is invalidated.
/openbsd-src/gnu/llvm/lldb/docs/
H A Dlldb-gdb-remote.txt843 This specifies which register values should be invalidated when this
851 If there is a single register that gets invalidated, then omit the comma

12