原文来源于:https://www.yii666.com/article/421374.html

LLVM 编码规范

LLVM Coding Standards 官网 | 历史翻译版本 Github

  • 导论
  • 语言、库和标准
  • C++ 标准版本
  • C++ 标准库
  • Go 代码准则
  • 机械的代码问题
    • 代码格式化
    • 注释
      • 头文件
      • 类概述
      • method information
    • 注释格式化
    • 使用Doxygen注释
    • 错误和警告消息
    • #include 风格
    • 代码宽度
    • 空格
      • 格式化lambda如同代码块
      • 花括号初始化列表
    • 语言和编译器问题
      • 像错误一样对待编译警告
      • 编写可移植的代码
      • 不要使用 RTTI 或 Exceptions
      • 不要使用静态构造函数
      • 使用class和struct关键字
      • 不要使用花括号初始化列表调用构造函数
      • 使用auto类型推导提高代码可读性
      • 小心auto带来不必要的拷贝
      • 小心对指针排序带来的不确定性
      • 小心相同元素不确定的排序顺序
  • 风格问题
    • 上层问题
      • 头文件独立
      • 库层次
      • 尽可能减少 #include
      • 保持私有的内部头文件
      • 使用 namespace 限定符来实现之前声明的函数
      • 提前退出或 continue 以简化代码
      • return 之后不要使用 else
      • 将判断循环转换为判断函数
    • 底层问题
      • 合适的类型、函数、变量和枚举命名
      • 善用断言
      • 不要使用 using namesapce std
      • 为头文件中的类提供虚函数锚
      • 不要在全覆盖枚举的switch 中使用 default
      • 尽可能的使用基于范围的循环
      • 不要每次通过循环取 end()
      • 禁止包含 iostream
      • 使用 raw_stream
      • 避免 std::endl
      • 不要在class中声明的函数中使用 inline
    • 微观细节
      • 括号之前的空格
      • 推荐前置自增
      • namespace 缩进
      • 匿名 namespace
  • 其它参考

导论

This document describes coding standards that are used in the LLVM project. Although no coding standards should be regarded as absolute requirements to be followed in all instances, coding standards are particularly important for large-scale code bases that follow a library-based design (like LLVM).

While this document may provide guidance for some mechanical formatting issues, whitespace, or other “microscopic details”, these are not fixed standards. Always follow the golden rule: If you are extending, enhancing, or bug fixing already implemented code, use the style that is already being used so that the source is uniform and easy to follow.

Note that some code bases (e.g. libc++) have special reasons to deviate from the coding standards. For example, in the case of libc++, this is because the naming and other conventions are dictated by the C++ standard.

There are some conventions that are not uniformly followed in the code base (e.g. the naming convention). This is because they are relatively new, and a lot of code was written before they were put in place. Our long term goal is for the entire codebase to follow the convention, but we explicitly do not want patches that do large-scale reformatting of existing code. On the other hand, it is reasonable to rename the methods of a class if you’re about to change it in some other way. Please commit such changes separately to make code review easier.

The ultimate goal of these guidelines is to increase the readability and maintainability of our common source base.

本文档介绍在 LLVM 工程中使用的编码规范。尽管在任何情况下编码规范不应该被视为绝对遵循的需求,但是编码规范对于遵循基于库的设计(例如 LLVM)的大规模代码库而言尤为重要。

本文可能给一些机械的格式问题,空格或者其它细微的细节提供指引,不过没有固定的规范。始终遵守黄金规则: 使用当前的代码规范对已经实现的代码进行扩展,增强或者bug修复,这样源码风格统一并且易于遵守。

注意,某些代码库(如libc++)有特殊的理由偏离此代码规范。比方说libc++,其命名和其它约定是由C++标准决定的。

在代码库中有一些约定没有被统一遵循(如命名约定)。这是因为这些约定相对较新而非常多的代码在这些约定出现之前就已经存在了。我们长期目标是整个代码库都遵循约定,但是我们明确不希望出现对现有代码进行大规模重新格式化的补丁。另一方面,如果你要以其它方式进行修改,则重命名类的方法是合理的。请分别提交此类修改,以便更容易地进行代码审查。

这些准则的最终目标就是提高我们公共源码库的可读性和可维护性。

语言、库和标准

Most source code in LLVM and other LLVM projects using these coding standards is C++ code. There are some places where C code is used either due to environment restrictions, historical restrictions, or due to third-party source code imported into the tree. Generally, our preference is for standards conforming, modern, and portable C++ code as the implementation language of choice.

大部分在 LLVM 和其它 LLVM 项目中使用该代码规范的源码为C++代码。由于一些环境、历史限制或者引入至源码树中的第三方源码导致在某些地方存在C代码。通常而言,我们倾向于符合标准,现代和可移植的C++代码作为选择实现的语言。

C++ 标准版本

Unless otherwise documented, LLVM subprojects are written using standard C++14 code and avoid unnecessary vendor-specific extensions.

Nevertheless, we restrict ourselves to features which are available in the major toolchains supported as host compilers (see Getting Started with the LLVM System page, section Software).

Each toolchain provides a good reference for what it accepts:

  • Clang: https://clang.llvm.org/cxx_status.html
  • GCC: https://gcc.gnu.org/projects/cxx-status.html#cxx14
  • MSVC: https://msdn.microsoft.com/en-us/library/hh567368.aspx

除非另有说明,否则 LLVM 子项目使用 C++14 标准编写并且避免不必要的厂商定制扩展。然而,我们将自己限制在宿主编译器支持的主要工具链中的可用功能之中(见LLVM系统入门, 软件部分)。

每一个工具链都提供了一个好的参考:

  • Clang: https://clang.llvm.org/cxx_status.html
  • GCC: https://gcc.gnu.org/projects/cxx-status.html#cxx14
  • MSVC: https://msdn.microsoft.com/en-us/library/hh567368.aspx

C++ 标准库

Instead of implementing custom data structures, we encourage the use of C++ standard library facilities or LLVM support libraries whenever they are available for a particular task. LLVM and related projects emphasize and rely on the standard library facilities and the LLVM support libraries as much as possible.

LLVM support libraries (for example, ADT) implement specialized data structures or functionality missing in the standard library. Such libraries are usually implemented in the llvm namespace and follow the expected standard interface, when there is one.

When both C++ and the LLVM support libraries provide similar functionality, and there isn’t a specific reason to favor the C++ implementation, it is generally preferable to use the LLVM library. For example, llvm::DenseMap should almost always be used instead of std::map or std::unordered_map, and llvm::SmallVector should usually be used instead of std::vector.

We explicitly avoid some standard facilities, like the I/O streams, and instead use LLVM’s streams library (raw_ostream). More detailed information on these subjects is available in the LLVM Programmer’s Manual.

For more information about LLVM’s data structures and the tradeoffs they make, please consult that section of the programmer’s manual.

只要能用于特定的任务,我们推荐使用C++标准库或者LLVM支持的库设施,而不是自定义用户数据结构。LLVM和相关项目尽可能的突出和依赖标准库和LLVM支持的库设施。

llvm
llvm::DenseMapstd::mapstd::unordered_mapllvm::SmallVectorstd::vector

更多关于LLVM数据结构和做出权衡的信息,请参考 that section of the programmer’s manual。

Go 代码准则

Any code written in the Go programming language is not subject to the formatting rules below. Instead, we adopt the formatting rules enforced by the gofmt tool.

Go code should strive to be idiomatic. Two good sets of guidelines for what this means are Effective Go and Go Code Review Comments.

