[llvm] [CodingStandard] Add a rule about non-member definitions in CPP files (PR #126775)

Rahul Joshi via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 07:49:02 PST 2025


https://github.com/jurahul updated https://github.com/llvm/llvm-project/pull/126775

>From 8e9d2e71bbfa9023d6e8bc166f2162a40e821319 Mon Sep 17 00:00:00 2001
From: Rahul Joshi <rjoshi at nvidia.com>
Date: Tue, 11 Feb 2025 10:14:48 -0800
Subject: [PATCH] [CodingStandard] Add a rule about non-member definitions in
 CPP files

- Add a rule suggesting that non-member definitions in CPP files should
  be made static unless they are referenced outside that file.
---
 llvm/docs/CodingStandards.rst | 28 +++++++++++++++++-----------
 1 file changed, 17 insertions(+), 11 deletions(-)

diff --git a/llvm/docs/CodingStandards.rst b/llvm/docs/CodingStandards.rst
index d6d6ecf759cf3..cfd9ead6a79fb 100644
--- a/llvm/docs/CodingStandards.rst
+++ b/llvm/docs/CodingStandards.rst
@@ -1579,17 +1579,23 @@ clarification.
 
 .. _static:
 
-Anonymous Namespaces
-^^^^^^^^^^^^^^^^^^^^
-
-After talking about namespaces in general, you may be wondering about anonymous
-namespaces in particular.  Anonymous namespaces are a great language feature
-that tells the C++ compiler that the contents of the namespace are only visible
-within the current translation unit, allowing more aggressive optimization and
-eliminating the possibility of symbol name collisions.  Anonymous namespaces are
-to C++ as "static" is to C functions and global variables.  While "``static``"
-is available in C++, anonymous namespaces are more general: they can make entire
-classes private to a file.
+Restrict Visibility
+^^^^^^^^^^^^^^^^^^^
+
+Functions and variables should have the most restricted visibility possible.
+For class members, that means using appropriate `private`, `protected` or `public`
+keyword to restrict their access. For non-member functions, variables and classes,
+that means restricting visibility to a single `.cpp` file if it's not referenced
+outside that file.
+
+Visibility of file-scoped non-members variables and functions can be restricted to
+the current translation unit by using either `static` keyword or anonymous namespace.
+Anonymous namespaces are a great language feature that tells the C++ compiler that
+the contents of the namespace are only visible within the current translation unit,
+allowing more aggressive optimization and eliminating the possibility of symbol
+name collisions.  Anonymous namespaces are to C++ as `static` is to C functions and
+global variables.  While `static` is available in C++, anonymous namespaces are more
+general: they can make entire classes private to a file.
 
 The problem with anonymous namespaces is that they naturally want to encourage
 indentation of their body, and they reduce locality of reference: if you see a



More information about the llvm-commits mailing list