mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 21:55:39 +08:00
[NFC][flang] Reorder const and RT_API_ATTRS.
Clean-up to keep the type qualifier next to the type. Reviewers: klausler Reviewed By: klausler Pull Request: https://github.com/llvm/llvm-project/pull/85180
This commit is contained in:
@@ -127,7 +127,7 @@ namespace cfi_internal {
|
||||
// because a struct cannot be empty.
|
||||
extern "C++" template <typename T> struct FlexibleArray : T {
|
||||
RT_API_ATTRS T &operator[](int index) { return *(this + index); }
|
||||
const RT_API_ATTRS T &operator[](int index) const { return *(this + index); }
|
||||
RT_API_ATTRS const T &operator[](int index) const { return *(this + index); }
|
||||
RT_API_ATTRS operator T *() { return this; }
|
||||
RT_API_ATTRS operator const T *() const { return this; }
|
||||
};
|
||||
|
||||
@@ -102,7 +102,7 @@ public:
|
||||
: derivedType_{dt}, len_{0} {}
|
||||
RT_API_ATTRS DescriptorAddendum &operator=(const DescriptorAddendum &);
|
||||
|
||||
const RT_API_ATTRS typeInfo::DerivedType *derivedType() const {
|
||||
RT_API_ATTRS const typeInfo::DerivedType *derivedType() const {
|
||||
return derivedType_;
|
||||
}
|
||||
RT_API_ATTRS DescriptorAddendum &set_derivedType(
|
||||
@@ -204,7 +204,7 @@ public:
|
||||
ISO::CFI_attribute_t attribute = CFI_attribute_other);
|
||||
|
||||
RT_API_ATTRS ISO::CFI_cdesc_t &raw() { return raw_; }
|
||||
const RT_API_ATTRS ISO::CFI_cdesc_t &raw() const { return raw_; }
|
||||
RT_API_ATTRS const ISO::CFI_cdesc_t &raw() const { return raw_; }
|
||||
RT_API_ATTRS std::size_t ElementBytes() const { return raw_.elem_len; }
|
||||
RT_API_ATTRS int rank() const { return raw_.rank; }
|
||||
RT_API_ATTRS TypeCode type() const { return TypeCode{raw_.type}; }
|
||||
@@ -225,7 +225,7 @@ public:
|
||||
RT_API_ATTRS Dimension &GetDimension(int dim) {
|
||||
return *reinterpret_cast<Dimension *>(&raw_.dim[dim]);
|
||||
}
|
||||
const RT_API_ATTRS Dimension &GetDimension(int dim) const {
|
||||
RT_API_ATTRS const Dimension &GetDimension(int dim) const {
|
||||
return *reinterpret_cast<const Dimension *>(&raw_.dim[dim]);
|
||||
}
|
||||
|
||||
@@ -345,7 +345,7 @@ public:
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
const RT_API_ATTRS DescriptorAddendum *Addendum() const {
|
||||
RT_API_ATTRS const DescriptorAddendum *Addendum() const {
|
||||
if (raw_.f18Addendum != 0) {
|
||||
return reinterpret_cast<const DescriptorAddendum *>(
|
||||
&GetDimension(rank()));
|
||||
@@ -448,7 +448,7 @@ public:
|
||||
RT_API_ATTRS Descriptor &descriptor() {
|
||||
return *reinterpret_cast<Descriptor *>(storage_);
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &descriptor() const {
|
||||
RT_API_ATTRS const Descriptor &descriptor() const {
|
||||
return *reinterpret_cast<const Descriptor *>(storage_);
|
||||
}
|
||||
|
||||
|
||||
@@ -95,7 +95,7 @@ inline RT_API_ATTRS bool CompareDerivedType(
|
||||
return a == b || CompareDerivedTypeNames(a->name(), b->name());
|
||||
}
|
||||
|
||||
static const RT_API_ATTRS typeInfo::DerivedType *GetDerivedType(
|
||||
static RT_API_ATTRS const typeInfo::DerivedType *GetDerivedType(
|
||||
const Descriptor &desc) {
|
||||
if (const DescriptorAddendum * addendum{desc.Addendum()}) {
|
||||
if (const auto *derived{addendum->derivedType()}) {
|
||||
|
||||
@@ -58,7 +58,7 @@ public:
|
||||
Automatic = 4
|
||||
};
|
||||
|
||||
const RT_API_ATTRS Descriptor &name() const { return name_.descriptor(); }
|
||||
RT_API_ATTRS const Descriptor &name() const { return name_.descriptor(); }
|
||||
RT_API_ATTRS Genre genre() const { return genre_; }
|
||||
RT_API_ATTRS TypeCategory category() const {
|
||||
return static_cast<TypeCategory>(category_);
|
||||
@@ -66,17 +66,17 @@ public:
|
||||
RT_API_ATTRS int kind() const { return kind_; }
|
||||
RT_API_ATTRS int rank() const { return rank_; }
|
||||
RT_API_ATTRS std::uint64_t offset() const { return offset_; }
|
||||
const RT_API_ATTRS Value &characterLen() const { return characterLen_; }
|
||||
const RT_API_ATTRS DerivedType *derivedType() const {
|
||||
RT_API_ATTRS const Value &characterLen() const { return characterLen_; }
|
||||
RT_API_ATTRS const DerivedType *derivedType() const {
|
||||
return derivedType_.descriptor().OffsetElement<const DerivedType>();
|
||||
}
|
||||
const RT_API_ATTRS Value *lenValue() const {
|
||||
RT_API_ATTRS const Value *lenValue() const {
|
||||
return lenValue_.descriptor().OffsetElement<const Value>();
|
||||
}
|
||||
const RT_API_ATTRS Value *bounds() const {
|
||||
RT_API_ATTRS const Value *bounds() const {
|
||||
return bounds_.descriptor().OffsetElement<const Value>();
|
||||
}
|
||||
const RT_API_ATTRS char *initialization() const { return initialization_; }
|
||||
RT_API_ATTRS const char *initialization() const { return initialization_; }
|
||||
|
||||
RT_API_ATTRS std::size_t GetElementByteSize(const Descriptor &) const;
|
||||
RT_API_ATTRS std::size_t GetElements(const Descriptor &) const;
|
||||
@@ -205,27 +205,27 @@ class DerivedType {
|
||||
public:
|
||||
~DerivedType(); // never defined
|
||||
|
||||
const RT_API_ATTRS Descriptor &binding() const {
|
||||
RT_API_ATTRS const Descriptor &binding() const {
|
||||
return binding_.descriptor();
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &name() const { return name_.descriptor(); }
|
||||
RT_API_ATTRS const Descriptor &name() const { return name_.descriptor(); }
|
||||
RT_API_ATTRS std::uint64_t sizeInBytes() const { return sizeInBytes_; }
|
||||
const RT_API_ATTRS Descriptor &uninstatiated() const {
|
||||
RT_API_ATTRS const Descriptor &uninstatiated() const {
|
||||
return uninstantiated_.descriptor();
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &kindParameter() const {
|
||||
RT_API_ATTRS const Descriptor &kindParameter() const {
|
||||
return kindParameter_.descriptor();
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &lenParameterKind() const {
|
||||
RT_API_ATTRS const Descriptor &lenParameterKind() const {
|
||||
return lenParameterKind_.descriptor();
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &component() const {
|
||||
RT_API_ATTRS const Descriptor &component() const {
|
||||
return component_.descriptor();
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &procPtr() const {
|
||||
RT_API_ATTRS const Descriptor &procPtr() const {
|
||||
return procPtr_.descriptor();
|
||||
}
|
||||
const RT_API_ATTRS Descriptor &special() const {
|
||||
RT_API_ATTRS const Descriptor &special() const {
|
||||
return special_.descriptor();
|
||||
}
|
||||
RT_API_ATTRS bool hasParent() const { return hasParent_; }
|
||||
@@ -241,14 +241,14 @@ public:
|
||||
return lenParameterKind().Elements();
|
||||
}
|
||||
|
||||
const RT_API_ATTRS DerivedType *GetParentType() const;
|
||||
RT_API_ATTRS const DerivedType *GetParentType() const;
|
||||
|
||||
// Finds a data component by name in this derived type or its ancestors.
|
||||
const RT_API_ATTRS Component *FindDataComponent(
|
||||
RT_API_ATTRS const Component *FindDataComponent(
|
||||
const char *name, std::size_t nameLen) const;
|
||||
|
||||
// O(1) look-up of special procedure bindings
|
||||
const RT_API_ATTRS SpecialBinding *FindSpecialBinding(
|
||||
RT_API_ATTRS const SpecialBinding *FindSpecialBinding(
|
||||
SpecialBinding::Which which) const {
|
||||
auto bitIndex{static_cast<std::uint32_t>(which)};
|
||||
auto bit{std::uint32_t{1} << bitIndex};
|
||||
|
||||
Reference in New Issue
Block a user