Files
clang-p2996/llvm/lib/CodeGenData/CMakeLists.txt
Kyungwoo Lee d00f1c14dc [CGData] Outlined Hash Tree (#89792)
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.

This is a patch for
https://discourse.llvm.org/t/rfc-enhanced-machine-outliner-part-2-thinlto-nolto/78753.
2024-07-07 09:15:54 +09:00

15 lines
233 B
CMake

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
)