2005-09-29 22:54:56 +00:00
|
|
|
//===- AlphaSubtarget.cpp - Alpha Subtarget Information ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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-09-29 22:54:56 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Alpha specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AlphaSubtarget.h"
|
|
|
|
#include "Alpha.h"
|
2005-10-23 22:15:34 +00:00
|
|
|
#include "AlphaGenSubtarget.inc"
|
2005-09-29 22:54:56 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
AlphaSubtarget::AlphaSubtarget(const Module &M, const std::string &FS)
|
2007-01-24 21:09:16 +00:00
|
|
|
: HasCT(false) {
|
2005-09-30 20:24:38 +00:00
|
|
|
std::string CPU = "generic";
|
2005-10-26 17:30:34 +00:00
|
|
|
|
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(FS, CPU);
|
2005-09-29 22:54:56 +00:00
|
|
|
}
|