任何使用Go语言的写下的代码不受以下(指C++)的格式化规则约束,相反的,我们使用gofmt工具强制执行格式化规则。

Go 代码应该尽量符合习惯。Effective Go 和 Go Code Review Comments 是两套好的准则。

机械的代码问题

代码格式化

注释

Comments are important for readability and maintainability. When writing comments, write them as English prose, using proper capitalization, punctuation, etc. Aim to describe what the code is trying to do and why, not how it does it at a micro level. Here are a few important things to document:

注释对于可读性和可维护性非常重要。当写注释时,使用适当的大小写、标点符号等将其写成英文句子。专注于描述代码试图做什么和为什么这么做,不要从微观的角度去描述代码做的事情。以下是一些重要的记录:

头文件

Every source file should have a header on it that describes the basic purpose of the file. The standard header looks like this:

A few things to note about this particular format: The “-- C++ --” string on the first line is there to tell Emacs that the source file is a C++ file, not a C file (Emacs assumes .h files are C files by default).

This tag is not necessary in .cpp files. The name of the file is also on the first line, along with a very short description of the purpose of the file.

The next section in the file is a concise note that defines the license that the file is released under. This makes it perfectly clear what terms the source code can be distributed under and should not be modified in any way.

The main body is a Doxygen comment (identified by the /// comment marker instead of the usual //) describing the purpose of the file. The first sentence (or a passage beginning with \brief) is used as an abstract. Any additional information should be separated by a blank line. If an algorithm is based on a paper or is described in another source, provide a reference.

每一个源码文件应该有一个描述该文件基本用途的头部首部,标准的首部看起来像这样:

//===-- llvm/Instruction.h - Instruction class definition -------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file contains the declaration of the Instruction class, which is the
/// base class for all of the VM instructions.
///
//===----------------------------------------------------------------------===//
-*- C++ -*-

注意该标记在 .cpp 文件中不是必要的。文件名及一句简短的文件用途描述存在在文件的第一行。

文件的下一部分是一个简短的说明,它定义了文件发布所依据的 license。这样就清楚的说明了源代码在什么条件下可以发布,并且不能以任何形式进行修改。

/////\brief

类概述

Classes are a fundamental part of an object-oriented design. As such, a class definition should have a comment block that explains what the class is used for and how it works. Every non-trivial class is expected to have a doxygen comment block.

类是面向对象设计的基础部分。一个类定义应该有一个描述该类的用途和如何工作的注释块。每一个非平凡类都应该有一个doxygen注释块。

方法信息

Methods and global functions should also be documented. A quick note about what it does and a description of the edge cases is all that is necessary here. The reader should be able to understand how to use interfaces without reading the code itself.

Good things to talk about here are what happens when something unexpected happens, for instance, does the method return null?

方法和全局函数同样应该被记录。简单备注一下它的功能和对边缘情况的描述。读者应该能够理解如何在不阅读代码本书的情况下使用接口。

这里更值得讨论的事情是当意外出现时会发生什么,例如,方法是否返回null?

注释格式化

In general, prefer C++-style comments (// for normal comments, /// for doxygen documentation comments). There are a few cases when it is useful to use C-style (/* */) comments however:

Object.emitName(nullptr);
Object.emitName(/*Prefix=*/nullptr);

Commenting out large blocks of code is discouraged, but if you really have to do this (for documentation purposes or as a suggestion for debug printing), use #if 0 and #endif. These nest properly and are better behaved in general than C style comments.

/////
Object.emitName(nullptr);
Object.emitName(/*Prefix=*/nullptr);
#if 0#endif

使用doxygen注释

Use the \file command to turn the standard file header into a file-level comment.

Include descriptive paragraphs for all public interfaces (public classes, member and non-member functions). Avoid restating the information that can be inferred from the API name. The first sentence (or a paragraph beginning with \brief) is used as an abstract. Try to use a single sentence as the \brief adds visual clutter. Put detailed discussion into separate paragraphs.

To refer to parameter names inside a paragraph, use the \p name command. Don’t use the \arg name command since it starts a new paragraph that contains documentation for the parameter.

Wrap non-inline code examples in \code ... \endcode.

To document a function parameter, start a new paragraph with the \param name command. If the parameter is used as an out or an in/out parameter, use the \param [out] name or \param [in,out] name command, respectively.

To describe function return value, start a new paragraph with the \returns command.

A minimal documentation comment:

A documentation comment that uses all Doxygen features in a preferred way:

\file
\brief\brief
\p name\arg name
\code ... \endcode
\param name\param [out] name\param [in,out] name
\returns

一个最简短的文档注释 。。。

/// Sets the xyzzy property to \p Baz.
void setXyzzy(bool Baz);

一个首选的文档注释是使用所有的 doxygen 特性。

/// Does foo and bar.
///
/// Does not do foo the usual way if \p Baz is true.
///
/// Typical usage:
/// \code
/// fooBar(false, "quux", Res);
/// \endcode
///
/// \param Quux kind of foo to do.
/// \param [out] Result filled with bar sequence on foo success.
///
/// \returns true on success.
bool fooBar(bool Baz, StringRef Quux, std::vector<int> &Result);

Don’t duplicate the documentation comment in the header file and in the implementation file. Put the documentation comments for public APIs into the header file. Documentation comments for private APIs can go to the implementation file. In any case, implementation files can include additional comments (not necessarily in Doxygen markup) to explain implementation details as needed.

Don’t duplicate function or class name at the beginning of the comment. For humans it is obvious which function or class is being documented; automatic documentation processing tools are smart enough to bind the comment to the correct declaration.

不要在头文件和实现的文件中复制文档注释。将对公共API的文档注释放在头文件中,对私有API的文档注释可以放到实现的文件中。无论如何,可以按需在实现文件按中添加(在doxygen制作中不是必需的)额外的注释信息来解释实现的细节。

不要在注释的起始处复制函数或者类名称。对读者而言,哪个函数或者类被记录下来是显而易见的;自动的文档处理工具可以足够聪明的将注释绑定到正确的声明上去。

避免:

// Example.h:

// example - Does something important.
void example(); // Example.cpp: // example - Does something important.
void example() { ... }

推荐:

// Example.h:

/// Does something important.
void example(); // Example.cpp: /// Builds a B-tree in order to do foo. See paper by...
void example() { ... }

错误和警告消息

Clear diagnostic messages are important to help users identify and fix issues in their inputs. Use succinct but correct English prose that gives the user the context needed to understand what went wrong. Also, to match error message styles commonly produced by other tools, start the first sentence with a lower-case letter, and finish the last sentence without a period, if it would end in one otherwise. Sentences which end with different punctuation, such as “did you forget ‘;’?”, should still do so.

清晰的诊断消息对于帮助用户识别和修复问题而言非常重要,使用简短但正确的英文陈述可以给出需要的上下文让用户理解。同样,产生的错误信息的格式需要其它工具来匹配,第一句应该以小写字母开始,如果以一种其它方式结束这句话则结尾不带有句号。句子使用不同的标点符号结尾,像一些 “did you forget ‘;’?”, 则应该继续保持不同。

良好的错误消息示例:

error: file.o: section header 3 is corrupt. Size is 10 when it should be 20

不好的消息,因为没有提供有用的信息并且格式错误:

error: file.o: Corrupt section header.

As with other coding standards, individual projects, such as the Clang Static Analyzer, may have preexisting styles that do not conform to this. If a different formatting scheme is used consistently throughout the project, use that style instead. Otherwise, this standard applies to all LLVM tools, including clang, clang-tidy, and so on.

If the tool or project does not have existing functions to emit warnings or errors, use the error and warning handlers provided in Support/WithColor.h to ensure they are printed in the appropriate style, rather than printing to stderr directly.

When using report_fatal_error, follow the same standards for the message as regular error messages. Assertion messages and llvm_unreachable calls do not necessarily need to follow these same styles as they are automatically formatted, and thus these guidelines may not be suitable.

其它独立项目中的编码规范,如 Clang-Static-Analyzer,可能遗留不遵循该规范的风格。如果一个不同的格式化方案始终用于整个项目,则沿用那个风格。否则,该规范用于 LLVM 中的所有工具,包括 clang、clang-tidy 等等。

Support/WithColor.hstderr
report_fatal_errorllvm_unreachable

include 风格

Immediately after the header file comment (and include guards if working on a header file), the minimal list of #includes required by the file should be listed. We prefer these #includes to be listed in this order:

  • Main Module Header
  • Local/Private Headers
  • LLVM project/subproject headers (clang/..., lldb/..., llvm/..., etc)
  • System #includes

and each category should be sorted lexicographically by the full path.

The Main Module Header file applies to .cpp files which implement an interface defined by a .h file. This #include should always be included first regardless of where it lives on the file system. By including a header file first in the .cpp files that implement the interfaces, we ensure that the header does not have any hidden dependencies which are not explicitly #included in the header, but should be. It is also a form of documentation in the .cpp file to indicate where the interfaces it implements are defined.

LLVM project and subproject headers should be grouped from most specific to least specific, for the same reasons described above. For example, LLDB depends on both clang and LLVM, and clang depends on LLVM. So an LLDB source file should include lldb headers first, followed by clang headers, followed by llvm headers, to reduce the possibility (for example) of an LLDB header accidentally picking up a missing include due to the previous inclusion of that header in the main source file or some earlier header file. clang should similarly include its own headers before including llvm headers. This rule applies to all LLVM subprojects.

#include#include
#include

并且每一个种类的头文件完整路径应该做一个排序。

.cpp.h#include.cpp

LLVM 项目和子项目的头文件应该从最高优先级到最低优先级分组,理由同上。举个例子,LLDB 同时依赖 clang 和 LLVM,并且 clang 依赖 LLVM。所以一个 LLDB 源文件应该最先包含 LLDB ,其次是 clang 头文件,其次是 LLVM 头文件,这样做是为了在源文件中的头文件或更前的头文件包含情况下降低LLDB头文件包含缺失的可能。clang 同样的应该在包含LLVM文件之前包含其自身的头文件。这个规则适用于所有的 LLVM 的子项目。

代码宽度

Write your code to fit within 80 columns.

There must be some limit to the width of the code in order to allow developers to have multiple files side-by-side in windows on a modest display. If you are going to pick a width limit, it is somewhat arbitrary but you might as well pick something standard. Going with 90 columns (for example) instead of 80 columns wouldn’t add any significant value and would be detrimental to printing out code. Also many other projects have standardized on 80 columns, so some people have already configured their editors for it (vs something else, like 90 columns).

调整代码在80列以内。

代码的宽度限制是为了允许开发者同时在一个窗口中并排打开多个文件而可以合适的显示。如果你打算选择一个宽度限制,这个限制是任意的但是你同样需要选择一个标准。选择90列代替80列并不增加任何有意义的值并且将对输出代码有坏处。此外,有非常多个其它项目对80列进行了标准化,因此有些人为它对编辑器做了配置(对比其它的宽度,例如90列)。

空格

In all cases, prefer spaces to tabs in source files. People have different preferred indentation levels, and different styles of indentation that they like; this is fine. What isn’t fine is that different editors/viewers expand tabs out to different tab stops. This can cause your code to look completely unreadable, and it is not worth dealing with.

As always, follow the Golden Rule above: follow the style of existing code if you are modifying and extending it.

Do not add trailing whitespace. Some common editors will automatically remove trailing whitespace when saving a file which causes unrelated changes to appear in diffs and commits.

在所有情况下,在源文件中较之制表符更推荐空格。对于缩进级别和缩进的格式人们有不同的偏爱,这很好。不好的事情是不同的编辑器/阅读器将制表符扩展为不同的制表长度。这会造成你的代码看起来完全的不可读并且这样的情况不值得去处理。

一如既往,遵循黄金规则如上:如果要修改和扩展代码则遵循已存在的代码风格。

不要在结尾添加空格,一些常用的编辑器会在保存文件时自动的移除结尾的空格,这样导致在diff或者commit时产生不相关的改变。

类代码块格式化lambda

When formatting a multi-line lambda, format it like a block of code. If there is only one multi-line lambda in a statement, and there are no expressions lexically after it in the statement, drop the indent to the standard two space indent for a block of code, as if it were an if-block opened by the preceding part of the statement:

像格式化代码块一样格式化多行的lambda。如果语句中只有一个多行lambda,并且lambda之后没有词法表达式,将代码块下降标准的2空格缩进进行缩进,如同前面的语句打开的 if-block。

std::sort(foo.begin(), foo.end(), [&](Foo a, Foo b) -> bool {
if (a.blah < b.blah)
return true;
if (a.baz < b.baz)
return true;
return a.bam < b.bam;
});

To take best advantage of this formatting, if you are designing an API which accepts a continuation or single callable argument (be it a function object, or a std::function), it should be the last argument if at all possible.

If there are multiple multi-line lambdas in a statement, or additional parameters after the lambda, indent the block two spaces from the indent of the []:

为了充分利用这种格式,如果你将设计一个接受延长或者可调用的参数(函数对象,或者 std::function)的API,它应该尽可能的作为最后一个参数。

[]
dyn_switch(V->stripPointerCasts(),
[] (PHINode *PN) {
// process phis...
},
[] (SelectInst *SI) {
// process selects...
},
[] (LoadInst *LI) {
// process loads...
},
[] (AllocaInst *AI) {
// process allocas...
});

花括号初始化列表

Starting from C++11, there are significantly more uses of braced lists to perform initialization. For example, they can be used to construct aggregate temporaries in expressions. They now have a natural way of ending up nested within each other and within function calls in order to build up aggregates (such as option structs) from local variables.

The historically common formatting of braced initialization of aggregate variables does not mix cleanly with deep nesting, general expression contexts, function arguments, and lambdas. We suggest new code use a simple rule for formatting braced initialization lists: act as-if the braces were parentheses in a function call. The formatting rules exactly match those already well understood for formatting nested function calls. Examples:

This formatting scheme also makes it particularly easy to get predictable, consistent, and automatic formatting with tools like Clang Format.

从C++11开始,花括号列表执行初始化的用途明显变多。如,在表达式中构造临时集合。现在,他们有一种自然的方式结束,可以互相嵌套,也可以嵌套在函数叼哦那个之中,以便于从局部变量中构建集合(如结构体)。

{}()
foo({a, b, c}, {1, 2, 3});

llvm::Constant *Mask[] = {
llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 0),
llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 1),
llvm::ConstantInt::get(llvm::Type::getInt32Ty(getLLVMContext()), 2)};

