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 {
|
2009-08-04 04:02:45 +00:00
|
|
|
CTargetMachine(const Target &T, const std::string &TT, const std::string &FS)
|
|
|
|
: TargetMachine(T) {}
|
2004-02-13 23:18:48 +00:00
|
|
|
|
2010-05-11 19:57:55 +00:00
|
|
|
virtual bool addPassesToEmitFile(PassManagerBase &PM,
|
|
|
|
formatted_raw_ostream &Out,
|
|
|
|
CodeGenFileType FileType,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
bool DisableVerify);
|
2006-05-03 01:29:57 +00:00
|
|
|
|
2009-08-03 17:40:25 +00:00
|
|
|
virtual const TargetData *getTargetData() const { return 0; }
|
2004-02-13 23:18:48 +00:00
|
|
|
};
|
|
|
|
|
2009-07-18 23:03:22 +00:00
|
|
|
extern Target TheCBackendTarget;
|
|
|
|
|
2004-02-13 23:18:48 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|