Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h103 class Addressable {
117 Addressable(const Addressable &) = delete;
118 Addressable &operator=(const Addressable &) = default;
119 Addressable(Addressable &&) = delete;
120 Addressable &operator=(Addressable &&) = default;
150 class Block : public Addressable {
540 Addressable &getAddressable() { in getAddressable()
650 Addressable *Base = nullptr;
827 Addressable *A = in createAddressable()
828 reinterpret_cast<Addressable *>(Allocator.Allocate<Addressable>()); in createAddressable()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DGCNSubtarget.h1130 unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const { in getMaxNumSGPRs() argument
1131 return AMDGPU::IsaInfo::getMaxNumSGPRs(this, WavesPerEU, Addressable); in getMaxNumSGPRs()
/llvm-project-15.0.7/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
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dintrinsics.cpp135 static constexpr TypePattern Addressable{AnyType, KindCode::addressable}; variable
304 {"target", Addressable, Rank::known, Optionality::optional}},
506 {"is_contiguous", {{"array", Addressable, Rank::anyOrAssumedRank}},
526 {"loc", {{"loc_argument", Addressable, Rank::anyOrAssumedRank}},
665 {"present", {{"a", Addressable, Rank::anyOrAssumedRank}}, DefaultLogical,
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp774 bool Addressable) { in getMaxNumSGPRs() argument
780 return Addressable ? AddressableNumSGPRs : 108; in getMaxNumSGPRs()
781 if (Version.Major >= 8 && !Addressable) in getMaxNumSGPRs()
H A DAMDGPUBaseInfo.h238 bool Addressable);