make -print-machineinstrs work for both SparcV9 and X86
[oota-llvm.git] / lib / Target / TargetMachine.cpp
1 //===-- TargetMachine.cpp - General Target Information ---------------------==//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the general parts of a Target machine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Target/TargetMachine.h"
15 #include "llvm/Type.h"
16 #include "llvm/IntrinsicLowering.h"
17 #include "Support/CommandLine.h"
18 using namespace llvm;
19
20 //---------------------------------------------------------------------------
21 // Command-line options that tend to be useful on more than one back-end.
22 //
23
24 namespace llvm { 
25   bool PrintMachineCode;
26 };
27 namespace {
28   cl::opt<bool, true> PrintCode("print-machineinstrs",
29     cl::desc("Print generated machine code"),
30     cl::location(PrintMachineCode), cl::init(false));
31 };
32
33 //---------------------------------------------------------------------------
34 // TargetMachine Class
35 //
36 TargetMachine::TargetMachine(const std::string &name, IntrinsicLowering *il,
37                              bool LittleEndian,
38                              unsigned char PtrSize, unsigned char PtrAl,
39                              unsigned char DoubleAl, unsigned char FloatAl,
40                              unsigned char LongAl, unsigned char IntAl,
41                              unsigned char ShortAl, unsigned char ByteAl)
42   : Name(name), DataLayout(name, LittleEndian,
43                            PtrSize, PtrAl, DoubleAl, FloatAl, LongAl,
44                            IntAl, ShortAl, ByteAl) {
45   IL = il ? il : new DefaultIntrinsicLowering();
46 }
47 TargetMachine::TargetMachine(const std::string &name, IntrinsicLowering *il,
48                              const Module &M)
49   : Name(name), DataLayout(name, &M) {
50   IL = il ? il : new DefaultIntrinsicLowering();
51 }
52
53 TargetMachine::~TargetMachine() {
54   delete IL;
55 }
56
57 unsigned TargetMachine::findOptimalStorageSize(const Type *Ty) const {
58   // All integer types smaller than ints promote to 4 byte integers.
59   if (Ty->isIntegral() && Ty->getPrimitiveSize() < 4)
60     return 4;
61
62   return DataLayout.getTypeSize(Ty);
63 }