/* * Copyright (c) 2017 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "bpf_module.h" namespace ebpf { class SourceDebugger { public: SourceDebugger( llvm::Module *mod, sec_map_def §ions, const std::string &fn_prefix, const std::string &mod_src, std::map &src_dbg_fmap) : mod_(mod), sections_(sections), fn_prefix_(fn_prefix), mod_src_(mod_src), src_dbg_fmap_(src_dbg_fmap) {} // Only support dump for llvm 6.x and later. // // The llvm 5.x, but not earlier versions, also supports create // a dwarf context for source debugging based // on a set of in-memory sections with slightly different interfaces. // FIXME: possibly to support 5.x // #if LLVM_MAJOR_VERSION >= 6 void dump(); private: void adjustInstSize(uint64_t &Size, uint8_t byte0, uint8_t byte1); std::vector buildLineCache(); void dumpSrcLine(const std::vector &LineCache, const std::string &FileName, uint32_t Line, uint32_t &CurrentSrcLine, llvm::raw_ostream &os); void getDebugSections( llvm::StringMap> &DebugSections); #else void dump() { } #endif private: llvm::Module *mod_; const sec_map_def §ions_; const std::string &fn_prefix_; const std::string &mod_src_; std::map &src_dbg_fmap_; }; } // namespace ebpf