2005-10-14 23:53:41 +00:00
|
|
|
//===- PPCJITInfo.h - PowerPC impl. of the JIT interface --------*- C++ -*-===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the PowerPC implementation of the TargetJITInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-08-11 00:11:25 +00:00
|
|
|
#ifndef POWERPC_JITINFO_H
|
|
|
|
#define POWERPC_JITINFO_H
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
#include "llvm/Target/TargetJITInfo.h"
|
2009-05-30 20:51:52 +00:00
|
|
|
#include "llvm/CodeGen/JITCodeEmitter.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2006-03-13 23:20:37 +00:00
|
|
|
class PPCTargetMachine;
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2005-10-16 05:39:50 +00:00
|
|
|
class PPCJITInfo : public TargetJITInfo {
|
2004-08-11 00:11:25 +00:00
|
|
|
protected:
|
2006-03-13 23:20:37 +00:00
|
|
|
PPCTargetMachine &TM;
|
2006-08-29 02:30:59 +00:00
|
|
|
bool is64Bit;
|
2004-06-21 16:55:25 +00:00
|
|
|
public:
|
2006-08-29 02:30:59 +00:00
|
|
|
PPCJITInfo(PPCTargetMachine &tm, bool tmIs64Bit) : TM(tm) {
|
|
|
|
useGOT = 0;
|
|
|
|
is64Bit = tmIs64Bit;
|
|
|
|
}
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2008-04-16 20:46:05 +00:00
|
|
|
virtual void *emitFunctionStub(const Function* F, void *Fn,
|
2009-05-30 20:51:52 +00:00
|
|
|
JITCodeEmitter &JCE);
|
2005-10-14 23:53:41 +00:00
|
|
|
virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
|
|
|
|
virtual void relocate(void *Function, MachineRelocation *MR,
|
|
|
|
unsigned NumRelocs, unsigned char* GOTBase);
|
|
|
|
|
|
|
|
/// replaceMachineCodeForFunction - Make it so that calling the function
|
|
|
|
/// whose machine code is at OLD turns into a call to NEW, perhaps by
|
|
|
|
/// overwriting OLD with a branch to NEW. This is used for self-modifying
|
|
|
|
/// code.
|
|
|
|
///
|
|
|
|
virtual void replaceMachineCodeForFunction(void *Old, void *New);
|
|
|
|
};
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|