2009-10-14 17:57:32 +00:00
|
|
|
//===-- llvm/CodeGen/MachineModuleInfoImpls.cpp ---------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements object-file format specific implementations of
|
|
|
|
// MachineModuleInfoImpl.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MachineModuleInfoMachO
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Out of line virtual method.
|
2012-12-02 13:10:19 +00:00
|
|
|
void MachineModuleInfoMachO::anchor() {}
|
|
|
|
void MachineModuleInfoELF::anchor() {}
|
2009-10-14 17:57:32 +00:00
|
|
|
|
|
|
|
static int SortSymbolPair(const void *LHS, const void *RHS) {
|
2010-03-16 16:51:38 +00:00
|
|
|
typedef std::pair<MCSymbol*, MachineModuleInfoImpl::StubValueTy> PairTy;
|
|
|
|
const MCSymbol *LHSS = ((const PairTy *)LHS)->first;
|
|
|
|
const MCSymbol *RHSS = ((const PairTy *)RHS)->first;
|
2009-10-14 17:57:32 +00:00
|
|
|
return LHSS->getName().compare(RHSS->getName());
|
|
|
|
}
|
|
|
|
|
2015-05-27 18:44:32 +00:00
|
|
|
MachineModuleInfoImpl::SymbolListTy MachineModuleInfoImpl::getSortedStubs(
|
|
|
|
DenseMap<MCSymbol *, MachineModuleInfoImpl::StubValueTy> &Map) {
|
2010-02-16 09:30:23 +00:00
|
|
|
MachineModuleInfoImpl::SymbolListTy List(Map.begin(), Map.end());
|
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
if (!List.empty())
|
|
|
|
qsort(&List[0], List.size(), sizeof(List[0]), SortSymbolPair);
|
2015-05-27 18:44:32 +00:00
|
|
|
|
|
|
|
Map.clear();
|
2009-10-14 17:57:32 +00:00
|
|
|
return List;
|
|
|
|
}
|
|
|
|
|