2004-02-13 23:18:48 +00:00
|
|
|
//===-- CTargetMachine.h - TargetMachine for the C backend ------*- C++ -*-===//
|
2005-04-20 16:05:03 +00:00
|
|
|
//
|
2004-02-13 23:18:48 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-20 16:05:03 +00:00
|
|
|
//
|
2004-02-13 23:18:48 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-20 16:05:03 +00:00
|
|
|
//
|
2004-02-13 23:18:48 +00:00
|
|
|
// This file declares the TargetMachine that is used by the C backend.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CTARGETMACHINE_H
|
|
|
|
#define CTARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2006-05-12 06:33:49 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2004-02-13 23:18:48 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
struct CTargetMachine : public TargetMachine {
|
2006-05-03 01:29:57 +00:00
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
|
|
|
2006-03-23 05:43:16 +00:00
|
|
|
CTargetMachine(const Module &M, const std::string &FS)
|
2006-09-03 18:44:02 +00:00
|
|
|
: DataLayout(&M) {}
|
2004-02-13 23:18:48 +00:00
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
virtual bool WantsWholeFile() const { return true; }
|
2008-08-21 00:14:44 +00:00
|
|
|
virtual bool addPassesToEmitWholeFile(PassManager &PM, raw_ostream &Out,
|
2009-04-29 00:15:41 +00:00
|
|
|
CodeGenFileType FileType,
|
2009-04-29 23:29:43 +00:00
|
|
|
CodeGenOpt::Level OptLevel);
|
2004-07-11 02:48:49 +00:00
|
|
|
|
2009-04-20 18:07:22 +00:00
|
|
|
// This class always works, but must be requested explicitly on
|
|
|
|
// llc command line.
|
|
|
|
static unsigned getModuleMatchQuality(const Module &M) { return 0; }
|
2006-05-03 01:29:57 +00:00
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
virtual const TargetData *getTargetData() const { return &DataLayout; }
|
2004-02-13 23:18:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|