2015-06-23 04:08:48 +02:00
|
|
|
//===- SymbolSize.h ---------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_OBJECT_SYMBOLSIZE_H
|
|
|
|
#define LLVM_OBJECT_SYMBOLSIZE_H
|
|
|
|
|
|
|
|
#include "llvm/Object/ObjectFile.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace object {
|
2015-06-24 21:57:32 +02:00
|
|
|
std::vector<std::pair<SymbolRef, uint64_t>>
|
2015-06-23 04:08:48 +02:00
|
|
|
computeSymbolSizes(const ObjectFile &O);
|
|
|
|
}
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|