blob: edb8c54ae9d6f07cf92c2dab2bceecb57cd38430 [file] [log] [blame]
Chris Lattner22a6a902001-09-14 05:34:53 +00001//===-- TargetMachine.cpp - General Target Information ---------------------==//
John Criswell482202a2003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner22a6a902001-09-14 05:34:53 +00009//
10// This file describes the general parts of a Target machine.
11//
12//===----------------------------------------------------------------------===//
Vikram S. Adve3414e782001-07-21 12:42:08 +000013
Vikram S. Adve1c96dfd2001-11-09 02:20:18 +000014#include "llvm/Target/TargetMachine.h"
Chris Lattner910b82f2002-10-28 23:55:33 +000015#include "llvm/Type.h"
Chris Lattner5d236002003-12-28 21:23:38 +000016#include "llvm/IntrinsicLowering.h"
Brian Gaeke8351d8c2004-03-04 19:16:23 +000017#include "Support/CommandLine.h"
Chris Lattner5d236002003-12-28 21:23:38 +000018using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000019
Vikram S. Adve36d3e032002-09-16 15:39:26 +000020//---------------------------------------------------------------------------
Brian Gaeke8351d8c2004-03-04 19:16:23 +000021// Command-line options that tend to be useful on more than one back-end.
22//
23
24namespace llvm {
25 bool PrintMachineCode;
26};
27namespace {
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//---------------------------------------------------------------------------
Chris Lattner5d236002003-12-28 21:23:38 +000034// TargetMachine Class
35//
36TargetMachine::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}
Chris Lattner87ed2a42004-03-03 02:12:47 +000047TargetMachine::TargetMachine(const std::string &name, IntrinsicLowering *il,
48 const Module &M)
49 : Name(name), DataLayout(name, &M) {
50 IL = il ? il : new DefaultIntrinsicLowering();
51}
Vikram S. Adve3414e782001-07-21 12:42:08 +000052
Chris Lattner5d236002003-12-28 21:23:38 +000053TargetMachine::~TargetMachine() {
54 delete IL;
55}
56