这个格式化方案同样让工具例如 clang-format 可以非常简单的预测、一致的自动格式化。

语言和编译器问题

像错误一样对待编译警告

Compiler warnings are often useful and help improve the code. Those that are not useful, can be often suppressed with a small code change. For example, an assignment in the if condition is often a typo:文章地址https://www.yii666.com/article/421374.html

if
if (V = getValue()) {
...
}

Several compilers will print a warning for the code above. It can be suppressed by adding parentheses:

多数的编译器会针对于以上代码打印一条警告。可以通过添加一个括号来消除警告:

if ((V = getValue())) {
...
}

编写可移植的代码

In almost all cases, it is possible to write completely portable code. When you need to rely on non-portable code, put it behind a well-defined and well-documented interface.

在绝大数的情况下,尽可能的编写完全可移植的代码。当你需要依赖于不可移植的代码时,将其放入良好声明和良好的文档接口中。

不要使用 RTTI 或 Exceptions

In an effort to reduce code and executable size, LLVM does not use exceptions or RTTI (runtime type information, for example, dynamic_cast<>).

That said, LLVM does make extensive use of a hand-rolled form of RTTI that use templates like isa<>, cast<>, and dyn_cast<>. This form of RTTI is opt-in and can be added to any class.

为了尽量减小代码和可执行文件的大小,LLVM 未使用异常或者RTTI(运行时信息,如 dynamic_cast<>)。也就是说,LLVM确实使用了大量的手动滚动的RTTI的形式,该形式使用了像 isa<>,cast<> 和 dyn_cast<> 之类的模板。这种形式的RTTI是可选的并且可以添加至任何类中。

