2017-12-18 15:10:56 -05:00
|
|
|
//===- llvm/CodeGen/MachineModuleInfoImpls.cpp ----------------------------===//
|
2009-10-14 13:57:32 -04:00
|
|
|
//
|
2019-08-20 16:50:12 -04:00
|
|
|
// 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
|
2009-10-14 13:57:32 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// This file implements object-file format specific implementations of
|
|
|
|
|
// MachineModuleInfoImpl.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
2017-12-18 15:10:56 -05:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2009-10-14 13:57:32 -04:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2017-12-18 15:10:56 -05:00
|
|
|
|
2009-10-14 13:57:32 -04:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
// MachineModuleInfoMachO
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
// Out of line virtual method.
|
2012-12-02 08:10:19 -05:00
|
|
|
void MachineModuleInfoMachO::anchor() {}
|
|
|
|
|
void MachineModuleInfoELF::anchor() {}
|
2019-01-19 05:01:25 -05:00
|
|
|
void MachineModuleInfoCOFF::anchor() {}
|
2009-10-14 13:57:32 -04:00
|
|
|
|
2017-12-18 15:10:56 -05:00
|
|
|
using PairTy = std::pair<MCSymbol *, MachineModuleInfoImpl::StubValueTy>;
|
|
|
|
|
static int SortSymbolPair(const PairTy *LHS, const PairTy *RHS) {
|
|
|
|
|
return LHS->first->getName().compare(RHS->first->getName());
|
2009-10-14 13:57:32 -04:00
|
|
|
}
|
|
|
|
|
|
2015-05-27 14:44:32 -04:00
|
|
|
MachineModuleInfoImpl::SymbolListTy MachineModuleInfoImpl::getSortedStubs(
|
|
|
|
|
DenseMap<MCSymbol *, MachineModuleInfoImpl::StubValueTy> &Map) {
|
2010-02-16 04:30:23 -05:00
|
|
|
MachineModuleInfoImpl::SymbolListTy List(Map.begin(), Map.end());
|
|
|
|
|
|
2017-12-18 15:10:56 -05:00
|
|
|
array_pod_sort(List.begin(), List.end(), SortSymbolPair);
|
2015-05-27 14:44:32 -04:00
|
|
|
|
|
|
|
|
Map.clear();
|
2009-10-14 13:57:32 -04:00
|
|
|
return List;
|
|
|
|
|
}
|