mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
allow constants to be relocated like GV (necessary for alpha, as constants are relocated with globals, not with .text), and allow targets to have a GOT managed for them
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22496 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a9562059c2
commit
6a6b2dbd3a
@ -32,23 +32,33 @@ class GlobalValue;
|
||||
/// 4. An optional constant value to be added to the reference.
|
||||
/// 5. A bit, CanRewrite, which indicates to the JIT that a function stub is
|
||||
/// not needed for the relocation.
|
||||
/// 6. An index into the GOT, if the target uses a GOT
|
||||
///
|
||||
class MachineRelocation {
|
||||
/// OffsetTypeExternal - The low 24-bits of this value is the offset from the
|
||||
/// start of the code buffer of the relocation to perform. Bit 24 of this is
|
||||
/// set if Target should use ExtSym instead of GV, Bit 25 is the CanRewrite
|
||||
/// bit, and the high 6 bits hold the relocation type.
|
||||
// FIXME: with the additional types of relocatable things, rearrange the
|
||||
// storage of things to be a bit more effiecient
|
||||
unsigned OffsetTypeExternal;
|
||||
union {
|
||||
GlobalValue *GV; // If this is a pointer to an LLVM global
|
||||
const char *ExtSym; // If this is a pointer to a named symbol
|
||||
void *Result; // If this has been resolved to a resolved pointer
|
||||
unsigned GOTIndex; // Index in the GOT of this symbol/global
|
||||
unsigned CPool; // Index in the Constant Pool
|
||||
} Target;
|
||||
intptr_t ConstantVal;
|
||||
bool GOTRelative; //out of bits in OffsetTypeExternal
|
||||
bool isConstPool;
|
||||
|
||||
public:
|
||||
MachineRelocation(unsigned Offset, unsigned RelocationType, GlobalValue *GV,
|
||||
intptr_t cst = 0, bool DoesntNeedFunctionStub = 0)
|
||||
: OffsetTypeExternal(Offset + (RelocationType << 26)), ConstantVal(cst) {
|
||||
intptr_t cst = 0, bool DoesntNeedFunctionStub = 0,
|
||||
bool GOTrelative = 0)
|
||||
: OffsetTypeExternal(Offset + (RelocationType << 26)), ConstantVal(cst),
|
||||
GOTRelative(GOTrelative), isConstPool(0) {
|
||||
assert((Offset & ~((1 << 24)-1)) == 0 && "Code offset too large!");
|
||||
assert((RelocationType & ~63) == 0 && "Relocation type too large!");
|
||||
Target.GV = GV;
|
||||
@ -57,14 +67,23 @@ public:
|
||||
}
|
||||
|
||||
MachineRelocation(unsigned Offset, unsigned RelocationType, const char *ES,
|
||||
intptr_t cst = 0)
|
||||
intptr_t cst = 0, bool GOTrelative = 0)
|
||||
: OffsetTypeExternal(Offset + (1 << 24) + (RelocationType << 26)),
|
||||
ConstantVal(cst) {
|
||||
ConstantVal(cst), GOTRelative(GOTrelative), isConstPool(0) {
|
||||
assert((Offset & ~((1 << 24)-1)) == 0 && "Code offset too large!");
|
||||
assert((RelocationType & ~63) == 0 && "Relocation type too large!");
|
||||
Target.ExtSym = ES;
|
||||
}
|
||||
|
||||
MachineRelocation(unsigned Offset, unsigned RelocationType, unsigned CPI,
|
||||
intptr_t cst = 0)
|
||||
: OffsetTypeExternal(Offset + (RelocationType << 26)),
|
||||
ConstantVal(cst), GOTRelative(0), isConstPool(1) {
|
||||
assert((Offset & ~((1 << 24)-1)) == 0 && "Code offset too large!");
|
||||
assert((RelocationType & ~63) == 0 && "Relocation type too large!");
|
||||
Target.CPool = CPI;
|
||||
}
|
||||
|
||||
/// getMachineCodeOffset - Return the offset into the code buffer that the
|
||||
/// relocation should be performed.
|
||||
unsigned getMachineCodeOffset() const {
|
||||
@ -87,13 +106,25 @@ public:
|
||||
/// isGlobalValue - Return true if this relocation is a GlobalValue, as
|
||||
/// opposed to a constant string.
|
||||
bool isGlobalValue() const {
|
||||
return (OffsetTypeExternal & (1 << 24)) == 0;
|
||||
return (OffsetTypeExternal & (1 << 24)) == 0 && !isConstantPoolIndex();
|
||||
}
|
||||
|
||||
/// isString - Return true if this is a constant string.
|
||||
///
|
||||
bool isString() const {
|
||||
return !isGlobalValue();
|
||||
return !isGlobalValue() && !isConstantPoolIndex();
|
||||
}
|
||||
|
||||
/// isConstantPoolIndex - Return true if this is a constant pool reference.
|
||||
///
|
||||
bool isConstantPoolIndex() const {
|
||||
return isConstPool;
|
||||
}
|
||||
|
||||
/// isGOTRelative - Return true the target wants the index into the GOT of
|
||||
/// the symbol rather than the address of the symbol.
|
||||
bool isGOTRelative() const {
|
||||
return GOTRelative;
|
||||
}
|
||||
|
||||
/// doesntNeedFunctionStub - This function returns true if the JIT for this
|
||||
@ -119,6 +150,13 @@ public:
|
||||
return Target.ExtSym;
|
||||
}
|
||||
|
||||
/// getConstantPoolIndex - If this is a const pool reference, return
|
||||
/// the index into the constant pool.
|
||||
unsigned getConstantPoolIndex() const {
|
||||
assert(isConstantPoolIndex() && "This is not a constant pool reference!");
|
||||
return Target.CPool;
|
||||
}
|
||||
|
||||
/// getResultPointer - Once this has been resolved to point to an actual
|
||||
/// address, this returns the pointer.
|
||||
void *getResultPointer() const {
|
||||
@ -130,6 +168,19 @@ public:
|
||||
void setResultPointer(void *Ptr) {
|
||||
Target.Result = Ptr;
|
||||
}
|
||||
|
||||
/// setGOTIndex - Set the GOT index to a specific value.
|
||||
void setGOTIndex(unsigned idx) {
|
||||
Target.GOTIndex = idx;
|
||||
}
|
||||
|
||||
/// getGOTIndex - Once this has been resolved to an entry in the GOT,
|
||||
/// this returns that index. The index is from the lowest address entry
|
||||
/// in the GOT.
|
||||
unsigned getGOTIndex() const {
|
||||
return Target.GOTIndex;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -77,9 +77,17 @@ namespace llvm {
|
||||
/// it must rewrite the code to contain the actual addresses of any
|
||||
/// referenced global symbols.
|
||||
virtual void relocate(void *Function, MachineRelocation *MR,
|
||||
unsigned NumRelocs) {
|
||||
unsigned NumRelocs, unsigned char* GOTBase) {
|
||||
assert(NumRelocs == 0 && "This target does not have relocations!");
|
||||
}
|
||||
|
||||
/// needsGOT - Allows a target to specify that it would like the
|
||||
// JIT to manage a GOT for it.
|
||||
bool needsGOT() const { return useGOT; }
|
||||
|
||||
protected:
|
||||
bool useGOT;
|
||||
|
||||
};
|
||||
} // End llvm namespace
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user