不要使用静态构造函数

Static constructors and destructors (e.g., global variables whose types have a constructor or destructor) should not be added to the code base, and should be removed wherever possible.

Globals in different source files are initialized in arbitrary order https://yosefk.com/c++fqa/ctors.html#fqa-10.12, making the code more difficult to reason about.

Static constructors have negative impact on launch time of programs that use LLVM as a library. We would really like for there to be zero cost for linking in an additional LLVM target or other library into an application, but static constructors undermine this goal.

静态构造函数和析构函数(如,包含构造和析构函数的全局变量)不应该添加到代码中,并且无论在哪都尽可能的删除它。

全局变量在不同的文件中的初始化顺序是任意的 https://yosefk.com/c++fqa/ctors.html#fqa-10.12,这样使代码更加难以推理。

将LLVM作为库使用时,静态构造函数在程序启动的时候具有负面的影响。我们真正希望将额外的LLVM目标或者其它库链接至应用程序中的开销为零,但是静态构造函数违背了这个目标。

使用class和struct关键字

In C++, the class and struct keywords can be used almost interchangeably. The only difference is when they are used to declare a class: class makes all members private by default while struct makes all members public by default.

  • All declarations and definitions of a given class or struct must use the same keyword. For example:
  • struct should be used when all members are declared public.
classstruct
// Avoid if `Example` is defined as a struct.
class Example; // OK.
struct Example; struct Example { ... };
// Avoid using `struct` here, use `class` instead.
struct Foo {
private:
int Data;
public:
Foo() : Data(0) { }
int getData() const { return Data; }
void setData(int D) { Data = D; }
}; // OK to use `struct`: all members are public.
struct Bar {
int Data;
Bar() : Data(0) { }
};

不要使用花括号初始化列表调用构造函数

Starting from C++11 there is a “generalized initialization syntax” which allows calling constructors using braced initializer lists. Do not use these to call constructors with non-trivial logic or if you care that you’re calling some particular constructor. Those should look like function calls using parentheses rather than like aggregate initialization. Similarly, if you need to explicitly name the type and call its constructor to create a temporary, don’t use a braced initializer list. Instead, use a braced initializer list (without any type for temporaries) when doing aggregate initialization or something notionally equivalent. Examples:

从C++11开始的通用初始化语法,允许使用花括号初始化列表来调用构造函数。调用非平凡逻辑的构造函数或者调用一些特定的构造函数时不要使用这个语法,这些情况应该看起来像函数调用一样使用圆括号而不是聚合初始化。同样的,如果你需要显式化类型名称并且调用其构造函数作为一个临时对象,也不要使用花括号初始化列表。相反的,当执行聚合初始化或等效的概念时,使用花括号初始化列表(无任何临时变量类型)。如:

class Foo {
public:
// Construct a Foo by reading data from the disk in the whizbang format, ...
Foo(std::string filename); // Construct a Foo by looking up the Nth element of some global data ...
Foo(int N); // ...
}; // The Foo constructor call is reading a file, don't use braces to call it.
std::fill(foo.begin(), foo.end(), Foo("name")); // The pair is being constructed like an aggregate, use braces.
bar_map.insert({my_key, my_value});

If you use a braced initializer list when initializing a variable, use an equals before the open curly brace:

当使用初始化列表初始化一个变量时,在开括号之前使用一个等号:

int data[] = {0, 1, 2, 3};

使用auto类型推导提高代码可读性

Some are advocating a policy of “almost always auto” in C++11, however LLVM uses a more moderate stance. Use auto if and only if it makes the code more readable or easier to maintain. Don’t “almost always” use auto, but do use auto with initializers like cast(...) or other places where the type is already obvious from the context. Another time when auto works well for these purposes is when the type would have been abstracted away anyways, often behind a container’s typedef such as std::vector::iterator.

Similarly, C++14 adds generic lambda expressions where parameter types can be auto. Use these where you would have used a template.

autocast(...)autotypedefstd::vector::iterator

同样的,C++14 新增类型可以为auto的通用lambda表达式,可以在原本使用模板的地方使用它。

小心auto带来的不必要拷贝

The convenience of auto makes it easy to forget that its default behavior is a copy. Particularly in range-based for loops, careless copies are expensive.

Use auto & for values and auto * for pointers unless you need to make a copy.

auto
auto &auto *
// Typically there's no reason to copy.
for (const auto &Val : Container) { observe(Val); }
for (auto &Val : Container) { Val.change(); } // Remove the reference if you really want a new copy.
for (auto Val : Container) { Val.change(); saveSomewhere(Val); } // Copy pointers, but make it clear that they're pointers.
for (const auto *Ptr : Container) { observe(*Ptr); }
for (auto *Ptr : Container) { Ptr->change(); }

小心对指针排序带来的不确定性

In general, there is no relative ordering among pointers. As a result, when unordered containers like sets and maps are used with pointer keys the iteration order is undefined. Hence, iterating such containers may result in non-deterministic code generation. While the generated code might work correctly, non-determinism can make it harder to reproduce bugs and debug the compiler.

In case an ordered result is expected, remember to sort an unordered container before iteration. Or use ordered containers like vector/MapVector/SetVector if you want to iterate pointer keys.

setmap
vector/MapVector/SetVector

小心相同元素不确定的排序顺序

std::sort uses a non-stable sorting algorithm in which the order of equal elements is not guaranteed to be preserved. Thus using std::sort for a container having equal elements may result in non-deterministic behavior. To uncover such instances of non-determinism, LLVM has introduced a new llvm::sort wrapper function. For an EXPENSIVE_CHECKS build this will randomly shuffle the container before sorting. Default to using llvm::sort instead of std::sort.

std::sortstd::sortllvm::sortEXPENSIVE_CHECKSllvm::sortstd::sort

风格问题

上层问题

头文件独立

Header files should be self-contained (compile on their own) and end in .h. Non-header files that are meant for inclusion should end in .inc and be used sparingly.

All header files should be self-contained. Users and refactoring tools should not have to adhere to special conditions to include the header. Specifically, a header should have header guards and include all other headers it needs.

