clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
//===-- AddressResolverFileLine.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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_CORE_ADDRESSRESOLVERFILELINE_H
|
|
#define LLDB_CORE_ADDRESSRESOLVERFILELINE_H
|
|
|
|
#include "lldb/Core/AddressResolver.h"
|
|
#include "lldb/Core/SearchFilter.h"
|
|
#include "lldb/Core/SourceLocationSpec.h"
|
|
#include "lldb/lldb-defines.h"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace lldb_private {
|
|
class Address;
|
|
class Stream;
|
|
class SymbolContext;
|
|
|
|
/// \class AddressResolverFileLine AddressResolverFileLine.h
|
|
/// "lldb/Core/AddressResolverFileLine.h" This class finds address for source
|
|
/// file and line. Optionally, it will look for inlined instances of the file
|
|
/// and line specification.
|
|
|
|
class AddressResolverFileLine : public AddressResolver {
|
|
public:
|
|
AddressResolverFileLine(SourceLocationSpec location_spec);
|
|
|
|
~AddressResolverFileLine() override;
|
|
|
|
Searcher::CallbackReturn SearchCallback(SearchFilter &filter,
|
|
SymbolContext &context,
|
|
Address *addr) override;
|
|
|
|
lldb::SearchDepth GetDepth() override;
|
|
|
|
void GetDescription(Stream *s) override;
|
|
|
|
protected:
|
|
SourceLocationSpec m_src_location_spec;
|
|
|
|
private:
|
|
AddressResolverFileLine(const AddressResolverFileLine &) = delete;
|
|
const AddressResolverFileLine &
|
|
operator=(const AddressResolverFileLine &) = delete;
|
|
};
|
|
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_CORE_ADDRESSRESOLVERFILELINE_H
|