Summary: This is how I applied my clang-tidy check (see https://reviews.llvm.org/D80531) in order to remove `DISALLOW_COPY_AND_ASSIGN` and have deleted copy ctors and deleted assignment operators instead. ``` lang=bash grep DISALLOW_COPY_AND_ASSIGN /opt/notnfs/kkleine/llvm/lldb -r -l | sort | uniq > files for i in $(cat files); do clang-tidy \ --checks="-*,modernize-replace-disallow-copy-and-assign-macro" \ --format-style=LLVM \ --header-filter=.* \ --fix \ -fix-errors \ $i; done ``` Reviewers: espindola, labath, aprantl, teemperor Reviewed By: labath, aprantl, teemperor Subscribers: teemperor, aprantl, labath, emaste, sbc100, aheejin, MaskRay, arphaman, usaxena95, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D80543
59 lines
1.9 KiB
C++
59 lines
1.9 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/Utility/FileSpec.h"
|
|
#include "lldb/lldb-defines.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
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(const FileSpec &resolver, uint32_t line_no,
|
|
bool check_inlines);
|
|
|
|
~AddressResolverFileLine() override;
|
|
|
|
Searcher::CallbackReturn SearchCallback(SearchFilter &filter,
|
|
SymbolContext &context,
|
|
Address *addr) override;
|
|
|
|
lldb::SearchDepth GetDepth() override;
|
|
|
|
void GetDescription(Stream *s) override;
|
|
|
|
protected:
|
|
FileSpec m_file_spec; // This is the file spec we are looking for.
|
|
uint32_t m_line_number; // This is the line number that we are looking for.
|
|
bool m_inlines; // This determines whether the resolver looks for inlined
|
|
// functions or not.
|
|
|
|
private:
|
|
AddressResolverFileLine(const AddressResolverFileLine &) = delete;
|
|
const AddressResolverFileLine &
|
|
operator=(const AddressResolverFileLine &) = delete;
|
|
};
|
|
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_CORE_ADDRESSRESOLVERFILELINE_H
|