//===-------- JITLink_DWARFRecordSectionSplitter.cpp - JITLink-------------===// // // 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 // //===----------------------------------------------------------------------===// #include "llvm/ExecutionEngine/JITLink/DWARFRecordSectionSplitter.h" #include "llvm/Support/BinaryStreamReader.h" #define DEBUG_TYPE … namespace llvm { namespace jitlink { DWARFRecordSectionSplitter::DWARFRecordSectionSplitter(StringRef SectionName) : … { … } Error DWARFRecordSectionSplitter::operator()(LinkGraph &G) { … } Error DWARFRecordSectionSplitter::processBlock( LinkGraph &G, Block &B, LinkGraph::SplitBlockCache &Cache) { … } } // namespace jitlink } // namespace llvm