-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This defines the OutlinedHashTree class. It contains sequences of stable hash values of instructions that have been outlined. This OutlinedHashTree can be used to track the outlined instruction sequences across modules. A trie structure is used in its implementation, allowing for a compact sharing of common prefixes.
- Loading branch information
1 parent
75c515f
commit 2c26019
Showing
10 changed files
with
702 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
//===- OutlinedHashTree.h --------------------------------------*- 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 | ||
// | ||
//===---------------------------------------------------------------------===// | ||
// | ||
// This defines the OutlinedHashTree class. It contains sequences of stable | ||
// hash values of instructions that have been outlined. This OutlinedHashTree | ||
// can be used to track the outlined instruction sequences across modules. | ||
// | ||
//===---------------------------------------------------------------------===// | ||
|
||
#ifndef LLVM_CODEGENDATA_OUTLINEDHASHTREE_H | ||
#define LLVM_CODEGENDATA_OUTLINEDHASHTREE_H | ||
|
||
#include "llvm/ADT/StableHashing.h" | ||
#include "llvm/ObjectYAML/YAML.h" | ||
#include "llvm/Support/raw_ostream.h" | ||
|
||
#include <unordered_map> | ||
#include <vector> | ||
|
||
namespace llvm { | ||
|
||
/// A HashNode is an entry in an OutlinedHashTree, holding a hash value | ||
/// and a collection of Successors (other HashNodes). If a HashNode has | ||
/// a positive terminal value (Terminals > 0), it signifies the end of | ||
/// a hash sequence with that occurrence count. | ||
struct HashNode { | ||
/// The hash value of the node. | ||
stable_hash Hash; | ||
/// The number of terminals in the sequence ending at this node. | ||
unsigned Terminals; | ||
/// The successors of this node. | ||
std::unordered_map<stable_hash, std::unique_ptr<HashNode>> Successors; | ||
}; | ||
|
||
/// HashNodeStable is the serialized, stable, and compact representation | ||
/// of a HashNode. | ||
struct HashNodeStable { | ||
llvm::yaml::Hex64 Hash; | ||
unsigned Terminals; | ||
std::vector<unsigned> SuccessorIds; | ||
}; | ||
|
||
class OutlinedHashTree { | ||
|
||
using EdgeCallbackFn = | ||
std::function<void(const HashNode *, const HashNode *)>; | ||
using NodeCallbackFn = std::function<void(const HashNode *)>; | ||
|
||
using HashSequence = std::vector<stable_hash>; | ||
using HashSequencePair = std::pair<std::vector<stable_hash>, unsigned>; | ||
|
||
public: | ||
/// Walks every edge and node in the OutlinedHashTree and calls CallbackEdge | ||
/// for the edges and CallbackNode for the nodes with the stable_hash for | ||
/// the source and the stable_hash of the sink for an edge. These generic | ||
/// callbacks can be used to traverse a OutlinedHashTree for the purpose of | ||
/// print debugging or serializing it. | ||
void walkGraph(NodeCallbackFn CallbackNode, | ||
EdgeCallbackFn CallbackEdge = nullptr, | ||
bool SortedWalk = false) const; | ||
|
||
/// Release all hash nodes except the root hash node. | ||
void clear() { | ||
assert(getRoot()->Hash == 0 && getRoot()->Terminals == 0); | ||
getRoot()->Successors.clear(); | ||
} | ||
|
||
/// \returns true if the hash tree has only the root node. | ||
bool empty() { return size() == 1; } | ||
|
||
/// \returns the size of a OutlinedHashTree by traversing it. If | ||
/// \p GetTerminalCountOnly is true, it only counts the terminal nodes | ||
/// (meaning it returns the the number of hash sequences in the | ||
/// OutlinedHashTree). | ||
size_t size(bool GetTerminalCountOnly = false) const; | ||
|
||
/// \returns the depth of a OutlinedHashTree by traversing it. | ||
size_t depth() const; | ||
|
||
/// \returns the root hash node of a OutlinedHashTree. | ||
const HashNode *getRoot() const { return Root.get(); } | ||
HashNode *getRoot() { return Root.get(); } | ||
|
||
/// Inserts a \p Sequence into the this tree. The last node in the sequence | ||
/// will increase Terminals. | ||
void insert(const HashSequencePair &SequencePair); | ||
|
||
/// Merge a \p OtherTree into this Tree. | ||
void merge(const OutlinedHashTree *OtherTree); | ||
|
||
/// \returns the matching count if \p Sequence exists in the OutlinedHashTree. | ||
unsigned find(const HashSequence &Sequence) const; | ||
|
||
OutlinedHashTree() { Root = std::make_unique<HashNode>(); } | ||
|
||
private: | ||
std::unique_ptr<HashNode> Root; | ||
}; | ||
|
||
} // namespace llvm | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
//===- OutlinedHashTreeRecord.h --------------------------------*- 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 | ||
// | ||
//===---------------------------------------------------------------------===// | ||
// | ||
// This defines the OutlinedHashTreeRecord class. This class holds the outlined | ||
// hash tree for both serialization and deserialization processes. It utilizes | ||
// two data formats for serialization: raw binary data and YAML. | ||
// These two formats can be used interchangeably. | ||
// | ||
//===---------------------------------------------------------------------===// | ||
|
||
#ifndef LLVM_CODEGENDATA_OUTLINEDHASHTREERECORD_H | ||
#define LLVM_CODEGENDATA_OUTLINEDHASHTREERECORD_H | ||
|
||
#include "llvm/CodeGenData/OutlinedHashTree.h" | ||
|
||
namespace llvm { | ||
|
||
using IdHashNodeStableMapTy = std::map<unsigned, HashNodeStable>; | ||
using IdHashNodeMapTy = std::map<unsigned, HashNode *>; | ||
using HashNodeIdMapTy = std::unordered_map<const HashNode *, unsigned>; | ||
|
||
struct OutlinedHashTreeRecord { | ||
std::unique_ptr<OutlinedHashTree> HashTree; | ||
|
||
OutlinedHashTreeRecord() { HashTree = std::make_unique<OutlinedHashTree>(); } | ||
OutlinedHashTreeRecord(std::unique_ptr<OutlinedHashTree> HashTree) | ||
: HashTree(std::move(HashTree)){}; | ||
|
||
/// Serialize the outlined hash tree to a raw_ostream. | ||
void serialize(raw_ostream &OS) const; | ||
/// Deserialize the outlined hash tree from a raw_ostream. | ||
void deserialize(const unsigned char *&Ptr); | ||
/// Serialize the outlined hash tree to a YAML stream. | ||
void serializeYAML(yaml::Output &YOS) const; | ||
/// Deserialize the outlined hash tree from a YAML stream. | ||
void deserializeYAML(yaml::Input &YIS); | ||
|
||
/// Merge the other outlined hash tree into this one. | ||
void merge(const OutlinedHashTreeRecord &Other) { | ||
HashTree->merge(Other.HashTree.get()); | ||
} | ||
|
||
/// \returns true if the outlined hash tree is empty. | ||
bool empty() const { return HashTree->empty(); } | ||
|
||
/// Print the outlined hash tree in a YAML format. | ||
void print(raw_ostream &OS = llvm::errs()) const { | ||
yaml::Output YOS(OS); | ||
serializeYAML(YOS); | ||
} | ||
|
||
private: | ||
/// Convert the outlined hash tree to stable data. | ||
void convertToStableData(IdHashNodeStableMapTy &IdNodeStableMap) const; | ||
|
||
/// Convert the stable data back to the outlined hash tree. | ||
void convertFromStableData(const IdHashNodeStableMapTy &IdNodeStableMap); | ||
}; | ||
|
||
} // end namespace llvm | ||
|
||
#endif // LLVM_CODEGENDATA_OUTLINEDHASHTREERECORD_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
add_llvm_component_library(LLVMCodeGenData | ||
OutlinedHashTree.cpp | ||
OutlinedHashTreeRecord.cpp | ||
|
||
ADDITIONAL_HEADER_DIRS | ||
${LLVM_MAIN_INCLUDE_DIR}/llvm/CodeGenData | ||
|
||
DEPENDS | ||
intrinsics_gen | ||
|
||
LINK_COMPONENTS | ||
Core | ||
Support | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
//===-- OutlinedHashTree.cpp ----------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// An OutlinedHashTree is a Trie that contains sequences of stable hash values | ||
// of instructions that have been outlined. This OutlinedHashTree can be used | ||
// to understand the outlined instruction sequences collected across modules. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "llvm/CodeGenData/OutlinedHashTree.h" | ||
|
||
#include <stack> | ||
#include <tuple> | ||
|
||
#define DEBUG_TYPE "outlined-hash-tree" | ||
|
||
using namespace llvm; | ||
|
||
void OutlinedHashTree::walkGraph(NodeCallbackFn CallbackNode, | ||
EdgeCallbackFn CallbackEdge, | ||
bool SortedWalk) const { | ||
std::stack<const HashNode *> Stack; | ||
Stack.push(getRoot()); | ||
|
||
while (!Stack.empty()) { | ||
const auto *Current = Stack.top(); | ||
Stack.pop(); | ||
if (CallbackNode) | ||
CallbackNode(Current); | ||
|
||
auto HandleNext = [&](const HashNode *Next) { | ||
if (CallbackEdge) | ||
CallbackEdge(Current, Next); | ||
Stack.push(Next); | ||
}; | ||
if (SortedWalk) { | ||
std::map<stable_hash, const HashNode *> SortedSuccessors; | ||
for (const auto &P : Current->Successors) | ||
SortedSuccessors[P.first] = P.second.get(); | ||
for (const auto &P : SortedSuccessors) | ||
HandleNext(P.second); | ||
} else { | ||
for (const auto &P : Current->Successors) | ||
HandleNext(P.second.get()); | ||
} | ||
} | ||
} | ||
|
||
size_t OutlinedHashTree::size(bool GetTerminalCountOnly) const { | ||
size_t Size = 0; | ||
walkGraph([&Size, GetTerminalCountOnly](const HashNode *N) { | ||
Size += (N && (!GetTerminalCountOnly || N->Terminals)); | ||
}); | ||
return Size; | ||
} | ||
|
||
size_t OutlinedHashTree::depth() const { | ||
size_t Size = 0; | ||
std::unordered_map<const HashNode *, size_t> DepthMap; | ||
walkGraph([&Size, &DepthMap]( | ||
const HashNode *N) { Size = std::max(Size, DepthMap[N]); }, | ||
[&DepthMap](const HashNode *Src, const HashNode *Dst) { | ||
size_t Depth = DepthMap[Src]; | ||
DepthMap[Dst] = Depth + 1; | ||
}); | ||
return Size; | ||
} | ||
|
||
void OutlinedHashTree::insert(const HashSequencePair &SequencePair) { | ||
const auto &Sequence = SequencePair.first; | ||
unsigned Count = SequencePair.second; | ||
HashNode *Current = getRoot(); | ||
|
||
for (stable_hash StableHash : Sequence) { | ||
auto I = Current->Successors.find(StableHash); | ||
if (I == Current->Successors.end()) { | ||
std::unique_ptr<HashNode> Next = std::make_unique<HashNode>(); | ||
HashNode *NextPtr = Next.get(); | ||
NextPtr->Hash = StableHash; | ||
Current->Successors.emplace(StableHash, std::move(Next)); | ||
Current = NextPtr; | ||
} else | ||
Current = I->second.get(); | ||
} | ||
Current->Terminals += Count; | ||
} | ||
|
||
void OutlinedHashTree::merge(const OutlinedHashTree *Tree) { | ||
HashNode *Dst = getRoot(); | ||
const HashNode *Src = Tree->getRoot(); | ||
std::stack<std::pair<HashNode *, const HashNode *>> Stack; | ||
Stack.push({Dst, Src}); | ||
|
||
while (!Stack.empty()) { | ||
auto [DstNode, SrcNode] = Stack.top(); | ||
Stack.pop(); | ||
if (!SrcNode) | ||
continue; | ||
DstNode->Terminals += SrcNode->Terminals; | ||
|
||
for (auto &[Hash, NextSrcNode] : SrcNode->Successors) { | ||
HashNode *NextDstNode; | ||
auto I = DstNode->Successors.find(Hash); | ||
if (I == DstNode->Successors.end()) { | ||
auto NextDst = std::make_unique<HashNode>(); | ||
NextDstNode = NextDst.get(); | ||
NextDstNode->Hash = Hash; | ||
DstNode->Successors.emplace(Hash, std::move(NextDst)); | ||
} else | ||
NextDstNode = I->second.get(); | ||
|
||
Stack.push({NextDstNode, NextSrcNode.get()}); | ||
} | ||
} | ||
} | ||
|
||
unsigned OutlinedHashTree::find(const HashSequence &Sequence) const { | ||
const HashNode *Current = getRoot(); | ||
for (stable_hash StableHash : Sequence) { | ||
const auto I = Current->Successors.find(StableHash); | ||
if (I == Current->Successors.end()) | ||
return 0; | ||
Current = I->second.get(); | ||
} | ||
return Current->Terminals; | ||
} |
Oops, something went wrong.