2012-02-18 12:03:15 +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
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
#include "llvm/CodeGen/JITCodeEmitter.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/Target/TargetJITInfo.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2014-06-12 22:28:06 +00:00
|
|
|
class PPCSubtarget;
|
|
|
|
class PPCJITInfo : public TargetJITInfo {
|
|
|
|
protected:
|
|
|
|
PPCSubtarget &Subtarget;
|
|
|
|
bool is64Bit;
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2014-06-12 22:28:06 +00:00
|
|
|
public:
|
|
|
|
PPCJITInfo(PPCSubtarget &STI);
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2014-06-12 22:28:06 +00:00
|
|
|
StubLayout getStubLayout() override;
|
|
|
|
void *emitFunctionStub(const Function *F, void *Fn,
|
|
|
|
JITCodeEmitter &JCE) override;
|
|
|
|
LazyResolverFn getLazyResolverFunction(JITCompilerFn) override;
|
|
|
|
void relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs,
|
|
|
|
unsigned char *GOTBase) override;
|
2014-04-29 07:57:37 +00:00
|
|
|
|
2014-06-12 22:28:06 +00:00
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
void replaceMachineCodeForFunction(void *Old, void *New) override;
|
|
|
|
};
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|