2004-02-14 07:18:48 +08:00
|
|
|
//===-- CTargetMachine.h - TargetMachine for the C backend ------*- C++ -*-===//
|
2005-04-21 00:05:03 +08:00
|
|
|
//
|
2004-02-14 07:18:48 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 00:05:03 +08:00
|
|
|
//
|
2004-02-14 07:18:48 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 00:05:03 +08:00
|
|
|
//
|
2004-02-14 07:18:48 +08: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 14:33:49 +08:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2004-02-14 07:18:48 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
struct CTargetMachine : public TargetMachine {
|
2006-05-03 09:29:57 +08:00
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
|
|
|
2009-08-03 07:37:13 +08:00
|
|
|
CTargetMachine(const Target &T, const Module &M,
|
|
|
|
const std::string &FS)
|
2009-07-16 04:24:03 +08:00
|
|
|
: TargetMachine(T), DataLayout(&M) {}
|
2004-02-14 07:18:48 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
virtual bool WantsWholeFile() const { return true; }
|
2009-07-15 04:18:05 +08:00
|
|
|
virtual bool addPassesToEmitWholeFile(PassManager &PM,
|
|
|
|
formatted_raw_ostream &Out,
|
2009-04-29 08:15:41 +08:00
|
|
|
CodeGenFileType FileType,
|
2009-04-30 07:29:43 +08:00
|
|
|
CodeGenOpt::Level OptLevel);
|
2006-05-03 09:29:57 +08:00
|
|
|
|
2009-08-04 01:40:25 +08:00
|
|
|
virtual const TargetData *getTargetData() const { return 0; }
|
2004-02-14 07:18:48 +08:00
|
|
|
};
|
|
|
|
|
2009-07-19 07:03:22 +08:00
|
|
|
extern Target TheCBackendTarget;
|
|
|
|
|
2004-02-14 07:18:48 +08:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|