mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-21 12:38:45 +00:00
Privatize this map.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74189 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f37feb954f
commit
3ea93ded0f
@ -19,7 +19,6 @@
|
|||||||
#include "llvm/Config/alloca.h"
|
#include "llvm/Config/alloca.h"
|
||||||
#include "llvm/Support/Debug.h"
|
#include "llvm/Support/Debug.h"
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <map>
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
#define BUILD_OFormatI(Op, RA, LIT, FUN, RC) \
|
#define BUILD_OFormatI(Op, RA, LIT, FUN, RC) \
|
||||||
@ -237,11 +236,6 @@ static long getLower16(long l)
|
|||||||
|
|
||||||
void AlphaJITInfo::relocate(void *Function, MachineRelocation *MR,
|
void AlphaJITInfo::relocate(void *Function, MachineRelocation *MR,
|
||||||
unsigned NumRelocs, unsigned char* GOTBase) {
|
unsigned NumRelocs, unsigned char* GOTBase) {
|
||||||
//because gpdist are paired and relative to the pc of the first inst,
|
|
||||||
//we need to have some state
|
|
||||||
|
|
||||||
static std::map<std::pair<void*, int>, void*> gpdistmap;
|
|
||||||
|
|
||||||
for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
|
for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
|
||||||
unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
|
unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
|
||||||
long idx = 0;
|
long idx = 0;
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#define ALPHA_JITINFO_H
|
#define ALPHA_JITINFO_H
|
||||||
|
|
||||||
#include "llvm/Target/TargetJITInfo.h"
|
#include "llvm/Target/TargetJITInfo.h"
|
||||||
|
#include <map>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class TargetMachine;
|
class TargetMachine;
|
||||||
@ -22,6 +23,10 @@ namespace llvm {
|
|||||||
class AlphaJITInfo : public TargetJITInfo {
|
class AlphaJITInfo : public TargetJITInfo {
|
||||||
protected:
|
protected:
|
||||||
TargetMachine &TM;
|
TargetMachine &TM;
|
||||||
|
|
||||||
|
//because gpdist are paired and relative to the pc of the first inst,
|
||||||
|
//we need to have some state
|
||||||
|
std::map<std::pair<void*, int>, void*> gpdistmap;
|
||||||
public:
|
public:
|
||||||
explicit AlphaJITInfo(TargetMachine &tm) : TM(tm)
|
explicit AlphaJITInfo(TargetMachine &tm) : TM(tm)
|
||||||
{ useGOT = true; }
|
{ useGOT = true; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user