2008-04-23 22:29:24 +00:00
|
|
|
//===-- CPPTargetMachine.h - TargetMachine for the C++ backend --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the TargetMachine that is used by the C++ backend.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef CPPTARGETMACHINE_H
|
|
|
|
#define CPPTARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2009-07-14 20:18:05 +00:00
|
|
|
class formatted_raw_ostream;
|
2008-08-21 00:14:44 +00:00
|
|
|
|
2008-04-23 22:29:24 +00:00
|
|
|
struct CPPTargetMachine : public TargetMachine {
|
2009-08-04 04:02:45 +00:00
|
|
|
CPPTargetMachine(const Target &T, const std::string &TT,
|
2009-08-02 23:37:13 +00:00
|
|
|
const std::string &FS)
|
2009-08-04 04:02:45 +00:00
|
|
|
: TargetMachine(T) {}
|
2008-04-23 22:29:24 +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);
|
2008-04-23 22:29:24 +00:00
|
|
|
|
2009-08-03 17:40:25 +00:00
|
|
|
virtual const TargetData *getTargetData() const { return 0; }
|
2008-04-23 22:29:24 +00:00
|
|
|
};
|
|
|
|
|
2009-07-18 23:03:22 +00:00
|
|
|
extern Target TheCppBackendTarget;
|
|
|
|
|
2008-04-23 22:29:24 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|