There are rare cases where a file designed to be included is not self-contained. These are typically intended to be included at unusual locations, such as the middle of another file. They might not use header guards, and might not include their prerequisites. Name such files with the .inc extension. Use sparingly, and prefer self-contained headers when possible.

In general, a header should be implemented by one or more .cpp files. Each of these .cpp files should include the header that defines their interface first. This ensures that all of the dependences of the header have been properly added to the header itself, and are not implicit. System headers should be included after user headers for a translation unit.

.h.inc

所有的头文件都应该是独立的。用户或者重构工具不应该强制附加特定条件才能够包含这个头文件。特别的,一个头文件应该存在头文件保护和所有需要的其他头文件。

.inc
.cpp.cpp

库层次

A directory of header files (for example include/llvm/Foo) defines a library (Foo). Dependencies between libraries are defined by the LLVMBuild.txt file in their implementation (lib/Foo). One library (both its headers and implementation) should only use things from the libraries listed in its dependencies.

Some of this constraint can be enforced by classic Unix linkers (Mac & Windows linkers, as well as lld, do not enforce this constraint). A Unix linker searches left to right through the libraries specified on its command line and never revisits a library. In this way, no circular dependencies between libraries can exist.

This doesn’t fully enforce all inter-library dependencies, and importantly doesn’t enforce header file circular dependencies created by inline functions. A good way to answer the “is this layered correctly” would be to consider whether a Unix linker would succeed at linking the program if all inline functions were defined out-of-line. (& for all valid orderings of dependencies - since linking resolution is linear, it’s possible that some implicit dependencies can sneak through: A depends on B and C, so valid orderings are “C B A” or “B C A”, in both cases the explicit dependencies come before their use. But in the first case, B could still link successfully if it implicitly depended on C, or the opposite in the second case)

头文件目录(如 include/llvm/Foo)定义了库(Foo)。库之间的依赖在它们实现(lib/Foo)中的 LLVMBuild.txt 定义。一个库应该仅使用依赖所列出库的内容。

一些经典的Unix链接器(Mac & Windows 链接器,比如lld,不强制执行)可以强制执行某些约束。Unix 链接器从左往右在命令行中搜索特定的库并且不会重复访问同一个库。这种情况下,库之间就不存在循环依赖关系。

这样不会完全强制的执行所有的相互库依赖,且重要的是不会执行由内联函数带来的头文件循环依赖。回答是否正确分层的一个好方法是判断 Unix 链接器是否可以正确链接使用非内联函数代替内联函数的程序。(对于所有依赖的有效顺序 - 由于链接的方案是线性的,因此可能潜伏一些隐式的依赖:A 依赖于B和C,所以有效的顺序为“CBA” 或者“BCA”,两种显示的依赖都在使用之前出现。但对于第一种情况,B如果隐式的依赖于C仍然可以链接成功,或者在第二种情况,相反的依赖也可以链接成功)

尽可能的减少 #include

#include

But wait! Sometimes you need to have the definition of a class to use it, or to inherit from it. In these cases go ahead and #include that header file. Be aware however that there are many cases where you don’t need to have the full definition of a class. If you are using a pointer or reference to a class, you don’t need the header file. If you are simply returning a class instance from a prototyped function or method, you don’t need it. In fact, for most cases, you simply don’t need the definition of a class. And not #includeing speeds up compilation.

It is easy to try to go too overboard on this recommendation, however. You must include all of the header files that you are using — you can include them either directly or indirectly through another header file. To make sure that you don’t accidentally forget to include a header file in your module header, make sure to include your module header first in the implementation file (as mentioned above). This way there won’t be any hidden dependencies that you’ll find out about later.

#include
#include#include

这个建议很容易导致偏激的态度,然而,你必须包含所有正在使用的头文件,无论是直接还是间接从其它文件包含。为确保你不会意外的忘记在你的模块头文件中包含头文件,确认在实现文件中第一个包含你的模块头文件(就像上面提到的)。这样,你后面就会发现不会再有隐藏的依赖了。

保持私有的内部头文件

Many modules have a complex implementation that causes them to use more than one implementation (.cpp) file. It is often tempting to put the internal communication interface (helper classes, extra functions, etc) in the public module header file. Don’t do this!

If you really need to do something like this, put a private header file in the same directory as the source files, and include it locally. This ensures that your private interface remains private and undisturbed by outsiders.

It’s okay to put extra implementation methods in a public class itself. Just make them private (or protected) and all is well.

.cpp

如果你真的需要这么做的话,在相同的目录下放入一个私有的头文件让源文件局部包含。这样确保你的私有接口保留了私有属性并且不向外发布。

允许将扩展实现的方法放入到一个公共类自身中,但是需要让它们设为私有(保护),一切就正常。网址:yii666.com

使用 namespace 限定符莱实现前置声明的函数

When providing an out of line implementation of a function in a source file, do not open namespace blocks in the source file. Instead, use namespace qualifiers to help ensure that your definition matches an existing declaration. Do this:

当源文件中提供一个非内联(或者叫外部实现)的函数实现时,不要在源文件中打开 namespace 块(namespace xx {})。相反的,使用 namespace 标记符来帮助确保你的定义匹配上已经存在的声明。像这样:

// Foo.h
namespace llvm {
int foo(const char *s);
} // Foo.cpp
#include "Foo.h"
using namespace llvm;
int llvm::foo(const char *s) {
// ...
}

Doing this helps to avoid bugs where the definition does not match the declaration from the header. For example, the following C++ code defines a new overload of llvm::foo instead of providing a definition for the existing function declared in the header:

llvm::foo
// Foo.cpp
#include "Foo.h"
namespace llvm {
int foo(char *s) { // Mismatch between "const char *" and "char *"
}
} // end namespace llvm

This error will not be caught until the build is nearly complete, when the linker fails to find a definition for any uses of the original function. If the function were instead defined with a namespace qualifier, the error would have been caught immediately when the definition was compiled.

Class method implementations must already name the class and new overloads cannot be introduced out of line, so this recommendation does not apply to them.

这个错误在快构建完成之前不能够被捕获,直到产生函数调用找不到函数定义的链接错误。如果这个函数使用namespace标记符来代替,这个错误直接在这个定义编译时被捕获。

类方法实现必须类已经被命名并且新的重载不能够引入到外部,所以这个建议对它们不起作用。

提前退出或 continue 以简化代码

When reading code, keep in mind how much state and how many previous decisions have to be remembered by the reader to understand a block of code. Aim to reduce indentation where possible when it doesn’t make it more difficult to understand the code. One great way to do this is by making use of early exits and the continue keyword in long loops. Consider this code that does not use an early exit:

continue
Value *doSomething(Instruction *I) {
if (!I->isTerminator() &&
I->hasOneUse() && doOtherThing(I)) {
... some long code ....
} return 0;
}

This code has several problems if the body of the 'if' is large. When you’re looking at the top of the function, it isn’t immediately clear that this only does interesting things with non-terminator instructions, and only applies to things with the other predicates. Second, it is relatively difficult to describe (in comments) why these predicates are important because the if statement makes it difficult to lay out the comments. Third, when you’re deep within the body of the code, it is indented an extra level. Finally, when reading the top of the function, it isn’t clear what the result is if the predicate isn’t true; you have to read to the end of the function to know that it returns null.

It is much preferred to format the code like this:

if

更好的代码格式如下:

Value *doSomething(Instruction *I) {
// Terminators never need 'something' done to them because ...
if (I->isTerminator())
return 0; // We conservatively avoid transforming instructions with multiple uses
// because goats like cheese.
if (!I->hasOneUse())
return 0; // This is really just here for example.
if (!doOtherThing(I))
return 0; ... some long code ....
}

