| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Memory.cpp | 35 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { in operator <<() 36 assert((PF & ~(Memory::MF_READ | Memory::MF_WRITE | Memory::MF_EXEC)) == 0 && in operator <<() 39 return OS << (PF & Memory::MF_READ ? 'R' : '-') in operator <<() 40 << (PF & Memory::MF_WRITE ? 'W' : '-') in operator <<() 41 << (PF & Memory::MF_EXEC ? 'X' : '-'); in operator <<()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Memory.inc | 1 //===- Win32/Memory.cpp - Win32 Memory Implementation -----------*- C++ -*-===// 23 switch (Flags & llvm::sys::Memory::MF_RWE_MASK) { 26 case llvm::sys::Memory::MF_READ: 28 case llvm::sys::Memory::MF_WRITE: 31 case llvm::sys::Memory::MF_READ|llvm::sys::Memory::MF_WRITE: 33 case llvm::sys::Memory::MF_READ|llvm::sys::Memory::MF_EXEC: 35 case llvm::sys::Memory::MF_READ | 36 llvm::sys::Memory::MF_WRITE | 37 llvm::sys::Memory::MF_EXEC: 39 case llvm::sys::Memory::MF_EXEC: [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/ |
| H A D | trivial-devices.yaml | 57 # CPU Supervisor with Nonvolatile Memory and Programmable I/O 171 # Microchip 7-bit Single I2C Digital Potentiometer with NV Memory (5k) 179 # Microchip 7-bit Single I2C Digital Potentiometer with NV Memory (5k) 235 # Microchip 7-bit Dual I2C Digital Potentiometer with NV Memory (5k) 237 # Microchip 7-bit Dual I2C Digital Potentiometer with NV Memory (10k) 239 # Microchip 7-bit Dual I2C Digital Potentiometer with NV Memory (50k) 243 # Microchip 7-bit Dual I2C Digital Potentiometer with NV Memory (5k) 245 # Microchip 7-bit Dual I2C Digital Potentiometer with NV Memory (10k) 247 # Microchip 7-bit Dual I2C Digital Potentiometer with NV Memory (50k) 267 # Microchip 8-bit Dual I2C Digital Potentiometer with NV Memory (5k) [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLinkMemoryManager.cpp | 55 if (auto EC = sys::Memory::releaseMappedMemory(Slab)) in allocate() 65 if (auto EC = sys::Memory::protectMappedMemory(Block, Prot)) in allocate() 67 if (Prot & sys::Memory::MF_EXEC) in allocate() 68 sys::Memory::InvalidateInstructionCache(Block.base(), in allocate() 82 const sys::Memory::ProtectionFlags ReadWrite = in allocate() 83 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in allocate() 84 sys::Memory::MF_WRITE); in allocate() 104 sys::Memory::allocateMappedMemory(TotalSize, nullptr, ReadWrite, EC); in allocate()
|
| H A D | ELFLinkGraphBuilder.h | 40 auto Prot = static_cast<sys::Memory::ProtectionFlags>( in getCommonSection() 41 sys::Memory::MF_READ | sys::Memory::MF_WRITE); in getCommonSection() 268 sys::Memory::ProtectionFlags Prot; in graphifySections() 270 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in graphifySections() 271 sys::Memory::MF_EXEC); in graphifySections() 273 Prot = static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in graphifySections() 274 sys::Memory::MF_WRITE); in graphifySections()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Memory.inc | 47 switch (Flags & llvm::sys::Memory::MF_RWE_MASK) { 48 case llvm::sys::Memory::MF_READ: 50 case llvm::sys::Memory::MF_WRITE: 52 case llvm::sys::Memory::MF_READ|llvm::sys::Memory::MF_WRITE: 54 case llvm::sys::Memory::MF_READ|llvm::sys::Memory::MF_EXEC: 56 case llvm::sys::Memory::MF_READ | llvm::sys::Memory::MF_WRITE | 57 llvm::sys::Memory::MF_EXEC: 59 case llvm::sys::Memory::MF_EXEC: 82 Memory::allocateMappedMemory(size_t NumBytes, 152 EC = Memory::protectMappedMemory (Result, PFlags); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86Operand.h | 131 case Memory: in print() 176 assert(Kind == Memory && "Invalid access!"); in getMemDisp() 180 assert(Kind == Memory && "Invalid access!"); in getMemSegReg() 184 assert(Kind == Memory && "Invalid access!"); in getMemBaseReg() 188 assert(Kind == Memory && "Invalid access!"); in getMemDefaultBaseReg() 192 assert(Kind == Memory && "Invalid access!"); in getMemIndexReg() 196 assert(Kind == Memory && "Invalid access!"); in getMemScale() 200 assert(Kind == Memory && "Invalid access!"); in getMemModeSize() 204 assert(Kind == Memory && "Invalid access!"); in getMemFrontendSize() 293 return Kind == Memory && Mem.Size == 0; in isMemUnsized() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | OrcRemoteTargetServer.h | 121 sys::Memory::releaseMappedMemory(Alloc.second); in ~Allocator() 126 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory( in allocate() 127 Size, nullptr, sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC); in allocate() 142 sys::Memory::protectMappedMemory(I->second, Flags)); in setProtections() 300 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in handleEmitResolverBlock() 309 return errorCodeToError(sys::Memory::protectMappedMemory( in handleEmitResolverBlock() 311 sys::Memory::MF_READ | sys::Memory::MF_EXEC)); in handleEmitResolverBlock() 317 sys::OwningMemoryBlock(sys::Memory::allocateMappedMemory( in handleEmitTrampolineBlock() 319 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in handleEmitTrampolineBlock() 333 sys::Memory::MF_READ | in handleEmitTrampolineBlock() [all …]
|
| H A D | IndirectionUtils.h | 136 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in LocalTrampolinePool() 148 sys::Memory::MF_READ | in LocalTrampolinePool() 149 sys::Memory::MF_EXEC); in LocalTrampolinePool() 161 sys::OwningMemoryBlock(sys::Memory::allocateMappedMemory( in grow() 163 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in grow() 180 if (auto EC = sys::Memory::protectMappedMemory( in grow() 182 sys::Memory::MF_READ | sys::Memory::MF_EXEC)) in grow() 321 sys::OwningMemoryBlock(sys::Memory::allocateMappedMemory( in create() 323 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in create() 336 if (auto EC = sys::Memory::protectMappedMemory( in create() [all …]
|
| H A D | OrcRemoteTargetClient.h | 185 sys::Memory::MF_READ | sys::Memory::MF_EXEC)) 189 sys::Memory::MF_READ)) 193 sys::Memory::MF_READ | sys::Memory::MF_WRITE)) 308 << (Permissions & sys::Memory::MF_READ ? 'R' : '-') in copyAndProtect() 309 << (Permissions & sys::Memory::MF_WRITE ? 'W' : '-') in copyAndProtect() 310 << (Permissions & sys::Memory::MF_EXEC ? 'X' : '-') in copyAndProtect() 337 using ProtectionFlags = sys::Memory::ProtectionFlags; 378 return errorCodeToError(sys::Memory::releaseMappedMemory(HostAllocation)); in deallocate() 401 const sys::Memory::ProtectionFlags ReadWrite = in allocateHostBlocks() 402 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in allocateHostBlocks() [all …]
|
| H A D | OrcRPCExecutorProcessControl.h | 83 static_cast<sys::Memory::ProtectionFlags>(KV.first)), in finalizeAsync() 135 static_cast<sys::Memory::ProtectionFlags>(KV.first)), in deallocate() 161 static_cast<sys::Memory::ProtectionFlags>(KV.first)), in allocate() 173 << ((KV.first & sys::Memory::MF_READ) ? 'R' : '-') in allocate() 174 << ((KV.first & sys::Memory::MF_WRITE) ? 'W' : '-') in allocate() 175 << ((KV.first & sys::Memory::MF_EXEC) ? 'X' : '-') in allocate() 205 << ((KV.first & sys::Memory::MF_READ) ? 'R' : '-') in allocate() 206 << ((KV.first & sys::Memory::MF_WRITE) ? 'W' : '-') in allocate() 207 << ((KV.first & sys::Memory::MF_EXEC) ? 'X' : '-') in allocate()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | SectionMemoryManager.cpp | 106 sys::Memory::MF_READ | sys::Memory::MF_WRITE, ec); in allocateSection() 155 sys::Memory::MF_READ | sys::Memory::MF_EXEC); in finalizeMemory() 164 ec = applyMemoryGroupPermissions(RODataMem, sys::Memory::MF_READ); in finalizeMemory() 230 sys::Memory::InvalidateInstructionCache(Block.base(), in invalidateInstructionCache() 254 return sys::Memory::allocateMappedMemory(NumBytes, NearBlock, Flags, EC); in allocateMappedMemory() 259 return sys::Memory::protectMappedMemory(Block, Flags); in protectMappedMemory() 263 return sys::Memory::releaseMappedMemory(M); in releaseMappedMemory()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | EPCIndirectionUtils.cpp | 106 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in grow() 107 sys::Memory::MF_EXEC); in grow() 290 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in writeResolverBlock() 291 sys::Memory::MF_EXEC); in writeResolverBlock() 357 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in getIndirectStubs() 358 sys::Memory::MF_EXEC); in getIndirectStubs() 360 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in getIndirectStubs() 361 sys::Memory::MF_WRITE); in getIndirectStubs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Memory.h | 45 friend class Memory; variable 52 class Memory { 151 Memory::releaseMappedMemory(M); in ~OwningMemoryBlock() 164 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF);
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | nvidia,tegra30-mc.yaml | 7 title: NVIDIA Tegra30 SoC Memory Controller 15 Tegra30 Memory Controller architecturally consists of the following parts: 25 Memory Crossbar, which routes request and responses between Arbitration 27 Memory Crossbar is just a pass through between a single Arbitration Domain 31 are shared across the Memory Subsystem. 33 The Tegra30 Memory Controller handles memory requests from internal clients 75 Memory clock rate in Hz.
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 1108 if(!Memory.OffsetImm || Memory.OffsetRegNum) return false; in isThumbMemPC() 1683 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isMemTBB() 1690 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isMemTBH() 1691 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 || in isMemTBH() 1704 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isT2MemRegOffset() 1705 Memory.Alignment != 0 || Memory.BaseRegNum == ARM::PC) in isT2MemRegOffset() 1710 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3) in isT2MemRegOffset() 1718 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isMemThumbRR() 1766 Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0) in isMemThumbSPI() 2967 Memory.ShiftImm, Memory.ShiftType); in addAddrMode2Operands() [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/mtd/ |
| H A D | aspeed-smc.txt | 1 * Aspeed Firmware Memory controller 2 * Aspeed SPI Flash Memory Controller 4 The Firmware Memory Controller in the Aspeed AST2500 SoC supports 13 "aspeed,ast2400-fmc" for the AST2400 Firmware Memory Controller 15 "aspeed,ast2500-fmc" for the AST2500 Firmware Memory Controller
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | PredIteratorCache.h | 33 BumpPtrAllocator Memory; variable 52 Entry = Memory.Allocate<BasicBlock *>(PredCache.size()); in GetPreds() 74 Memory.Reset(); in clear()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/ |
| H A D | OrcRPCTPCServer.h | 53 toWireProtectionFlags(sys::Memory::ProtectionFlags PF) { in toWireProtectionFlags() 55 if (PF & sys::Memory::MF_READ) in toWireProtectionFlags() 57 if (PF & sys::Memory::MF_WRITE) in toWireProtectionFlags() 59 if (PF & sys::Memory::MF_EXEC) in toWireProtectionFlags() 64 inline sys::Memory::ProtectionFlags 68 PF |= sys::Memory::MF_READ; in fromWireProtectionFlags() 70 PF |= sys::Memory::MF_WRITE; in fromWireProtectionFlags() 72 PF |= sys::Memory::MF_EXEC; in fromWireProtectionFlags() 73 return static_cast<sys::Memory::ProtectionFlags>(PF); in fromWireProtectionFlags() 514 auto PF = sys::Memory::MF_READ | sys::Memory::MF_WRITE; in reserveMemory() [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | aspeed-bmc-quanta-q71l.dts | 464 /* Memory Riser 1 FRU */ 470 /* Memory Riser 2 FRU */ 476 /* Memory Riser 3 FRU */ 482 /* Memory Riser 4 FRU */ 494 /* Memory Riser 5 FRU */ 500 /* Memory Riser 6 FRU */ 506 /* Memory Riser 7 FRU */ 512 /* Memory Riser 8 FRU */
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/dma/ |
| H A D | fsl-imx-sdma.txt | 1 * Freescale Smart Direct Memory Access (SDMA) Controller for i.MX 45 13 Memory Stick Host Controller 46 14 Shared Memory Stick Host Controller 48 16 Memory 49 17 FIFO type Memory 51 19 IPU Memory
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/fuzz/ |
| H A D | get_error_info_fuzzer.cpp | 27 const char *Memory = MemoryAndTags.c_str(); in LLVMFuzzerTestOneInput() local 30 const char *MemoryTags = Memory + MemorySize; in LLVMFuzzerTestOneInput() 57 RegionInfo.data(), RingBuffer.data(), Memory, in LLVMFuzzerTestOneInput()
|
| /freebsd-13.1/contrib/file/magic/Magdir/ |
| H A D | pmem | 4 # pmem: file(1) magic for Persistent Memory Development Kit pool files 7 >4 string POOLSET Persistent Memory Poolset file 9 >4 regex LOG|BLK|OBJ Persistent Memory Pool file, type: %s,
|
| /freebsd-13.1/tools/regression/sysvshm/ |
| H A D | README | 3 SysV IPC Shared Memory Regression Utility. 5 This regression utility will test the SysV Shared Memory facility
|
| /freebsd-13.1/contrib/libcbor/ |
| H A D | .travis.yml | 57 …if grep -q 'Memory Leak\|IPW\|Uninitialized Memory Conditional\|Uninitialized Memory Read' memchec…
|