Remove X86SharedAsmPrinter
[oota-llvm.git] / lib / Target / X86 / X86AsmPrinter.cpp
1 //===-- X86AsmPrinter.cpp - Convert X86 LLVM IR to X86 assembly -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file the shared super class printer that converts from our internal
11 // representation of machine-dependent LLVM code to Intel and AT&T format
12 // assembly language.
13 // This printer is the output mechanism used by `llc'.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #include "X86ATTAsmPrinter.h"
18 #include "X86IntelAsmPrinter.h"
19 #include "X86Subtarget.h"
20 using namespace llvm;
21
22 /// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
23 /// for a MachineFunction to the given output stream, using the given target
24 /// machine description.
25 ///
26 FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o,
27                                              X86TargetMachine &tm) {
28   const X86Subtarget *Subtarget = &tm.getSubtarget<X86Subtarget>();
29
30   if (Subtarget->isFlavorIntel()) {
31     return new X86IntelAsmPrinter(o, tm, tm.getTargetAsmInfo());
32   } else {
33     return new X86ATTAsmPrinter(o, tm, tm.getTargetAsmInfo());
34   }
35 }