implement support for the intrinsic lowering functionality

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10629 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2003-12-28 09:47:19 +00:00
parent 37b1826aab
commit 4482715f3d
8 changed files with 126 additions and 59 deletions

View File

@@ -18,10 +18,13 @@
namespace llvm {
class TargetMachine;
class IntrinsicLowering;
class X86JITInfo : public TargetJITInfo {
TargetMachine &TM;
IntrinsicLowering &IL;
public:
X86JITInfo(TargetMachine &tm) : TM(tm) {}
X86JITInfo(TargetMachine &tm, IntrinsicLowering &il) : TM(tm), IL(il) {}
/// addPassesToJITCompile - Add passes to the specified pass manager to
/// implement a fast dynamic compiler for this target. Return true if this