Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 1 | //===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===// |
| 2 | // |
| 3 | // This file defines the X86 specific subclass of TargetMachine. |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
| 7 | #include "X86TargetMachine.h" |
| 8 | #include "llvm/Target/TargetMachineImpls.h" |
Chris Lattner | 3dffa79 | 2002-10-30 00:47:49 +0000 | [diff] [blame] | 9 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 10 | #include "llvm/PassManager.h" |
| 11 | #include "X86.h" |
| 12 | #include <iostream> |
| 13 | |
| 14 | // allocateX86TargetMachine - Allocate and return a subclass of TargetMachine |
| 15 | // that implements the X86 backend. |
| 16 | // |
| 17 | TargetMachine *allocateX86TargetMachine() { return new X86TargetMachine(); } |
| 18 | |
| 19 | |
| 20 | /// X86TargetMachine ctor - Create an ILP32 architecture model |
| 21 | /// |
| 22 | X86TargetMachine::X86TargetMachine() : TargetMachine("X86", 1, 4, 4, 4) { |
| 23 | } |
| 24 | |
| 25 | |
| 26 | /// addPassesToJITCompile - Add passes to the specified pass manager to |
| 27 | /// implement a fast dynamic compiler for this target. Return true if this is |
| 28 | /// not supported for this target. |
| 29 | /// |
| 30 | bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) { |
| 31 | PM.add(createSimpleX86InstructionSelector(*this)); |
| 32 | |
| 33 | // TODO: optional optimizations go here |
| 34 | |
Chris Lattner | 3dffa79 | 2002-10-30 00:47:49 +0000 | [diff] [blame] | 35 | // Print the instruction selected machine code... |
| 36 | PM.add(createMachineFunctionPrinterPass()); |
| 37 | |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 38 | // Perform register allocation to convert to a concrete x86 representation |
| 39 | //PM.add(createSimpleX86RegisterAllocator(*this)); |
| 40 | |
| 41 | PM.add(createX86CodePrinterPass(*this, std::cerr)); |
| 42 | |
| 43 | //PM.add(createEmitX86CodeToMemory(*this)); |
| 44 | |
| 45 | return false; // success! |
| 46 | } |
| 47 | |