mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Add support for inserting all prototypes up-front
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13431 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a05e0ec419
commit
43c81f19ee
@ -37,10 +37,16 @@
|
||||
|
||||
namespace llvm {
|
||||
class CallInst;
|
||||
class Module;
|
||||
|
||||
struct IntrinsicLowering {
|
||||
virtual ~IntrinsicLowering() {}
|
||||
|
||||
/// AddPrototypes - This method, if called, causes all of the prototypes
|
||||
/// that might be needed by an intrinsic lowering implementation to be
|
||||
/// inserted into the module specified.
|
||||
virtual void AddPrototypes(Module &M) = 0;
|
||||
|
||||
/// LowerIntrinsicCall - This method returns the LLVM function which should
|
||||
/// be used to implement the specified intrinsic function call. If an
|
||||
/// intrinsic function must be implemented by the code generator (such as
|
||||
@ -59,6 +65,7 @@ namespace llvm {
|
||||
/// implementations should pass any unhandled intrinsics to this
|
||||
/// implementation to allow for future extensibility.
|
||||
struct DefaultIntrinsicLowering : public IntrinsicLowering {
|
||||
virtual void AddPrototypes(Module &M);
|
||||
virtual void LowerIntrinsicCall(CallInst *CI);
|
||||
};
|
||||
}
|
||||
|
@ -37,10 +37,16 @@
|
||||
|
||||
namespace llvm {
|
||||
class CallInst;
|
||||
class Module;
|
||||
|
||||
struct IntrinsicLowering {
|
||||
virtual ~IntrinsicLowering() {}
|
||||
|
||||
/// AddPrototypes - This method, if called, causes all of the prototypes
|
||||
/// that might be needed by an intrinsic lowering implementation to be
|
||||
/// inserted into the module specified.
|
||||
virtual void AddPrototypes(Module &M) = 0;
|
||||
|
||||
/// LowerIntrinsicCall - This method returns the LLVM function which should
|
||||
/// be used to implement the specified intrinsic function call. If an
|
||||
/// intrinsic function must be implemented by the code generator (such as
|
||||
@ -59,6 +65,7 @@ namespace llvm {
|
||||
/// implementations should pass any unhandled intrinsics to this
|
||||
/// implementation to allow for future extensibility.
|
||||
struct DefaultIntrinsicLowering : public IntrinsicLowering {
|
||||
virtual void AddPrototypes(Module &M);
|
||||
virtual void LowerIntrinsicCall(CallInst *CI);
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user