2005-07-12 01:41:54 +00:00
|
|
|
//===-- TargetSubtarget.cpp - General Target Information -------------------==//
|
|
|
|
//
|
|
|
|
// 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-07-12 01:41:54 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the general parts of a Subtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/TargetSubtarget.h"
|
2009-11-10 00:48:55 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2005-07-12 01:41:54 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// TargetSubtarget Class
|
|
|
|
//
|
2005-07-12 02:59:38 +00:00
|
|
|
TargetSubtarget::TargetSubtarget() {}
|
2005-07-12 01:41:54 +00:00
|
|
|
|
|
|
|
TargetSubtarget::~TargetSubtarget() {}
|
2009-11-10 00:48:55 +00:00
|
|
|
|
|
|
|
bool TargetSubtarget::enablePostRAScheduler(
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
AntiDepBreakMode& Mode,
|
2009-11-13 19:52:48 +00:00
|
|
|
RegClassVector& CriticalPathRCs) const {
|
2009-11-10 00:48:55 +00:00
|
|
|
Mode = ANTIDEP_NONE;
|
2009-11-13 19:52:48 +00:00
|
|
|
CriticalPathRCs.clear();
|
2009-11-10 00:48:55 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|