This fixes these problems. A similar problem frequently happens in for loops. A silly example is something like this:

for
for (Instruction &I : BB) {
if (auto *BO = dyn_cast<BinaryOperator>(&I)) {
Value *LHS = BO->getOperand(0);
Value *RHS = BO->getOperand(1);
if (LHS != RHS) {
...
}
}
}

When you have very, very small loops, this sort of structure is fine. But if it exceeds more than 10-15 lines, it becomes difficult for people to read and understand at a glance. The problem with this sort of code is that it gets very nested very quickly. Meaning that the reader of the code has to keep a lot of context in their brain to remember what is going immediately on in the loop, because they don’t know if/when the if conditions will have elses etc. It is strongly preferred to structure the loop like this:

ifelse
for (Instruction &I : BB) {
auto *BO = dyn_cast<BinaryOperator>(&I);
if (!BO) continue; Value *LHS = BO->getOperand(0);
Value *RHS = BO->getOperand(1);
if (LHS == RHS) continue; ...
}

This has all the benefits of using early exits for functions: it reduces nesting of the loop, it makes it easier to describe why the conditions are true, and it makes it obvious to the reader that there is no else coming up that they have to push context into their brain for. If a loop is large, this can be a big understandability win.

else

return 之后不要使用 else

For similar reasons as above (reduction of indentation and easier reading), please do not use 'else' or 'else if' after something that interrupts control flow — like return, break, continue, goto, etc. For example:

elseelse ifreturnbreakcontinuegoto
case 'J': {
if (Signed) {
Type = Context.getsigjmp_bufType();
if (Type.isNull()) {
Error = ASTContext::GE_Missing_sigjmp_buf;
return QualType();
} else {
break; // Unnecessary.
}
} else {
Type = Context.getjmp_bufType();
if (Type.isNull()) {
Error = ASTContext::GE_Missing_jmp_buf;
return QualType();
} else {
break; // Unnecessary.
}
}
}

更好的做法如下:

case 'J':
if (Signed) {
Type = Context.getsigjmp_bufType();
if (Type.isNull()) {
Error = ASTContext::GE_Missing_sigjmp_buf;
return QualType();
}
} else {
Type = Context.getjmp_bufType();
if (Type.isNull()) {
Error = ASTContext::GE_Missing_jmp_buf;
return QualType();
}
}
break;

这个例子更好的写法如下:

case 'J':
if (Signed)
Type = Context.getsigjmp_bufType();
else
Type = Context.getjmp_bufType(); if (Type.isNull()) {
Error = Signed ? ASTContext::GE_Missing_sigjmp_buf :
ASTContext::GE_Missing_jmp_buf;
return QualType();
}
break;

The idea is to reduce indentation and the amount of code you have to keep track of when reading the code.

这样做的目的是减少缩进和在阅读代码时需要跟踪的代码量。

将判断循环转换为判断函数

It is very common to write small loops that just compute a boolean value. There are a number of ways that people commonly write these, but an example of this sort of thing is:

通过短循环计算一个 boolean 值是非常常见的写法。有一系列的常见方式,比如这种:

bool FoundFoo = false;
for (unsigned I = 0, E = BarList.size(); I != E; ++I)
if (BarList[I]->isFoo()) {
FoundFoo = true;
break;
} if (FoundFoo) {
...
}

Instead of this sort of loop, we prefer to use a predicate function (which may be static) that uses early exits:

相对这种循环的方式,我们更偏向使用一个使用尽早退出的判断函数(可能是静态):

/// \returns true if the specified list has an element that is a foo.
static bool containsFoo(const std::vector<Bar*> &List) {
for (unsigned I = 0, E = List.size(); I != E; ++I)
if (List[I]->isFoo())
return true;
return false;
}
... if (containsFoo(BarList)) {
...
}

There are many reasons for doing this: it reduces indentation and factors out code which can often be shared by other code that checks for the same predicate. More importantly, it forces you to pick a name for the function, and forces you to write a comment for it. In this silly example, this doesn’t add much value. However, if the condition is complex, this can make it a lot easier for the reader to understand the code that queries for this predicate. Instead of being faced with the in-line details of how we check to see if the BarList contains a foo, we can trust the function name and continue reading with better locality.

BarListfoo

底层问题

合适的类型、函数、变量和枚举命名

Poorly-chosen names can mislead the reader and cause bugs. We cannot stress enough how important it is to use descriptive names. Pick names that match the semantics and role of the underlying entities, within reason. Avoid abbreviations unless they are well known. After picking a good name, make sure to use consistent capitalization for the name, as inconsistency requires clients to either memorize the APIs or to look it up to find the exact spelling.

In general, names should be in camel case (e.g. TextFileReader and isLValue()). Different kinds of declarations have different rules:

  • Type names (including classes, structs, enums, typedefs, etc) should be nouns and start with an upper-case letter (e.g. TextFileReader).
  • Variable names should be nouns (as they represent state). The name should be camel case, and start with an upper case letter (e.g. Leader or Boats).
  • Function names should be verb phrases (as they represent actions), and command-like function should be imperative. The name should be camel case, and start with a lower case letter (e.g. openFile() or isFoo()).
  • Enum declarations (e.g. enum Foo {...}) are types, so they should follow the naming conventions for types. A common use for enums is as a discriminator for a union, or an indicator of a subclass. When an enum is used for something like this, it should have a Kind suffix (e.g. ValueKind).
  • Enumerators (e.g. enum { Foo, Bar }) and public member variables should start with an upper-case letter, just like types. Unless the enumerators are defined in their own small namespace or inside a class, enumerators should have a prefix corresponding to the enum declaration name. For example, enum ValueKind { ... }; may contain enumerators like VK_Argument, VK_BasicBlock, etc. Enumerators that are just convenience constants are exempt from the requirement for a prefix. For instance:

选择糟糕的命名会误导读者和造成bug。我们怎么强调描述性名称的重要性都不足为过。在合理的范围内选择语义和基本实体规则相匹配的命名。避免缩写除非约定成俗。在取好一个名字之后,确保为命名使用一致的大写,因为不一致的大写需要客户端去记忆这个API或者查找准确的拼写。

TextFileReaderisLValue()
enum {
MaxSize = 42,
Density = 12
};

As an exception, classes that mimic STL classes can have member names in STL’s style of lower-case words separated by underscores (e.g. begin(), push_back(), and empty()). Classes that provide multiple iterators should add a singular prefix to begin() and end() (e.g. global_begin() and use_begin()).

Here are some examples:

begin()push_back()empty()begin()end()global_begin()use_begin()

一个简单的例子:网址:yii666.com<

class VehicleMaker {
...
Factory<Tire> F; // Avoid: a non-descriptive abbreviation.
Factory<Tire> Factory; // Better: more descriptive.
Factory<Tire> TireFactory; // Even better: if VehicleMaker has more than one
// kind of factories.
}; Vehicle makeVehicle(VehicleType Type) {
VehicleMaker M; // Might be OK if scope is small.
Tire Tmp1 = M.makeTire(); // Avoid: 'Tmp1' provides no information.
Light Headlight = M.makeLight("head"); // Good: descriptive.
...
}

善用断言

Use the “assert” macro to its fullest. Check all of your preconditions and assumptions, you never know when a bug (not necessarily even yours) might be caught early by an assertion, which reduces debugging time dramatically. The “” header file is probably already included by the header files you are using, so it doesn’t cost anything to use it.

