reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
116 bool isMetadata() const { return K == Metadata; } 118 bool isText() const { return K == Text || K == ExecuteOnly; } 118 bool isText() const { return K == Text || K == ExecuteOnly; } 120 bool isExecuteOnly() const { return K == ExecuteOnly; } 123 return K == ReadOnly || isMergeableCString() || 128 return K == Mergeable1ByteCString || K == Mergeable2ByteCString || 128 return K == Mergeable1ByteCString || K == Mergeable2ByteCString || 129 K == Mergeable4ByteCString; 131 bool isMergeable1ByteCString() const { return K == Mergeable1ByteCString; } 132 bool isMergeable2ByteCString() const { return K == Mergeable2ByteCString; } 133 bool isMergeable4ByteCString() const { return K == Mergeable4ByteCString; } 136 return K == MergeableConst4 || K == MergeableConst8 || 136 return K == MergeableConst4 || K == MergeableConst8 || 137 K == MergeableConst16 || K == MergeableConst32; 137 K == MergeableConst16 || K == MergeableConst32; 139 bool isMergeableConst4() const { return K == MergeableConst4; } 140 bool isMergeableConst8() const { return K == MergeableConst8; } 141 bool isMergeableConst16() const { return K == MergeableConst16; } 142 bool isMergeableConst32() const { return K == MergeableConst32; } 149 return K == ThreadData || K == ThreadBSS; 149 return K == ThreadData || K == ThreadBSS; 152 bool isThreadBSS() const { return K == ThreadBSS; } 153 bool isThreadData() const { return K == ThreadData; } 159 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; } 159 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; } 159 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; } 160 bool isBSSLocal() const { return K == BSSLocal; } 161 bool isBSSExtern() const { return K == BSSExtern; } 163 bool isCommon() const { return K == Common; } 165 bool isData() const { return K == Data; } 168 return K == ReadOnlyWithRel; 173 Res.K = K;