1 //===- SymbolSize.h ---------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_OBJECT_SYMBOLSIZE_H
11 #define LLVM_OBJECT_SYMBOLSIZE_H
13 #include "llvm/Object/ObjectFile.h"
25 int compareAddress(const SymEntry
*A
, const SymEntry
*B
);
27 std::vector
<std::pair
<SymbolRef
, uint64_t>>
28 computeSymbolSizes(const ObjectFile
&O
);