To further assist with debugging, make sure to put some kind of error message in the assertion statement, which is printed if the assertion is tripped. This helps the poor debugger make sense of why an assertion is being made and enforced, and hopefully what to do about it. Here is one complete example:

assert

为了进一步的协助调试,确保将一些种类的错误消息放入到断言语句中,当断言被触发时消息就被打印出来。这样可以帮助弱鸡调试器理解断言是为何存在和执行的,并且所期望做的事情。这里有一个完整的示例:

inline Value *getOperand(unsigned I) {
assert(I < Operands.size() && "getOperand() out of range!");
return Operands[I];
}

一些更多的示例:

assert(Ty->isPointerType() && "Can't allocate a non-pointer type!");

assert((Opcode == Shl || Opcode == Shr) && "ShiftInst Opcode invalid!");

assert(idx < getNumSuccessors() && "Successor # out of range!");

assert(V1.getType() == V2.getType() && "Constant types must be identical!");

assert(isa<PHINode>(Succ->front()) && "Only works on PHId BBs!");

In the past, asserts were used to indicate a piece of code that should not be reached. These were typically of the form:

在过去,断言惯用于指示一小段不应该被达成的代码。一个典型的形式如下:

assert(0 && "Invalid radix for integer literal");

This has a few issues, the main one being that some compilers might not understand the assertion, or warn about a missing return in builds where assertions are compiled out.

Today, we have something much better: llvm_unreachable:

llvm_unreachable
llvm_unreachable("Invalid radix for integer literal");

When assertions are enabled, this will print the message if it’s ever reached and then exit the program. When assertions are disabled (i.e. in release builds), llvm_unreachable becomes a hint to compilers to skip generating code for this branch. If the compiler does not support this, it will fall back to the “abort” implementation.

Use llvm_unreachable to mark a specific point in code that should never be reached. This is especially desirable for addressing warnings about unreachable branches, etc., but can be used whenever reaching a particular code path is unconditionally a bug (not originating from user input; see below) of some kind. Use of assert should always include a testable predicate (as opposed to assert(false)).

Neither assertions or llvm_unreachable will abort the program on a release build. If the error condition can be triggered by user input then the recoverable error mechanism described in LLVM Programmer’s Manual should be used instead. In cases where this is not practical, report_fatal_error may be used.

Another issue is that values used only by assertions will produce an “unused value” warning when assertions are disabled. For example, this code will warn:

llvm_unreachableabort
llvm_unreachableassertassert(false)

其它的问题是当断言被禁用时,仅在断言中使用的值将产生一个“值未使用”的警告。举个例子,这些代码将发出警告:

unsigned Size = V.size();
assert(Size > 42 && "Vector smaller than it should be"); bool NewToSet = Myset.insert(Value);
assert(NewToSet && "The value shouldn't be in the set yet");

These are two interesting different cases. In the first case, the call to V.size() is only useful for the assert, and we don’t want it executed when assertions are disabled. Code like this should move the call into the assert itself. In the second case, the side effects of the call must happen whether the assert is enabled or not. In this case, the value should be cast to void to disable the warning. To be specific, it is preferred to write the code like this:

V.size()void
assert(V.size() > 42 && "Vector smaller than it should be");

bool NewToSet = Myset.insert(Value); (void)NewToSet;
assert(NewToSet && "The value shouldn't be in the set yet");

不要使用 using namesapce std

In LLVM, we prefer to explicitly prefix all identifiers from the standard namespace with an “std::” prefix, rather than rely on “using namespace std;”.

In header files, adding a 'using namespace XXX' directive pollutes the namespace of any source file that #includes the header, creating maintenance issues.

In implementation files (e.g. .cpp files), the rule is more of a stylistic rule, but is still important. Basically, using explicit namespace prefixes makes the code clearer, because it is immediately obvious what facilities are being used and where they are coming from. And more portable, because namespace clashes cannot occur between LLVM code and other namespaces. The portability rule is important because different standard library implementations expose different symbols (potentially ones they shouldn’t), and future revisions to the C++ standard will add more symbols to the std namespace. As such, we never use 'using namespace std;' in LLVM.

The exception to the general rule (i.e. it’s not an exception for the std namespace) is for implementation files. For example, all of the code in the LLVM project implements code that lives in the ‘llvm’ namespace. As such, it is ok, and actually clearer, for the .cpp files to have a 'using namespace llvm;' directive at the top, after the #includes. This reduces indentation in the body of the file for source editors that indent based on braces, and keeps the conceptual context cleaner. The general form of this rule is that any .cpp file that implements code in any namespace may use that namespace (and its parents’), but should not use any others.

std::using namespace std;

在头文件中,添加一个"using namespace XXX"指令污染所有包含这个头文件的源文件的命名空间,将造成维护的问题。

.cpp
std.cppusing namespace std;.cpp

为头文件中的类提供虚函数锚

If a class is defined in a header file and has a vtable (either it has virtual methods or it derives from classes with virtual methods), it must always have at least one out-of-line virtual method in the class. Without this, the compiler will copy the vtable and RTTI into every .o file that #includes the header, bloating .o file sizes and increasing link times.文章来源地址:https://www.yii666.com/article/421374.html

.o.o

不要在全覆盖枚举的switch 中使用 default

-Wswitch warns if a switch, without a default label, over an enumeration does not cover every enumeration value. If you write a default label on a fully covered switch over an enumeration then the -Wswitch warning won’t fire when new elements are added to that enumeration. To help avoid adding these kinds of defaults, Clang has the warning -Wcovered-switch-default which is off by default but turned on when building LLVM with a version of Clang that supports the warning.

A knock-on effect of this stylistic requirement is that when building LLVM with GCC you may get warnings related to “control may reach end of non-void function” if you return from each case of a covered switch-over-enum because GCC assumes that the enum expression may take any representable value, not just those of individual enumerators. To suppress this warning, use llvm_unreachable after the switch.

-Wswitch-Wswitch-Wcoverd-switch-default
llvm_unreachable

尽可能的使用基于范围的循环

The introduction of range-based for loops in C++11 means that explicit manipulation of iterators is rarely necessary. We use range-based for loops wherever possible for all newly added code. For example:

forfor
BasicBlock *BB = ...
for (Instruction &I : *BB)
... use I ...

不要每次通过循环计算 end()

In cases where range-based for loops can’t be used and it is necessary to write an explicit iterator-based loop, pay close attention to whether end() is re-evaluated on each loop iteration. One common mistake is to write a loop in this style:

forend()
BasicBlock *BB = ...
for (auto I = BB->begin(); I != BB->end(); ++I)
... use I ...

The problem with this construct is that it evaluates “BB->end()” every time through the loop. Instead of writing the loop like this, we strongly prefer loops to be written so that they evaluate it once before the loop starts. A convenient way to do this is like so:

BB->end()
BasicBlock *BB = ...
for (auto I = BB->begin(), E = BB->end(); I != E; ++I)
... use I ...

The observant may quickly point out that these two loops may have different semantics: if the container (a basic block in this case) is being mutated, then “BB->end()” may change its value every time through the loop and the second loop may not in fact be correct. If you actually do depend on this behavior, please write the loop in the first form and add a comment indicating that you did it intentionally.

Why do we prefer the second form (when correct)? Writing the loop in the first form has two problems. First it may be less efficient than evaluating it at the start of the loop. In this case, the cost is probably minor — a few extra loads every time through the loop. However, if the base expression is more complex, then the cost can rise quickly. I’ve seen loops where the end expression was actually something like: “SomeMap[X]->end()” and map lookups really aren’t cheap. By writing it in the second form consistently, you eliminate the issue entirely and don’t even have to think about it.

