| Index: src/IceLiveness.h
|
| diff --git a/src/IceLiveness.h b/src/IceLiveness.h
|
| index da2c52ea47142543a778fed88308c366fa0f8408..895138d3556bb29a8c38fd630172d7781a8afb4c 100644
|
| --- a/src/IceLiveness.h
|
| +++ b/src/IceLiveness.h
|
| @@ -96,6 +96,7 @@ public:
|
| resize(Index);
|
| return &Nodes[Index].LiveEnd;
|
| }
|
| + bool getRangeMask(SizeT Index) const { return RangeMask[Index]; }
|
|
|
| private:
|
| void initInternal(NodeList::const_iterator FirstNode,
|
| @@ -116,6 +117,9 @@ private:
|
| /// LiveToVarMap is analogous to LivenessNode::LiveToVarMap, but for
|
| /// non-local variables.
|
| std::vector<Variable *> LiveToVarMap;
|
| + /// RangeMask[Variable::Number] indicates whether we want to track that
|
| + /// Variable's live range.
|
| + llvm::BitVector RangeMask;
|
| };
|
|
|
| } // end of namespace Ice
|
|
|