| /netbsd-src/sys/external/bsd/acpica/dist/tests/misc/ |
| H A D | grammar.asl | 68 grammar.asl 1377: Store (0x1234567887654321, QWD2) 186 Store ("_CRS:", Debug) 187 Store (PRT0, Debug) 193 Store ("_SRS:", Debug) 194 Store (Arg0, Debug) 400 Store (0x03, BMIN) 491 Store ("32-bit table", Debug) 495 Store ("64-bit table", Debug) 514 Store (4, MFLD) 515 Store (MFLD, Local0) [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/container/ |
| H A D | binaryheap.d | 65 struct BinaryHeap(Store, alias less = "a < b") 66 if (isRandomAccessRange!(Store) || isRandomAccessRange!(typeof(Store.init[]))) 75 static if (isRandomAccessRange!Store) 76 alias Range = Store; 78 alias Range = typeof(Store.init[]); 89 Store _store; 96 private @property ref Store _store() in _store() 126 /*private*/ void pop(Store store) in pop() 147 this(Store s, size_t initialSize = size_t.max) 156 void acquire(Store s, size_t initialSize = size_t.max) [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | Store.h | 74 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0; 86 virtual Optional<SVal> getDefaultBinding(Store store, const MemRegion *R) = 0; 107 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0; 112 virtual StoreRef BindDefaultInitial(Store store, const MemRegion *R, 117 virtual StoreRef BindDefaultZero(Store store, const MemRegion *R) = 0; 122 virtual StoreRef killBinding(Store ST, Loc L) = 0; 186 virtual StoreRef removeDeadBindings(Store store, const StackFrameContext *LCtx, 189 virtual bool includedInBindings(Store store, 194 virtual void incrementReferenceCount(Store store) {} in incrementReferenceCount() 199 virtual void decrementReferenceCount(Store store) {} in decrementReferenceCount() [all …]
|
| H A D | StoreRef.h | 27 using Store = const void *; variable 30 Store store; 34 StoreRef(Store store, StoreManager &smgr); 46 Store getStore() const { return store; } in getStore()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/container/ |
| H A D | binaryheap.d | 65 struct BinaryHeap(Store, alias less = "a < b") 66 if (isRandomAccessRange!(Store) || isRandomAccessRange!(typeof(Store.init[]))) 75 static if (isRandomAccessRange!Store) 76 alias Range = Store; 78 alias Range = typeof(Store.init[]); 89 Store _store; 96 private @property ref Store _store() in _store() 124 /*private*/ void pop(Store store) in pop() 145 this(Store s, size_t initialSize = size_t.max) 154 void acquire(Store s, size_t initialSize = size_t.max) [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARCContract.cpp | 201 StoreInst *Store = nullptr; in findSafeStoreForStoreStrongContraction() local 214 if (Store && SawRelease) in findSafeStoreForStoreStrongContraction() 237 if (Store) { in findSafeStoreForStoreStrongContraction() 256 Store = dyn_cast<StoreInst>(Inst); in findSafeStoreForStoreStrongContraction() 262 if (!Store || !Store->isSimple()) in findSafeStoreForStoreStrongContraction() 267 if (Store->getPointerOperand()->stripPointerCasts() == LocPtr) in findSafeStoreForStoreStrongContraction() 276 if (!Store || !SawRelease) in findSafeStoreForStoreStrongContraction() 280 return Store; in findSafeStoreForStoreStrongContraction() 284 findRetainForStoreStrongContraction(Value *New, StoreInst *Store, in findRetainForStoreStrongContraction() argument 288 BasicBlock::iterator I = Store->getIterator(); in findRetainForStoreStrongContraction() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LoopLoadElimination.cpp | 91 StoreInst *Store; member 93 StoreToLoadForwardingCandidate(LoadInst *Load, StoreInst *Store) in StoreToLoadForwardingCandidate() 94 : Load(Load), Store(Store) {} in StoreToLoadForwardingCandidate() 101 Value *StorePtr = Store->getPointerOperand(); in isDependenceDistanceOfOne() 136 OS << *Cand.Store << " -->\n"; in operator <<() 210 auto *Store = dyn_cast<StoreInst>(Source); in findStoreToLoadDependences() local 211 if (!Store) in findStoreToLoadDependences() 218 if (Store->getPointerOperandType() != Load->getPointerOperandType()) in findStoreToLoadDependences() 221 Candidates.emplace_front(Load, Store); in findStoreToLoadDependences() 281 if (Cand.Store->getParent() == OtherCand->Store->getParent() && in removeDependencesFromMultipleStores() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | MetadataImpl.h | 22 static T *getUniqued(DenseSet<T *, InfoT> &Store, in getUniqued() argument 24 auto I = Store.find_as(Key); in getUniqued() 25 return I == Store.end() ? nullptr : *I; in getUniqued() 42 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument 45 Store.insert(N); in storeImpl()
|
| H A D | Metadata.cpp | 117 auto &Store = Context.pImpl->MetadataAsValues; in getIfExists() local 118 return Store.lookup(MD); in getIfExists() 124 auto &Store = Context.pImpl->MetadataAsValues; in handleChangedMetadata() local 127 Store.erase(this->MD); in handleChangedMetadata() 132 auto *&Entry = Store[MD]; in handleChangedMetadata() 389 auto &Store = V->getType()->getContext().pImpl->ValuesAsMetadata; in handleDeletion() local 390 auto I = Store.find(V); in handleDeletion() 391 if (I == Store.end()) in handleDeletion() 398 Store.erase(I); in handleDeletion() 412 auto &Store = Context.pImpl->ValuesAsMetadata; in handleRAUW() local [all …]
|
| /netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| H A D | aetables.h | 293 Store ("Table OEMX running", Debug) 356 Store ("Load operator, handle:", Debug) 357 Store (HNDL, Debug) 362 Store ("Loading OEMX table", Debug) 363 Store (LoadTable ("OEMX", "MyOEM", "Test"), Debug) 390 Store ("SSDT1 - _T98", Debug) 401 Store ("SSDT2 - _T99", Debug)
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| H A D | hwasan.cpp | 479 CheckAddressSized<ErrorAction::Abort, AccessType::Store>(p, sz); in __hwasan_storeN() 482 CheckAddress<ErrorAction::Abort, AccessType::Store, 0>(p); in __hwasan_store1() 485 CheckAddress<ErrorAction::Abort, AccessType::Store, 1>(p); in __hwasan_store2() 488 CheckAddress<ErrorAction::Abort, AccessType::Store, 2>(p); in __hwasan_store4() 491 CheckAddress<ErrorAction::Abort, AccessType::Store, 3>(p); in __hwasan_store8() 494 CheckAddress<ErrorAction::Abort, AccessType::Store, 4>(p); in __hwasan_store16() 498 CheckAddressSized<ErrorAction::Recover, AccessType::Store>(p, sz); in __hwasan_storeN_noabort() 501 CheckAddress<ErrorAction::Recover, AccessType::Store, 0>(p); in __hwasan_store1_noabort() 504 CheckAddress<ErrorAction::Recover, AccessType::Store, 1>(p); in __hwasan_store2_noabort() 507 CheckAddress<ErrorAction::Recover, AccessType::Store, 2>(p); in __hwasan_store4_noabort() [all …]
|
| H A D | hwasan_memintrinsics.cpp | 25 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memset() 31 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memcpy() 39 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memmove()
|
| H A D | hwasan_checks.h | 81 enum class AccessType { Load, Store }; enumerator 91 0x10 * (AT == AccessType::Store) + LogSize>(p); in CheckAddress() 109 0x10 * (AT == AccessType::Store) + 0xf>(p, sz); in CheckAddressSized() 119 0x10 * (AT == AccessType::Store) + 0xf>(p, sz); in CheckAddressSized()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ValueLatticeUtils.cpp | 34 if (auto *Store = dyn_cast<StoreInst>(U)) in canTrackGlobalVariableInterprocedurally() local 35 return Store->getValueOperand() != GV && !Store->isVolatile(); in canTrackGlobalVariableInterprocedurally()
|
| H A D | AliasAnalysisEvaluator.cpp | 180 for (Value *Store : Stores) { in runInternal() 182 MemoryLocation::get(cast<StoreInst>(Store))); in runInternal() 185 PrintLoadStoreResults(AR, PrintNoAlias, Load, Store, F.getParent()); in runInternal() 189 PrintLoadStoreResults(AR, PrintMayAlias, Load, Store, F.getParent()); in runInternal() 193 PrintLoadStoreResults(AR, PrintPartialAlias, Load, Store, F.getParent()); in runInternal() 197 PrintLoadStoreResults(AR, PrintMustAlias, Load, Store, F.getParent()); in runInternal()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrSystem.td | 42 // Store then AND/OR system mask. 67 // Store control. 102 // Store prefix. 184 // Store real address. 193 // Store using real address. 319 // Store clock (fast / extended). 326 // Store clock comparator. 330 // Store CPU timer. 338 // Store CPU address. 342 // Store CPU ID. [all …]
|
| H A D | SystemZISelDAGToDAG.cpp | 314 bool tryScatter(StoreSDNode *Store, unsigned Opcode); 330 bool canUseBlockOperation(StoreSDNode *Store, LoadSDNode *Load) const; 1213 bool SystemZDAGToDAGISel::tryScatter(StoreSDNode *Store, unsigned Opcode) { in tryScatter() argument 1214 SDValue Value = Store->getValue(); in tryScatter() 1217 if (Store->getMemoryVT().getSizeInBits() != Value.getValueSizeInBits()) in tryScatter() 1232 if (!selectBDVAddr12Only(Store->getBasePtr(), ElemV, Base, Disp, Index) || in tryScatter() 1236 SDLoc DL(Store); in tryScatter() 1239 Store->getChain() in tryScatter() 1241 ReplaceNode(Store, CurDAG->getMachineNode(Opcode, DL, MVT::Other, Ops)); in tryScatter() 1408 bool SystemZDAGToDAGISel::canUseBlockOperation(StoreSDNode *Store, in canUseBlockOperation() argument [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86CallFrameOptimization.cpp | 508 MachineBasicBlock::iterator Store = *Context.ArgStoreVector[Idx]; in adjustCallSequence() local 509 const MachineOperand &PushOp = Store->getOperand(X86::AddrNumOperands); in adjustCallSequence() 512 switch (Store->getOpcode()) { in adjustCallSequence() 534 Push->cloneMemRefs(MF, *Store); in adjustCallSequence() 542 if (Is64Bit && Store->getOpcode() == X86::MOV32mr) { in adjustCallSequence() 566 Push->cloneMergedMemRefs(MF, {DefMov, &*Store}); in adjustCallSequence() 573 Push->cloneMemRefs(MF, *Store); in adjustCallSequence() 587 MBB.erase(Store); in adjustCallSequence()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsEVAInstrInfo.td | 19 // Memory Load/Store EVA encodings 36 // Load-linked EVA, Store-conditional EVA encodings 52 // Memory Load/Store EVA descriptions 89 // Load/Store Left/Right EVA descriptions 124 // Load-linked EVA, Store-conditional EVA descriptions 186 /// Load and Store EVA Instructions 202 /// Load-linked EVA, Store-conditional EVA
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64Schedule.td | 44 def WriteST : SchedWrite; // Store to base addr plus immediate offset 45 def WriteSTP : SchedWrite; // Store a register pair. 49 def WriteSTIdx : SchedWrite; // Store to a register index (maybe scaled). 64 // Store-exclusive is a store followed by a dependent load. 92 // Store a shuffled vector.
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | RegionStore.cpp | 222 Store asStore() const { in asStore() 223 llvm::PointerIntPair<Store, 1, bool> Ptr = { in asStore() 225 return reinterpret_cast<Store>(Ptr.getOpaqueValue()); in asStore() 425 StoreRef invalidateRegions(Store store, 435 bool scanReachableSymbols(Store S, const MemRegion *R, 443 StoreRef Bind(Store store, Loc LV, SVal V) override { in Bind() 451 StoreRef BindDefaultInitial(Store store, const MemRegion *R, in BindDefaultInitial() 464 StoreRef BindDefaultZero(Store store, const MemRegion *R) override { in BindDefaultZero() 521 StoreRef killBinding(Store ST, Loc L) override; 523 void incrementReferenceCount(Store store) override { in incrementReferenceCount() [all …]
|
| H A D | Store.cpp | 46 StoreRef StoreManager::enterStackFrame(Store OldStore, in enterStackFrame() 49 StoreRef Store = StoreRef(OldStore, *this); in enterStackFrame() local 55 Store = Bind(Store.getStore(), I.first.castAs<Loc>(), I.second); in enterStackFrame() 57 return Store; in enterStackFrame() 510 Store store, in HandleBinding()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanTransforms.cpp | 66 } else if (StoreInst *Store = dyn_cast<StoreInst>(Inst)) { in VPInstructionsToVPRecipes() local 68 *Store, Plan->getOrAddVPValue(getLoadStorePointerOperand(Inst)), in VPInstructionsToVPRecipes() 69 Plan->getOrAddVPValue(Store->getValueOperand()), in VPInstructionsToVPRecipes()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMScheduleV6.td | 178 // Store multiple 181 // Store multiple + update 287 // Single-precision FP Store 290 // Double-precision FP Store 294 // FP Store Multiple 297 // FP Store Multiple + update
|
| /netbsd-src/external/gpl3/binutils/dist/config/ |
| H A D | picflag.m4 | 3 # Store PIC flag corresponding to DISPATCH triplet in FLAG. 88 # Store host PIC flag in PICFLAG. 95 # Store target PIC flag in PICFLAG_FOR_TARGET.
|