| Index: src/IceLiveness.cpp
|
| diff --git a/src/IceLiveness.cpp b/src/IceLiveness.cpp
|
| index f3c4516d6a223e7b7e0a92b1df5c4c4fb9ecd441..551a40067e5174c6af72542b9a3af5a332854fb3 100644
|
| --- a/src/IceLiveness.cpp
|
| +++ b/src/IceLiveness.cpp
|
| @@ -6,17 +6,18 @@
|
| // License. See LICENSE.TXT for details.
|
| //
|
| //===----------------------------------------------------------------------===//
|
| -//
|
| -// This file provides some of the support for the Liveness class. In
|
| -// particular, it handles the sparsity representation of the mapping
|
| -// between Variables and CfgNodes. The idea is that since most
|
| -// variables are used only within a single basic block, we can
|
| -// partition the variables into "local" and "global" sets. Instead of
|
| -// sizing and indexing vectors according to Variable::Number, we
|
| -// create a mapping such that global variables are mapped to low
|
| -// indexes that are common across nodes, and local variables are
|
| -// mapped to a higher index space that is shared across nodes.
|
| -//
|
| +///
|
| +/// \file
|
| +/// This file provides some of the support for the Liveness class. In
|
| +/// particular, it handles the sparsity representation of the mapping
|
| +/// between Variables and CfgNodes. The idea is that since most
|
| +/// variables are used only within a single basic block, we can
|
| +/// partition the variables into "local" and "global" sets. Instead of
|
| +/// sizing and indexing vectors according to Variable::Number, we
|
| +/// create a mapping such that global variables are mapped to low
|
| +/// indexes that are common across nodes, and local variables are
|
| +/// mapped to a higher index space that is shared across nodes.
|
| +///
|
| //===----------------------------------------------------------------------===//
|
|
|
| #include "IceLiveness.h"
|
|
|