diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h index beff5e40610..53865da8460 100644 --- a/include/llvm/Analysis/DataStructure/DSNode.h +++ b/include/llvm/Analysis/DataStructure/DSNode.h @@ -285,11 +285,28 @@ public: void addGlobal(GlobalValue *GV); void mergeGlobals(const std::vector &RHS); void clearGlobals() { std::vector().swap(Globals); } - const std::vector &getGlobals() const { return Globals; } - typedef std::vector::const_iterator global_iterator; - global_iterator global_begin() const { return Globals.begin(); } - global_iterator global_end() const { return Globals.end(); } + /// getGlobalsList - Return the set of global leaders that are represented by + /// this node. Note that globals that are in this equivalence class but are + /// not leaders are not returned: for that, use addFullGlobalsList(). + const std::vector &getGlobalsList() const { return Globals; } + + /// addFullGlobalsList - Compute the full set of global values that are + /// represented by this node. Unlike getGlobalsList(), this requires fair + /// amount of work to compute, so don't treat this method call as free. + void addFullGlobalsList(std::vector &List) const; + + /// addFullFunctionList - Identical to addFullGlobalsList, but only return the + /// functions in the full list. + void addFullFunctionList(std::vector &List) const; + + /// globals_iterator/begin/end - Provide iteration methods over the global + /// value leaders set that is merged into this node. Like the getGlobalsList + /// method, these iterators do not return globals that are part of the + /// equivalence classes for globals in this node, but aren't leaders. + typedef std::vector::const_iterator globals_iterator; + globals_iterator globals_begin() const { return Globals.begin(); } + globals_iterator globals_end() const { return Globals.end(); } /// maskNodeTypes - Apply a mask to the node types bitfield.