mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
47008fdea7
The way prelink used to work was * The compiler decides if a given section only has relocations that are know to point to the same DSO. If so, it names it .data.rel.ro.local<something>. * The static linker puts all of these together. * The prelinker program assigns addresses to each library and resolves the local relocations. There are many problems with this: * It is incompatible with address space randomization. * The information passed by the compiler is redundant. The linker knows if a given relocation is in the same DSO or not. If could sort by that if so desired. * There are newer ways of speeding up DSO (gnu hash for example). * Even if we want to implement this again in the compiler, the previous implementation is pretty broken. It talks about relocations that are "resolved by the static linker". If they are resolved, there are none left for the prelinker. What one needs to track is if an expression will require only dynamic relocations that point to the same DSO. At this point it looks like the prelinker is an historical curiosity. For example, fedora has retired it because it failed to build for two releases (http://pkgs.fedoraproject.org/cgit/prelink.git/commit/?id=eb43100a8331d91c801ee3dcdb0a0bb9babfdc1f) This patch removes support for it. That is, it stops printing the ".local" sections. llvm-svn: 253280
53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
//===-- SystemZConstantPoolValue.cpp - SystemZ constant-pool value --------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "SystemZConstantPoolValue.h"
|
|
#include "llvm/ADT/FoldingSet.h"
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
#include "llvm/IR/GlobalValue.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
SystemZConstantPoolValue::
|
|
SystemZConstantPoolValue(const GlobalValue *gv,
|
|
SystemZCP::SystemZCPModifier modifier)
|
|
: MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {}
|
|
|
|
SystemZConstantPoolValue *
|
|
SystemZConstantPoolValue::Create(const GlobalValue *GV,
|
|
SystemZCP::SystemZCPModifier Modifier) {
|
|
return new SystemZConstantPoolValue(GV, Modifier);
|
|
}
|
|
|
|
int SystemZConstantPoolValue::
|
|
getExistingMachineCPValue(MachineConstantPool *CP, unsigned Alignment) {
|
|
unsigned AlignMask = Alignment - 1;
|
|
const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants();
|
|
for (unsigned I = 0, E = Constants.size(); I != E; ++I) {
|
|
if (Constants[I].isMachineConstantPoolEntry() &&
|
|
(Constants[I].getAlignment() & AlignMask) == 0) {
|
|
auto *ZCPV =
|
|
static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal);
|
|
if (ZCPV->GV == GV && ZCPV->Modifier == Modifier)
|
|
return I;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void SystemZConstantPoolValue::addSelectionDAGCSEId(FoldingSetNodeID &ID) {
|
|
ID.AddPointer(GV);
|
|
ID.AddInteger(Modifier);
|
|
}
|
|
|
|
void SystemZConstantPoolValue::print(raw_ostream &O) const {
|
|
O << GV << "@" << int(Modifier);
|
|
}
|