mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
getJITStubForFunction is optional and unimplemented, just remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18036 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5be478f360
commit
a8b0fa5172
@ -30,12 +30,6 @@ namespace llvm {
|
||||
/// code.
|
||||
///
|
||||
virtual void replaceMachineCodeForFunction(void *Old, void *New);
|
||||
|
||||
/// getJITStubForFunction - Create or return a stub for the specified
|
||||
/// function. This stub acts just like the specified function, except that
|
||||
/// it allows the "address" of the function to be taken without having to
|
||||
/// generate code for it.
|
||||
virtual void *getJITStubForFunction(Function *F, MachineCodeEmitter &MCE);
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -29,12 +29,6 @@ bool PPC64TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
|
||||
// PM.add(createMachineCodeDeleter());
|
||||
}
|
||||
|
||||
void *PPC64JITInfo::getJITStubForFunction(Function *F,
|
||||
MachineCodeEmitter &MCE) {
|
||||
assert (0 && "PPC64JITInfo::getJITStubForFunction not implemented");
|
||||
return 0;
|
||||
}
|
||||
|
||||
void PPC64JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
|
||||
assert (0 && "PPC64JITInfo::replaceMachineCodeForFunction not implemented");
|
||||
}
|
||||
|
@ -29,12 +29,6 @@ namespace llvm {
|
||||
/// code.
|
||||
///
|
||||
virtual void replaceMachineCodeForFunction(void *Old, void *New);
|
||||
|
||||
/// getJITStubForFunction - Create or return a stub for the specified
|
||||
/// function. This stub acts just like the specified function, except that
|
||||
/// it allows the "address" of the function to be taken without having to
|
||||
/// generate code for it.
|
||||
virtual void *getJITStubForFunction(Function *F, MachineCodeEmitter &MCE);
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -334,11 +334,6 @@ int64_t PPC32CodeEmitter::getMachineOpValue(MachineInstr &MI,
|
||||
return rv;
|
||||
}
|
||||
|
||||
|
||||
void *PPC32JITInfo::getJITStubForFunction(Function *F, MachineCodeEmitter &MCE){
|
||||
return (void*)((unsigned long)getResolver(MCE).getLazyResolver(F));
|
||||
}
|
||||
|
||||
void PPC32JITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
|
||||
std::cerr << "PPC32JITInfo::replaceMachineCodeForFunction not implemented\n";
|
||||
abort();
|
||||
|
Loading…
x
Reference in New Issue
Block a user