The second (even bigger) issue is that writing the loop in the first form hints to the reader that the loop is mutating the container (a fact that a comment would handily confirm!). If you write the loop in the second form, it is immediately obvious without even looking at the body of the loop that the container isn’t being modified, which makes it easier to read the code and understand what it does.

While the second form of the loop is a few extra keystrokes, we do strongly prefer it.

BB->end()
SomeMap[X]->end()

第二种(甚至更大)的问题是第一种形式的循环暗示读者循环正在改变容器(注释手动确定的事实下)。如果你写了第二种形式的循环,甚至在不观察循环体的情况下,容器不发生改变也是显而易见的,这样更利于代码阅读和理解做了什么。

即使第二种循环的形式有一些额外的按键,我们依然强烈推荐。

禁止包含 iostream

iostream
sstreamiostreamraw_ostreamstd::ostream

新代码应该总是使用 raw_ostream 来写文件,或者 llvm::MemoryBuffer 来读文件。

使用 raw_stream

LLVM includes a lightweight, simple, and efficient stream implementation in llvm/Support/raw_ostream.h, which provides all of the common features of std::ostream. All new code should use raw_ostream instead of ostream.

Unlike std::ostream, raw_ostream is not a template and can be forward declared as class raw_ostream. Public headers should generally not include the raw_ostream header, but use forward declarations and constant references to raw_ostream instances.

llvm/Support/raw_ostream.hstd::ostreamraw_ostreamostream
std::ostreamraw_ostreamclass raw_ostreamraw_ostream

避免 std::endl

std::endliostreams
std::endliostreamflush
std::cout << std::endl;
std::cout << '\n' << std::flush;

Most of the time, you probably have no reason to flush the output stream, so it’s better to use a literal '\n'.

'\n'

不要在class中声明的函数中使用 inline

A member function defined in a class definition is implicitly inline, so don’t put the inline keyword in this case.

inline

不要这样做:

class Foo {
public:
inline void bar() {
// ...
}
};

而是这样:

class Foo {
public:
void bar() {
// ...
}
};

微观细节

This section describes preferred low-level formatting guidelines along with reasoning on why we prefer them.

这个部分描述了推荐低级的格式化规则及推荐它们的理由。

括号之前的空格

Put a space before an open parenthesis only in control flow statements, but not in normal function call expressions and function-like macros. For example:

在控制流语句的开括号前添加空格,而在一般的函数调用表达式或者类函数的宏前这样做。举个例子:

if (X) ...
for (I = 0; I != 100; ++I) ...
while (LLVMRocks) ... somefunc(42);
assert(3 != 4 && "laws of math are failing me"); A = foo(42, 92) + bar(X);

The reason for doing this is not completely arbitrary. This style makes control flow operators stand out more, and makes expressions flow better.

这样做的理由并不是任意的,这种格式让控制流操作符更加突出并且让表达式更流畅。

推荐前置自增

Hard fast rule: Preincrement (++X) may be no slower than postincrement (X++) and could very well be a lot faster than it. Use preincrementation whenever possible.

The semantics of postincrement include making a copy of the value being incremented, returning it, and then preincrementing the “work value”. For primitive types, this isn’t a big deal. But for iterators, it can be a huge issue (for example, some iterators contains stack and set objects in them… copying an iterator could invoke the copy ctor’s of these as well). In general, get in the habit of always using preincrement, and you won’t have a problem.

固定规则:前置自增(++X)可能不比后置自增(X++)慢并且很可能比后置自增快得多。无论何时京可能使用前置自增。

后置自增的语义上包含拷贝被递增的值,返回它,再前递增这个 “工作值”。对于基本类型,这样做没什么大不了的。但是对于迭代器,这样做是一个很大的问题(举个例子,一些迭代器中包含 stack 和 set 对象,拷贝这些迭代器同样可能会调用这些对象的拷贝构造函数)。通常而言,养成总是使用前置自增的习惯,就不会有问题。

namespace 缩进

In general, we strive to reduce indentation wherever possible. This is useful because we want code to fit into 80 columns without excessive wrapping, but also because it makes it easier to understand the code. To facilitate this and avoid some insanely deep nesting on occasion, don’t indent namespaces. If it helps readability, feel free to add a comment indicating what namespace is being closed by a }. For example:

}
namespace llvm {
namespace knowledge { /// This class represents things that Smith can have an intimate
/// understanding of and contains the data associated with it.
class Grokable {
...
public:
explicit Grokable() { ... }
virtual ~Grokable() = 0; ... }; } // end namespace knowledge
} // end namespace llvm

Feel free to skip the closing comment when the namespace being closed is obvious for any reason. For example, the outer-most namespace in a header file is rarely a source of confusion. But namespaces both anonymous and named in source files that are being closed half way through the file probably could use clarification.

当由于任何原因而关闭的命名空间很明显时,请随时跳过结束注释。例如,头文件中最外面的名称空间很少引起混乱。但是匿名命名空间和源文件中半途被关闭的命名空间可能需要说明。

匿名 namespace

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.

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 random function definition in a C++ file, it is easy to see if it is marked static, but seeing if it is in an anonymous namespace requires scanning a big chunk of the file.

Because of this, we have a simple guideline: make anonymous namespaces as small as possible, and only use them for class declarations. For example:

static

匿名命名空间的问题在于它们自然希望鼓励缩进其主体,并且降低了引用的位置:如果你在C++文件中随机看函数定义,则很容易看到它是否标记为静态,但它是否位于匿名命名空间中,需要扫描文件的很大一部分。

由此,我们有一个简单的规则:让匿名命名空间尽可能的小,并且仅在类声明时使用,举个栗子:

namespace {
class StringSort {
...
public:
StringSort(...)
bool operator<(const char *RHS) const;
};
} // end anonymous namespace static void runHelper() {
...
} bool StringSort::operator<(const char *RHS) const {
...
}

Avoid putting declarations other than classes into anonymous namespaces:

避免将类之外的声明放入命名空间:

namespace {

// ... many declarations ...

void runHelper() {
...
} // ... many declarations ... } // end anonymous namespace

When you are looking at “runHelper” in the middle of a large C++ file, you have no immediate way to tell if this function is local to the file. In contrast, when the function is marked static, you don’t need to cross-reference faraway places in the file to tell that the function is local.

当你看到大规模的C++文件中部看到 "runHelper" 时,你无法立即判断这是否是文件局部函数。相反,如果这个文件被标记为静态,则你不需要在这个文件中交叉查看更远的地方就能说出这个文件是局部的。

其它参考

A lot of these comments and recommendations have been culled from other sources. Two particularly important books for our work are:

  1. Effective C++ by Scott Meyers. Also interesting and useful are “More Effective C++” and “Effective STL” by the same author.
  2. Large-Scale C++ Software Design by John Lakos

If you get some free time, and you haven’t read them: do so, you might learn something.

大量注释和推荐是从其它来源中挑选出来的,对于我们工作特别重要的两本书:

  1. Effective C++, Scott Meyers 著。同样有趣和有用的是“More Effective C++” 和 “Effective STL”,它们是来自同一个作者.
  2. Large-Scale C++ Software Design, John Lakos著。

If you get some free time, and you haven’t read them: do so, you might learn something.

如果你有一些空间时间的化,并且还没有阅读过他们:那么,你可能会学到一些东西。