[clang] [llvm] [DataLayout] Introduce sentinel pointer value (PR #131557)

Shilei Tian via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 08:41:34 PDT 2025


================
@@ -552,6 +553,11 @@ class DataLayout {
   ///
   /// This includes an explicitly requested alignment (if the global has one).
   Align getPreferredAlign(const GlobalVariable *GV) const;
+
+  /// Returns the sentinel pointer value for a given address space. If the
+  /// address space is invalid, it defaults to the sentinel pointer value of
+  /// address space 0, aligning with the behavior of \p getPointerSpec.
+  APInt getSentinelPointerValue(unsigned AS) const;
----------------
shiltian wrote:

I'd prefer to leave some space for future extension. The challenging part is how to "encode" it. Do we really want to allow something like `0xfffdddfffddd` in the data layout string?

https://github.com/llvm/llvm-project/pull/131557


More information about the llvm-commits mailing list