llvm/lldb/source/Utility/VMRange.cpp

//===-- VMRange.cpp -------------------------------------------------------===//
//
// 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 "lldb/Utility/VMRange.h"

#include "lldb/Utility/Stream.h"
#include "lldb/lldb-types.h"

#include <algorithm>
#include <iterator>
#include <vector>

#include <cstddef>
#include <cstdint>

usingnamespacelldb;
usingnamespacelldb_private;

bool VMRange::ContainsValue(const VMRange::collection &coll,
                            lldb::addr_t value) {}

bool VMRange::ContainsRange(const VMRange::collection &coll,
                            const VMRange &range) {}

void VMRange::Dump(llvm::raw_ostream &s, lldb::addr_t offset,
                   uint32_t addr_width) const {}

bool lldb_private::operator==(const VMRange &lhs, const VMRange &rhs) {}

bool lldb_private::operator!=(const VMRange &lhs, const VMRange &rhs) {}

bool lldb_private::operator<(const VMRange &lhs, const VMRange &rhs) {}

bool lldb_private::operator<=(const VMRange &lhs, const VMRange &rhs) {}

bool lldb_private::operator>(const VMRange &lhs, const VMRange &rhs) {}

bool lldb_private::operator>=(const VMRange &lhs, const VMRange &rhs) {}