| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Memory.cpp | 34 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF) { in operator <<() 35 assert((PF & ~(Memory::MF_READ | Memory::MF_WRITE | Memory::MF_EXEC)) == 0 && in operator <<() 38 return OS << (PF & Memory::MF_READ ? 'R' : '-') in operator <<() 39 << (PF & Memory::MF_WRITE ? 'W' : '-') in operator <<() 40 << (PF & Memory::MF_EXEC ? 'X' : '-'); in operator <<()
|
| /freebsd-14.2/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 | llvm::sys::Memory::MF_WRITE | 36 llvm::sys::Memory::MF_EXEC: 38 case llvm::sys::Memory::MF_EXEC: 99 MemoryBlock Memory::allocateMappedMemory(size_t NumBytes, [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Memory.inc | 40 switch (Flags & llvm::sys::Memory::MF_RWE_MASK) { 41 case llvm::sys::Memory::MF_READ: 43 case llvm::sys::Memory::MF_WRITE: 45 case llvm::sys::Memory::MF_READ | llvm::sys::Memory::MF_WRITE: 47 case llvm::sys::Memory::MF_READ | llvm::sys::Memory::MF_EXEC: 49 case llvm::sys::Memory::MF_READ | llvm::sys::Memory::MF_WRITE | 50 llvm::sys::Memory::MF_EXEC: 52 case llvm::sys::Memory::MF_EXEC: 73 MemoryBlock Memory::allocateMappedMemory(size_t NumBytes, 143 EC = Memory::protectMappedMemory(Result, PFlags); [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86Operand.h | 141 case Memory: in print() 186 assert(Kind == Memory && "Invalid access!"); in getMemDisp() 190 assert(Kind == Memory && "Invalid access!"); in getMemSegReg() 194 assert(Kind == Memory && "Invalid access!"); in getMemBaseReg() 198 assert(Kind == Memory && "Invalid access!"); in getMemDefaultBaseReg() 202 assert(Kind == Memory && "Invalid access!"); in getMemIndexReg() 206 assert(Kind == Memory && "Invalid access!"); in getMemScale() 210 assert(Kind == Memory && "Invalid access!"); in getMemModeSize() 214 assert(Kind == Memory && "Invalid access!"); in getMemFrontendSize() 218 assert(Kind == Memory && "Invalid access!"); in isMaybeDirectBranchDest() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | MemoryFlags.h | 44 inline sys::Memory::ProtectionFlags toSysMemoryProtectionFlags(MemProt MP) { in toSysMemoryProtectionFlags() 45 std::underlying_type_t<sys::Memory::ProtectionFlags> PF = 0; in toSysMemoryProtectionFlags() 47 PF |= sys::Memory::MF_READ; in toSysMemoryProtectionFlags() 49 PF |= sys::Memory::MF_WRITE; in toSysMemoryProtectionFlags() 51 PF |= sys::Memory::MF_EXEC; in toSysMemoryProtectionFlags() 52 return static_cast<sys::Memory::ProtectionFlags>(PF); in toSysMemoryProtectionFlags() 57 inline MemProt fromSysMemoryProtectionFlags(sys::Memory::ProtectionFlags PF) { in fromSysMemoryProtectionFlags() 59 if (PF & sys::Memory::MF_READ) in fromSysMemoryProtectionFlags() 61 if (PF & sys::Memory::MF_WRITE) in fromSysMemoryProtectionFlags() 63 if (PF & sys::Memory::MF_EXEC) in fromSysMemoryProtectionFlags()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | IndirectionUtils.h | 143 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in LocalTrampolinePool() 155 sys::Memory::MF_READ | in LocalTrampolinePool() 156 sys::Memory::MF_EXEC); in LocalTrampolinePool() 168 sys::OwningMemoryBlock(sys::Memory::allocateMappedMemory( in grow() 170 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in grow() 187 if (auto EC = sys::Memory::protectMappedMemory( in grow() 189 sys::Memory::MF_READ | sys::Memory::MF_EXEC)) in grow() 328 sys::OwningMemoryBlock(sys::Memory::allocateMappedMemory( in create() 330 sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC)); in create() 343 if (auto EC = sys::Memory::protectMappedMemory( in create() [all …]
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Memory.h | 45 friend class Memory; variable 52 class Memory { 152 Memory::releaseMappedMemory(M); in ~OwningMemoryBlock() 162 EC = Memory::releaseMappedMemory(M); in release() 173 raw_ostream &operator<<(raw_ostream &OS, const Memory::ProtectionFlags &PF);
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | nvidia,tegra20-mc.yaml | 7 title: NVIDIA Tegra20 SoC Memory Controller 15 The Tegra20 Memory Controller merges request streams from various client 17 and returns response data to the various clients. The Memory Controller 21 Tegra20 Memory Controller includes the GART (Graphics Address Relocation 22 Table) which allows Memory Controller to provide a linear view of a
|
| 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 78 Memory clock rate in Hz.
|
| H A D | arm,pl35x-smc.yaml | 7 title: Arm PL35x Series Static Memory Controller (SMC) 13 The PL35x Static Memory Controller is a bus where you can connect two kinds 69 - description: Combined or Memory interface 0 IRQ 70 - description: Memory interface 1 IRQ
|
| H A D | nvidia,tegra20-emc.yaml | 7 title: NVIDIA Tegra20 SoC External Memory Controller 15 The External Memory Controller (EMC) interfaces with the off-chip SDRAM to 16 service the request stream sent from Memory Controller. The EMC also has 46 Phandle of the Memory Controller node. 72 Memory clock rate in kHz.
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/ |
| H A D | ARMAsmParser.cpp | 1121 if(!Memory.OffsetImm || Memory.OffsetRegNum) return false; in isThumbMemPC() 1680 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isMemTBB() 1687 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isMemTBH() 1688 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 || in isMemTBH() 1701 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isT2MemRegOffset() 1702 Memory.Alignment != 0 || Memory.BaseRegNum == ARM::PC) in isT2MemRegOffset() 1707 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3) in isT2MemRegOffset() 1715 if (!isGPRMem() || !Memory.OffsetRegNum || Memory.isNegative || in isMemThumbRR() 1763 Memory.BaseRegNum != ARM::SP || Memory.Alignment != 0) in isMemThumbSPI() 2964 Memory.ShiftImm, Memory.ShiftType); in addAddrMode2Operands() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLinkMemoryManager.cpp | 267 if (auto EC = sys::Memory::releaseMappedMemory(FinalizationSegments)) { in finalize() 286 if (auto EC = sys::Memory::releaseMappedMemory(FinalizationSegments)) in abandon() 288 if (auto EC = sys::Memory::releaseMappedMemory(StandardSegments)) in abandon() 312 if (auto EC = sys::Memory::protectMappedMemory(MB, Prot)) in applyProtections() 314 if (Prot & sys::Memory::MF_EXEC) in applyProtections() 315 sys::Memory::InvalidateInstructionCache(MB.base(), MB.allocatedSize()); in applyProtections() 376 const sys::Memory::ProtectionFlags ReadWrite = in allocate() 377 static_cast<sys::Memory::ProtectionFlags>(sys::Memory::MF_READ | in allocate() 378 sys::Memory::MF_WRITE); in allocate() 381 Slab = sys::Memory::allocateMappedMemory(SegsSizes->total(), nullptr, in allocate() [all …]
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/dma/ |
| H A D | fsl,imx-sdma.yaml | 7 title: Freescale Smart Direct Memory Access (SDMA) Controller for i.MX 82 - Memory Stick Host Controller: 13 83 - Shared Memory Stick Host Controller: 14 85 - Memory: 16 86 - FIFO type Memory: 17 88 - IPU Memory: 19
|
| H A D | fsl-imx-sdma.txt | 1 * Freescale Smart Direct Memory Access (SDMA) Controller for i.MX 46 13 Memory Stick Host Controller 47 14 Shared Memory Stick Host Controller 49 16 Memory 50 17 FIFO type Memory 52 19 IPU Memory
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
| H A D | SimpleExecutorMemoryManager.cpp | 26 auto MB = sys::Memory::allocateMappedMemory( in allocate() 27 Size, nullptr, sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC); in allocate() 103 if (auto EC = sys::Memory::releaseMappedMemory(MB)) in finalize() 133 if (auto EC = sys::Memory::protectMappedMemory( in finalize() 138 sys::Memory::InvalidateInstructionCache(Mem, Seg.Size); in finalize() 221 if (auto EC = sys::Memory::releaseMappedMemory(MB)) in deallocateImpl()
|
| /freebsd-14.2/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-14.2/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() 53 RingBufferBytes.size(), Memory, MemoryTags, in LLVMFuzzerTestOneInput()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MemoryMapper.cpp | 43 auto MB = sys::Memory::allocateMappedMemory( in reserve() 44 NumBytes, nullptr, sys::Memory::MF_READ | sys::Memory::MF_WRITE, EC); in reserve() 81 if (auto EC = sys::Memory::protectMappedMemory( in initialize() 87 sys::Memory::InvalidateInstructionCache(Base.toPtr<void *>(), Size); in initialize() 123 if (auto EC = sys::Memory::protectMappedMemory( in deinitialize() 125 sys::Memory::ProtectionFlags::MF_READ | in deinitialize() 126 sys::Memory::ProtectionFlags::MF_WRITE)) { in deinitialize() 162 auto EC = sys::Memory::releaseMappedMemory(MB); in release()
|
| /freebsd-14.2/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-14.2/tools/regression/sysvshm/ |
| H A D | README | 2 SysV IPC Shared Memory Regression Utility. 4 This regression utility will test the SysV Shared Memory facility
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/bus/ |
| H A D | mti,mips-cdmm.yaml | 7 title: MIPS Common Device Memory Map 10 Defines a location of the MIPS Common Device Memory Map registers.
|