Implement a lot of cast functionality (no FP or 64)
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.h
index 9db8375d8dff15886dcc9df9587ac09003907304..029f834027b0526a343247031c5aa248a5ef1648 100644 (file)
@@ -15,7 +15,7 @@ class X86TargetMachine : public TargetMachine {
 public:
   X86TargetMachine();
 
-  virtual const MachineInstrInfo &getInstrInfo() const { return instrInfo; }
+  virtual const X86InstrInfo     &getInstrInfo() const { return instrInfo; }
   virtual const MachineSchedInfo &getSchedInfo() const { abort(); }
   virtual const MachineRegInfo   &getRegInfo()   const { abort(); }
   virtual const MachineFrameInfo &getFrameInfo() const { abort(); }
@@ -30,6 +30,15 @@ public:
   /// not supported for this target.
   ///
   virtual bool addPassesToJITCompile(PassManager &PM);
+
+  /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
+  /// get machine code emitted.  This uses a MAchineCodeEmitter object to handle
+  /// actually outputting the machine code and resolving things like the address
+  /// of functions.  This method should returns true if machine code emission is
+  /// not supported.
+  ///
+  virtual bool addPassesToEmitMachineCode(PassManager &PM,
+                                          MachineCodeEmitter &MCE);
 };
 
 #endif