Home
last modified time | relevance | path

Searched refs:Addressable (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h105 class Addressable {
109 Addressable(orc::ExecutorAddr Address, bool IsDefined) in Addressable() function
112 Addressable(orc::ExecutorAddr Address) in Addressable() function
119 Addressable(const Addressable &) = delete;
120 Addressable &operator=(const Addressable &) = default;
121 Addressable(Addressable &&) = delete;
122 Addressable &operator=(Addressable &&) = default;
152 class Block : public Addressable {
159 : Addressable(Address, true), Parent(&Parent), Size(Size) { in Block()
175 : Addressable(Address, true), Parent(&Parent), Data(Content.data()), in Block()
[all …]
/openbsd-src/sys/dev/onewire/
H A Donewiredevs26 family DS2405 0x05 Addressable Switch
35 family DS2406 0x12 Addressable Switch + 1kb NVRAM
47 family DS2408 0x29 8-channel Addressable Switch
51 family DS2413 0x3a 2-channel Addressable Switch
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DGCNSubtarget.h1166 unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const { in getMaxNumSGPRs() argument
1167 return AMDGPU::IsaInfo::getMaxNumSGPRs(this, WavesPerEU, Addressable); in getMaxNumSGPRs()
H A DGCNSchedStrategy.cpp85 unsigned Addressable = AMDGPU::IsaInfo::getAddressableNumVGPRs(&ST); in initialize() local
86 unsigned VGPRBudget = alignDown(Addressable / TargetOccupancy, Granule); in initialize()
/openbsd-src/gnu/llvm/llvm/docs/
H A DJITLink.rst199 * ``Addressable`` -- A node in the link graph that can be assigned an address
202 Absolute and external symbols are represented using plain ``Addressable``
206 * ``Block`` -- An ``Addressable`` node that has ``Content`` (or is marked as
243 * ``Symbol`` -- An offset from an ``Addressable`` (often a ``Block``), with an
324 ``Symbol`` nodes and one set of ``Addressable`` nodes. Each ``Symbol`` node has
325 one (implicit) edge to its target ``Addressable``. Each ``Block`` has a set of
/openbsd-src/gnu/gcc/gcc/config/mt/
H A DABI.txt83 Addressable automatic variables on the stack are addressed with positive
/openbsd-src/gnu/gcc/gcc/config/iq2000/
H A Dabi91 Addressable automatic variables on the stack are addressed with positive
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp967 bool Addressable) { in getMaxNumSGPRs() argument
973 return Addressable ? AddressableNumSGPRs : 108; in getMaxNumSGPRs()
974 if (Version.Major >= 8 && !Addressable) in getMaxNumSGPRs()
H A DAMDGPUBaseInfo.h251 bool Addressable);